From 9aa89a18d0722dbf2bdf8c6b4aca06d2573a34c1 Mon Sep 17 00:00:00 2001 From: Tyarel8 <98483313+Tyarel8@users.noreply.github.com> Date: Wed, 22 Apr 2026 12:49:38 +0200 Subject: [PATCH 1/3] add optional sigil `%` to start of commands --- grammar.js | 2 +- queries/nu/highlights.scm | 5 +- src/grammar.json | 26 +- src/node-types.json | 8 + src/parser.c | 363999 ++++++++++++++++++----------------- src/tree_sitter/array.h | 181 +- 6 files changed, 182351 insertions(+), 181870 deletions(-) diff --git a/grammar.js b/grammar.js index 211fd85c..10e8ea8c 100644 --- a/grammar.js +++ b/grammar.js @@ -1569,7 +1569,7 @@ function _command_rule(parenthesized) { return prec.right( seq( choice( - field('head', seq(optional('^'), $.cmd_identifier)), + field('head', seq(optional(choice('^', '%')), $.cmd_identifier)), field('head', seq('^', $._stringish)), ), repeat(seq(sep, optional($._cmd_arg))), diff --git a/queries/nu/highlights.scm b/queries/nu/highlights.scm index b06e2b88..cf174255 100644 --- a/queries/nu/highlights.scm +++ b/queries/nu/highlights.scm @@ -305,7 +305,10 @@ key: (identifier) @property (#eq? @keyword "as")) (command - "^" @punctuation.delimiter + [ + "^" + "%" + ] @punctuation.delimiter head: (_) @function) "where" @function.builtin diff --git a/src/grammar.json b/src/grammar.json index 39b49288..42d3dfb8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -16342,8 +16342,17 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "^" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "%" + } + ] }, { "type": "BLANK" @@ -16422,8 +16431,17 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "^" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "%" + } + ] }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index 5d1b9da2..479cd896 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -477,6 +477,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "%", + "named": false + }, { "type": "^", "named": false @@ -4679,6 +4683,10 @@ "type": "$'", "named": false }, + { + "type": "%", + "named": false + }, { "type": "'", "named": false diff --git a/src/parser.c b/src/parser.c index 71cd1d8d..a8402ce2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.10 */ +/* Automatically @generated by tree-sitter */ #include "tree_sitter/parser.h" @@ -15,11 +15,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5530 +#define STATE_COUNT 5533 #define LARGE_STATE_COUNT 1289 -#define SYMBOL_COUNT 485 +#define SYMBOL_COUNT 486 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 273 +#define TOKEN_COUNT 274 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 65 #define MAX_ALIAS_SEQUENCE_LENGTH 13 @@ -265,256 +265,257 @@ enum ts_symbol_identifiers { 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, + anon_sym_PERCENT = 238, + anon_sym_err_GT = 239, + anon_sym_out_GT = 240, + anon_sym_e_GT = 241, + anon_sym_o_GT = 242, + anon_sym_err_PLUSout_GT = 243, + anon_sym_out_PLUSerr_GT = 244, + anon_sym_o_PLUSe_GT = 245, + anon_sym_e_PLUSo_GT = 246, + anon_sym_err_GT_GT = 247, + anon_sym_out_GT_GT = 248, + anon_sym_e_GT_GT = 249, + anon_sym_o_GT_GT = 250, + anon_sym_err_PLUSout_GT_GT = 251, + anon_sym_out_PLUSerr_GT_GT = 252, + anon_sym_o_PLUSe_GT_GT = 253, + anon_sym_e_PLUSo_GT_GT = 254, + sym_short_flag_identifier = 255, + sym__unquoted_pattern = 256, + sym__unquoted_pattern_in_list = 257, + sym__unquoted_pattern_in_record = 258, + sym__unquoted_naive = 259, + aux_sym_unquoted_token1 = 260, + aux_sym_unquoted_token2 = 261, + aux_sym__unquoted_in_list_token1 = 262, + aux_sym__unquoted_in_list_token2 = 263, + aux_sym__unquoted_in_record_token1 = 264, + aux_sym__unquoted_in_record_token2 = 265, + aux_sym__unquoted_with_expr_token1 = 266, + aux_sym__unquoted_in_list_with_expr_token1 = 267, + aux_sym__unquoted_in_record_with_expr_token1 = 268, + anon_sym_POUND = 269, + aux_sym_comment_token1 = 270, + sym_raw_string_begin = 271, + sym_raw_string_content = 272, + sym_raw_string_end = 273, + sym_nu_script = 274, + sym_shebang = 275, + sym__block_body_statement = 276, + sym__declaration = 277, + sym_decl_alias = 278, + sym_stmt_let = 279, + sym_stmt_mut = 280, + sym_stmt_const = 281, + sym_assignment = 282, + sym__assignment_pattern = 283, + sym__mutable_assignment_pattern = 284, + sym__statement = 285, + sym_pipeline = 286, + sym__block_body_statement_parenthesized = 287, + sym__declaration_parenthesized = 288, + sym_decl_alias_parenthesized = 289, + sym_stmt_let_parenthesized = 290, + sym_stmt_mut_parenthesized = 291, + sym_stmt_const_parenthesized = 292, + sym_assignment_parenthesized = 293, + sym__assignment_pattern_parenthesized = 294, + sym__mutable_assignment_pattern_parenthesized = 295, + sym__statement_parenthesized = 296, + sym_pipeline_parenthesized = 297, + sym__block_body = 298, + sym_cmd_identifier = 299, + sym__command_name = 300, + sym__variable_name = 301, + aux_sym__repeat_newline = 302, + aux_sym__pipe_separator = 303, + sym_attribute_list = 304, + sym_attribute = 305, + sym_decl_def = 306, + sym_decl_export = 307, + sym_decl_extern = 308, + sym_decl_module = 309, + sym_decl_use = 310, + sym_returns = 311, + sym__one_type = 312, + sym__types_body = 313, + sym__multiple_types = 314, + sym_parameter_parens = 315, + sym_parameter_bracks = 316, + sym_parameter_pipes = 317, + sym_parameter = 318, + sym__param_name = 319, + sym_param_type = 320, + sym_param_value = 321, + sym__type_annotation = 322, + sym__all_type = 323, + sym_flat_type = 324, + sym__collection_annotation = 325, + sym__collection_entry = 326, + sym__collection_body = 327, + sym_collection_type = 328, + sym_list_type = 329, + sym__composite_argument_body = 330, + sym_composite_type = 331, + sym_param_completer = 332, + sym_param_rest = 333, + sym_param_opt = 334, + sym_param_long_flag = 335, + sym_flag_capsule = 336, + sym_param_short_flag = 337, + sym__ctrl_statement = 338, + sym__ctrl_expression = 339, + sym__ctrl_expression_parenthesized = 340, + sym_ctrl_for = 341, + sym_ctrl_loop = 342, + sym_ctrl_while = 343, + sym_ctrl_if = 344, + sym_ctrl_if_parenthesized = 345, + sym__ctrl_match_body = 346, + sym_ctrl_match = 347, + sym_match_arm = 348, + sym_default_arm = 349, + sym_match_pattern = 350, + sym__match_pattern = 351, + sym_match_guard = 352, + sym__match_pattern_expression = 353, + sym__match_pattern_value = 354, + sym__match_pattern_list_body = 355, + sym__match_pattern_list = 356, + sym__match_pattern_rest = 357, + sym__match_pattern_record_body = 358, + sym__match_pattern_record = 359, + sym_ctrl_try = 360, + sym_ctrl_try_parenthesized = 361, + sym__stmt_let_shortcut = 362, + sym_pipe_element = 363, + sym_pipe_element_parenthesized = 364, + sym_scope_pattern = 365, + sym_wild_card = 366, + sym__command_list_body = 367, + sym_command_list = 368, + sym_block = 369, + sym__blosure = 370, + sym__where_predicate_lhs_path_head = 371, + sym__where_predicate_lhs = 372, + sym_where_command = 373, + sym_where_command_parenthesized = 374, + sym__binary_predicate = 375, + sym__binary_predicate_parenthesized = 376, + sym_where_predicate = 377, + sym__expression = 378, + sym__expression_parenthesized = 379, + sym_expr_unary = 380, + sym__expr_unary_minus = 381, + sym_expr_binary = 382, + sym_expr_binary_parenthesized = 383, + sym__expr_binary_expression = 384, + sym__expr_binary_expression_parenthesized = 385, + sym_expr_parenthesized = 386, + sym__spread_parenthesized = 387, + sym__expr_parenthesized_immediate = 388, + sym__parenthesized_body = 389, + sym_val_range = 390, + sym__val_range = 391, + sym__immediate_decimal = 392, + sym__value = 393, + sym_val_nothing = 394, + sym_val_bool = 395, + sym__spread_variable = 396, + sym_val_variable = 397, + sym_val_cellpath = 398, + sym_val_number = 399, + sym__val_number_decimal = 400, + sym__val_number = 401, + sym_val_duration = 402, + sym_val_filesize = 403, + sym_val_binary = 404, + sym_val_string = 405, + sym__raw_str = 406, + sym_string_content = 407, + sym__str_double_quotes = 408, + sym__str_single_quotes = 409, + sym__str_back_ticks = 410, + sym_val_interpolated = 411, + sym__inter_single_quotes = 412, + sym__inter_double_quotes = 413, + sym_expr_interpolated = 414, + sym_val_list = 415, + sym__spread_list = 416, + sym_list_body = 417, + sym_val_entry = 418, + sym_val_record = 419, + sym__spread_record = 420, + sym_record_body = 421, + sym_record_entry = 422, + sym__record_key = 423, + sym__table_head = 424, + sym__table_body = 425, + sym_val_table = 426, + sym_val_closure = 427, + sym_cell_path = 428, + sym__path_suffix = 429, + sym_path = 430, + sym_env_var = 431, + sym_command = 432, + sym__command_parenthesized = 433, + sym__cmd_arg = 434, + sym_redirection = 435, + sym__flag = 436, + sym__flag_equals_value = 437, + sym_short_flag = 438, + sym_long_flag = 439, + sym_unquoted = 440, + sym__unquoted_in_list = 441, + sym__unquoted_in_record = 442, + sym__unquoted_with_expr = 443, + sym__unquoted_in_list_with_expr = 444, + sym__unquoted_in_record_with_expr = 445, + sym__unquoted_anonymous_prefix = 446, + sym_comment = 447, + aux_sym_pipeline_repeat1 = 448, + aux_sym_pipeline_parenthesized_repeat1 = 449, + aux_sym__block_body_repeat1 = 450, + aux_sym__block_body_repeat2 = 451, + aux_sym_attribute_list_repeat1 = 452, + aux_sym_attribute_repeat1 = 453, + aux_sym_decl_def_repeat1 = 454, + aux_sym__types_body_repeat1 = 455, + aux_sym__types_body_repeat2 = 456, + aux_sym__types_body_repeat3 = 457, + aux_sym_parameter_parens_repeat1 = 458, + aux_sym_parameter_repeat1 = 459, + aux_sym_parameter_repeat2 = 460, + aux_sym__collection_body_repeat1 = 461, + aux_sym__composite_argument_body_repeat1 = 462, + aux_sym__ctrl_match_body_repeat1 = 463, + aux_sym_match_pattern_repeat1 = 464, + aux_sym__match_pattern_list_body_repeat1 = 465, + aux_sym__match_pattern_record_body_repeat1 = 466, + aux_sym_pipe_element_repeat1 = 467, + aux_sym_pipe_element_repeat2 = 468, + aux_sym_pipe_element_parenthesized_repeat1 = 469, + aux_sym_pipe_element_parenthesized_repeat2 = 470, + aux_sym__command_list_body_repeat1 = 471, + aux_sym__where_predicate_lhs_repeat1 = 472, + aux_sym__parenthesized_body_repeat1 = 473, + aux_sym__parenthesized_body_repeat2 = 474, + aux_sym_val_binary_repeat1 = 475, + aux_sym_string_content_repeat1 = 476, + aux_sym__inter_single_quotes_repeat1 = 477, + aux_sym__inter_double_quotes_repeat1 = 478, + aux_sym_list_body_repeat1 = 479, + aux_sym_record_body_repeat1 = 480, + aux_sym__table_body_repeat1 = 481, + aux_sym__command_parenthesized_repeat1 = 482, + aux_sym__unquoted_with_expr_repeat1 = 483, + aux_sym__unquoted_in_list_with_expr_repeat1 = 484, + aux_sym__unquoted_in_record_with_expr_repeat1 = 485, + anon_alias_sym__head = 486, + anon_alias_sym__prefix = 487, + anon_alias_sym__unit = 488, }; static const char * const ts_symbol_names[] = { @@ -756,6 +757,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ2] = "=", [aux_sym_env_var_token1] = "val_string", [anon_sym_CARET] = "^", + [anon_sym_PERCENT] = "%", [anon_sym_err_GT] = "err>", [anon_sym_out_GT] = "out>", [anon_sym_e_GT] = "e>", @@ -1247,6 +1249,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ2] = anon_sym_EQ, [aux_sym_env_var_token1] = sym_val_string, [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_err_GT] = anon_sym_err_GT, [anon_sym_out_GT] = anon_sym_out_GT, [anon_sym_e_GT] = anon_sym_e_GT, @@ -2452,6 +2455,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, [anon_sym_err_GT] = { .visible = true, .named = false, @@ -5068,8 +5075,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [19] = 16, [20] = 20, [21] = 17, - [22] = 20, - [23] = 17, + [22] = 17, + [23] = 20, [24] = 17, [25] = 17, [26] = 17, @@ -5083,174 +5090,174 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [34] = 27, [35] = 35, [36] = 36, - [37] = 36, - [38] = 38, + [37] = 37, + [38] = 37, [39] = 39, - [40] = 36, - [41] = 38, + [40] = 40, + [41] = 39, [42] = 42, [43] = 35, - [44] = 44, - [45] = 42, - [46] = 35, - [47] = 36, - [48] = 44, - [49] = 42, - [50] = 35, - [51] = 44, - [52] = 44, - [53] = 39, - [54] = 36, - [55] = 36, - [56] = 42, - [57] = 35, - [58] = 44, - [59] = 59, - [60] = 42, - [61] = 42, - [62] = 35, - [63] = 44, + [44] = 40, + [45] = 36, + [46] = 37, + [47] = 40, + [48] = 42, + [49] = 35, + [50] = 36, + [51] = 37, + [52] = 52, + [53] = 37, + [54] = 42, + [55] = 35, + [56] = 36, + [57] = 37, + [58] = 42, + [59] = 35, + [60] = 36, + [61] = 37, + [62] = 42, + [63] = 35, [64] = 36, - [65] = 35, - [66] = 39, - [67] = 35, + [65] = 42, + [66] = 35, + [67] = 36, [68] = 35, [69] = 35, - [70] = 42, + [70] = 35, [71] = 35, - [72] = 36, - [73] = 44, + [72] = 37, + [73] = 42, [74] = 74, [75] = 75, [76] = 76, [77] = 77, - [78] = 77, - [79] = 77, - [80] = 74, - [81] = 76, + [78] = 74, + [79] = 74, + [80] = 75, + [81] = 77, [82] = 82, [83] = 83, [84] = 84, [85] = 85, - [86] = 83, - [87] = 82, + [86] = 84, + [87] = 87, [88] = 88, - [89] = 89, - [90] = 82, - [91] = 83, + [89] = 84, + [90] = 87, + [91] = 87, [92] = 92, [93] = 93, - [94] = 93, + [94] = 92, [95] = 93, - [96] = 96, - [97] = 92, - [98] = 92, - [99] = 93, + [96] = 92, + [97] = 93, + [98] = 93, + [99] = 92, [100] = 100, - [101] = 92, - [102] = 102, - [103] = 103, - [104] = 104, + [101] = 101, + [102] = 92, + [103] = 101, + [104] = 100, [105] = 105, - [106] = 106, - [107] = 107, - [108] = 96, - [109] = 96, - [110] = 100, - [111] = 100, - [112] = 100, - [113] = 92, - [114] = 96, - [115] = 93, - [116] = 107, - [117] = 102, - [118] = 107, - [119] = 102, - [120] = 104, - [121] = 103, - [122] = 102, - [123] = 104, - [124] = 106, - [125] = 107, - [126] = 106, - [127] = 92, - [128] = 106, - [129] = 93, - [130] = 100, - [131] = 104, - [132] = 96, - [133] = 133, - [134] = 102, - [135] = 106, - [136] = 107, - [137] = 100, - [138] = 96, - [139] = 104, + [106] = 100, + [107] = 93, + [108] = 108, + [109] = 100, + [110] = 110, + [111] = 111, + [112] = 101, + [113] = 113, + [114] = 101, + [115] = 115, + [116] = 100, + [117] = 117, + [118] = 92, + [119] = 108, + [120] = 113, + [121] = 108, + [122] = 115, + [123] = 115, + [124] = 110, + [125] = 108, + [126] = 105, + [127] = 93, + [128] = 115, + [129] = 113, + [130] = 105, + [131] = 105, + [132] = 101, + [133] = 113, + [134] = 134, + [135] = 135, + [136] = 134, + [137] = 137, + [138] = 138, + [139] = 139, [140] = 140, - [141] = 141, - [142] = 142, + [141] = 135, + [142] = 101, [143] = 143, - [144] = 144, - [145] = 145, + [144] = 143, + [145] = 105, [146] = 146, [147] = 147, - [148] = 102, - [149] = 143, - [150] = 104, - [151] = 106, - [152] = 107, - [153] = 144, - [154] = 145, - [155] = 140, - [156] = 156, - [157] = 141, - [158] = 142, - [159] = 143, - [160] = 144, - [161] = 145, - [162] = 146, - [163] = 147, - [164] = 140, - [165] = 143, - [166] = 144, - [167] = 145, - [168] = 146, - [169] = 147, - [170] = 143, - [171] = 146, - [172] = 147, + [148] = 147, + [149] = 135, + [150] = 140, + [151] = 137, + [152] = 108, + [153] = 146, + [154] = 154, + [155] = 135, + [156] = 154, + [157] = 138, + [158] = 139, + [159] = 140, + [160] = 115, + [161] = 143, + [162] = 135, + [163] = 138, + [164] = 113, + [165] = 140, + [166] = 139, + [167] = 143, + [168] = 138, + [169] = 139, + [170] = 147, + [171] = 100, + [172] = 172, [173] = 173, - [174] = 156, + [174] = 173, [175] = 173, - [176] = 176, - [177] = 176, - [178] = 176, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 176, - [183] = 176, - [184] = 180, - [185] = 176, - [186] = 180, - [187] = 176, - [188] = 180, - [189] = 176, - [190] = 180, - [191] = 176, + [176] = 108, + [177] = 177, + [178] = 177, + [179] = 177, + [180] = 173, + [181] = 173, + [182] = 173, + [183] = 173, + [184] = 177, + [185] = 173, + [186] = 177, + [187] = 105, + [188] = 113, + [189] = 115, + [190] = 173, + [191] = 191, [192] = 192, [193] = 193, - [194] = 193, - [195] = 192, - [196] = 193, + [194] = 192, + [195] = 193, + [196] = 192, [197] = 192, - [198] = 192, + [198] = 193, [199] = 193, - [200] = 193, - [201] = 192, - [202] = 192, - [203] = 193, - [204] = 103, + [200] = 192, + [201] = 193, + [202] = 193, + [203] = 192, + [204] = 110, [205] = 205, [206] = 206, [207] = 207, @@ -5261,318 +5268,318 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 215, + [215] = 205, [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, + [221] = 206, + [222] = 207, + [223] = 208, + [224] = 209, [225] = 225, [226] = 226, [227] = 227, [228] = 228, - [229] = 206, - [230] = 207, - [231] = 208, - [232] = 209, - [233] = 205, - [234] = 210, - [235] = 211, - [236] = 212, - [237] = 213, - [238] = 214, - [239] = 215, - [240] = 216, - [241] = 228, - [242] = 218, - [243] = 219, - [244] = 220, - [245] = 221, - [246] = 222, - [247] = 223, - [248] = 224, - [249] = 225, - [250] = 226, - [251] = 227, - [252] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 225, + [235] = 226, + [236] = 227, + [237] = 228, + [238] = 229, + [239] = 230, + [240] = 231, + [241] = 220, + [242] = 233, + [243] = 210, + [244] = 211, + [245] = 212, + [246] = 213, + [247] = 214, + [248] = 216, + [249] = 217, + [250] = 218, + [251] = 219, + [252] = 220, [253] = 206, [254] = 207, [255] = 208, [256] = 209, - [257] = 205, - [258] = 210, - [259] = 211, - [260] = 212, - [261] = 213, - [262] = 214, - [263] = 215, - [264] = 216, - [265] = 217, - [266] = 218, - [267] = 219, - [268] = 220, - [269] = 221, - [270] = 222, - [271] = 223, - [272] = 224, - [273] = 225, - [274] = 226, - [275] = 227, - [276] = 217, + [257] = 225, + [258] = 226, + [259] = 227, + [260] = 228, + [261] = 229, + [262] = 230, + [263] = 231, + [264] = 232, + [265] = 233, + [266] = 210, + [267] = 211, + [268] = 212, + [269] = 218, + [270] = 213, + [271] = 214, + [272] = 205, + [273] = 216, + [274] = 217, + [275] = 219, + [276] = 232, [277] = 277, [278] = 277, - [279] = 92, + [279] = 279, [280] = 280, - [281] = 281, + [281] = 277, [282] = 280, - [283] = 281, - [284] = 281, - [285] = 277, - [286] = 280, - [287] = 93, - [288] = 277, - [289] = 92, - [290] = 281, + [283] = 280, + [284] = 277, + [285] = 280, + [286] = 277, + [287] = 280, + [288] = 279, + [289] = 279, + [290] = 93, [291] = 93, - [292] = 281, + [292] = 92, [293] = 92, - [294] = 277, - [295] = 93, - [296] = 93, - [297] = 92, - [298] = 96, - [299] = 96, - [300] = 96, - [301] = 100, - [302] = 100, + [294] = 93, + [295] = 92, + [296] = 100, + [297] = 101, + [298] = 93, + [299] = 101, + [300] = 100, + [301] = 101, + [302] = 92, [303] = 100, - [304] = 92, - [305] = 107, - [306] = 102, - [307] = 93, - [308] = 96, - [309] = 100, - [310] = 104, - [311] = 106, - [312] = 107, - [313] = 102, - [314] = 104, - [315] = 106, - [316] = 107, - [317] = 102, - [318] = 104, - [319] = 106, - [320] = 96, - [321] = 102, - [322] = 106, - [323] = 104, - [324] = 107, - [325] = 100, - [326] = 102, - [327] = 107, - [328] = 104, - [329] = 106, + [304] = 105, + [305] = 105, + [306] = 115, + [307] = 108, + [308] = 108, + [309] = 113, + [310] = 105, + [311] = 113, + [312] = 92, + [313] = 101, + [314] = 93, + [315] = 100, + [316] = 115, + [317] = 115, + [318] = 113, + [319] = 108, + [320] = 108, + [321] = 115, + [322] = 101, + [323] = 105, + [324] = 100, + [325] = 113, + [326] = 115, + [327] = 113, + [328] = 108, + [329] = 105, [330] = 330, [331] = 330, [332] = 330, - [333] = 193, - [334] = 192, - [335] = 192, - [336] = 193, - [337] = 193, - [338] = 192, - [339] = 192, - [340] = 193, + [333] = 192, + [334] = 193, + [335] = 193, + [336] = 192, + [337] = 192, + [338] = 193, + [339] = 193, + [340] = 192, [341] = 192, [342] = 193, [343] = 343, [344] = 344, - [345] = 343, + [345] = 345, [346] = 344, - [347] = 347, + [347] = 345, [348] = 348, [349] = 349, [350] = 350, - [351] = 351, + [351] = 350, [352] = 352, [353] = 353, [354] = 354, - [355] = 352, - [356] = 354, + [355] = 350, + [356] = 356, [357] = 357, - [358] = 349, - [359] = 359, - [360] = 360, - [361] = 357, - [362] = 352, - [363] = 360, - [364] = 364, - [365] = 352, - [366] = 351, - [367] = 367, - [368] = 352, - [369] = 348, - [370] = 352, - [371] = 352, - [372] = 352, - [373] = 352, - [374] = 352, - [375] = 359, - [376] = 364, - [377] = 352, + [358] = 352, + [359] = 353, + [360] = 350, + [361] = 350, + [362] = 348, + [363] = 356, + [364] = 357, + [365] = 350, + [366] = 366, + [367] = 350, + [368] = 368, + [369] = 369, + [370] = 350, + [371] = 350, + [372] = 350, + [373] = 350, + [374] = 374, + [375] = 374, + [376] = 349, + [377] = 354, [378] = 378, [379] = 379, - [380] = 343, - [381] = 344, - [382] = 347, + [380] = 344, + [381] = 343, + [382] = 345, [383] = 383, - [384] = 379, - [385] = 385, - [386] = 350, - [387] = 357, - [388] = 360, + [384] = 378, + [385] = 366, + [386] = 352, + [387] = 368, + [388] = 353, [389] = 389, - [390] = 390, - [391] = 351, - [392] = 354, - [393] = 393, - [394] = 394, - [395] = 367, - [396] = 348, - [397] = 349, - [398] = 364, - [399] = 390, - [400] = 394, - [401] = 394, - [402] = 394, - [403] = 353, - [404] = 390, - [405] = 394, - [406] = 406, - [407] = 394, - [408] = 394, - [409] = 394, - [410] = 359, - [411] = 394, + [390] = 354, + [391] = 348, + [392] = 392, + [393] = 356, + [394] = 357, + [395] = 392, + [396] = 389, + [397] = 389, + [398] = 398, + [399] = 399, + [400] = 389, + [401] = 389, + [402] = 402, + [403] = 389, + [404] = 374, + [405] = 389, + [406] = 392, + [407] = 389, + [408] = 349, + [409] = 409, + [410] = 389, + [411] = 369, [412] = 412, - [413] = 406, - [414] = 344, - [415] = 415, - [416] = 416, + [413] = 413, + [414] = 414, + [415] = 383, + [416] = 378, [417] = 417, [418] = 418, - [419] = 419, + [419] = 345, [420] = 420, [421] = 421, - [422] = 422, - [423] = 379, + [422] = 409, + [423] = 423, [424] = 424, - [425] = 347, - [426] = 383, - [427] = 367, - [428] = 360, - [429] = 343, - [430] = 359, - [431] = 92, - [432] = 93, - [433] = 349, - [434] = 389, - [435] = 350, - [436] = 354, - [437] = 364, - [438] = 348, - [439] = 347, - [440] = 351, - [441] = 441, - [442] = 357, - [443] = 383, - [444] = 418, - [445] = 353, - [446] = 393, - [447] = 412, - [448] = 448, - [449] = 424, - [450] = 450, - [451] = 100, + [425] = 425, + [426] = 343, + [427] = 353, + [428] = 349, + [429] = 93, + [430] = 369, + [431] = 383, + [432] = 344, + [433] = 356, + [434] = 354, + [435] = 368, + [436] = 352, + [437] = 413, + [438] = 374, + [439] = 357, + [440] = 343, + [441] = 92, + [442] = 366, + [443] = 399, + [444] = 402, + [445] = 445, + [446] = 425, + [447] = 348, + [448] = 100, + [449] = 449, + [450] = 101, + [451] = 369, [452] = 452, - [453] = 353, - [454] = 454, - [455] = 448, - [456] = 379, - [457] = 457, - [458] = 448, + [453] = 453, + [454] = 424, + [455] = 417, + [456] = 418, + [457] = 421, + [458] = 458, [459] = 459, - [460] = 452, - [461] = 420, - [462] = 419, - [463] = 454, - [464] = 464, - [465] = 465, - [466] = 415, - [467] = 454, - [468] = 452, - [469] = 96, - [470] = 367, - [471] = 452, - [472] = 92, + [460] = 460, + [461] = 458, + [462] = 452, + [463] = 463, + [464] = 458, + [465] = 412, + [466] = 466, + [467] = 449, + [468] = 378, + [469] = 420, + [470] = 449, + [471] = 93, + [472] = 366, [473] = 452, - [474] = 417, - [475] = 452, - [476] = 93, - [477] = 452, - [478] = 452, - [479] = 421, - [480] = 350, - [481] = 481, + [474] = 458, + [475] = 458, + [476] = 458, + [477] = 458, + [478] = 458, + [479] = 368, + [480] = 92, + [481] = 115, [482] = 482, - [483] = 483, - [484] = 464, - [485] = 106, + [483] = 113, + [484] = 484, + [485] = 449, [486] = 100, - [487] = 487, - [488] = 107, + [487] = 105, + [488] = 101, [489] = 489, - [490] = 457, - [491] = 104, - [492] = 96, + [490] = 460, + [491] = 491, + [492] = 492, [493] = 493, - [494] = 448, - [495] = 457, + [494] = 466, + [495] = 357, [496] = 496, - [497] = 497, - [498] = 498, + [497] = 383, + [498] = 348, [499] = 499, - [500] = 104, - [501] = 106, - [502] = 107, + [500] = 356, + [501] = 501, + [502] = 502, [503] = 503, - [504] = 351, - [505] = 357, - [506] = 506, - [507] = 507, - [508] = 508, + [504] = 352, + [505] = 459, + [506] = 344, + [507] = 414, + [508] = 354, [509] = 509, [510] = 510, [511] = 511, - [512] = 459, - [513] = 416, - [514] = 344, - [515] = 515, + [512] = 512, + [513] = 353, + [514] = 514, + [515] = 423, [516] = 516, [517] = 517, - [518] = 383, - [519] = 360, - [520] = 422, - [521] = 450, - [522] = 354, - [523] = 348, - [524] = 349, - [525] = 343, - [526] = 448, + [518] = 518, + [519] = 345, + [520] = 520, + [521] = 466, + [522] = 115, + [523] = 453, + [524] = 113, + [525] = 449, + [526] = 105, [527] = 527, [528] = 528, [529] = 529, @@ -5582,13 +5589,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [533] = 533, [534] = 534, [535] = 535, - [536] = 536, + [536] = 492, [537] = 537, [538] = 538, - [539] = 535, - [540] = 536, - [541] = 537, - [542] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, [543] = 543, [544] = 544, [545] = 545, @@ -5596,45 +5603,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [547] = 547, [548] = 548, [549] = 549, - [550] = 550, - [551] = 551, - [552] = 543, - [553] = 544, - [554] = 554, + [550] = 528, + [551] = 529, + [552] = 530, + [553] = 553, + [554] = 531, [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, + [556] = 538, + [557] = 540, + [558] = 553, + [559] = 555, [560] = 560, [561] = 561, [562] = 562, - [563] = 563, + [563] = 560, [564] = 564, [565] = 565, - [566] = 533, - [567] = 567, + [566] = 566, + [567] = 561, [568] = 568, [569] = 569, [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 527, - [581] = 581, - [582] = 545, - [583] = 583, - [584] = 529, - [585] = 531, - [586] = 554, - [587] = 555, - [588] = 588, + [571] = 562, + [572] = 564, + [573] = 538, + [574] = 540, + [575] = 553, + [576] = 555, + [577] = 560, + [578] = 561, + [579] = 562, + [580] = 564, + [581] = 565, + [582] = 566, + [583] = 568, + [584] = 569, + [585] = 570, + [586] = 374, + [587] = 565, + [588] = 566, [589] = 589, [590] = 590, [591] = 591, @@ -5642,174 +5649,174 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [593] = 593, [594] = 594, [595] = 595, - [596] = 588, - [597] = 489, - [598] = 546, - [599] = 547, - [600] = 548, - [601] = 589, - [602] = 590, - [603] = 562, - [604] = 591, - [605] = 549, - [606] = 550, - [607] = 551, - [608] = 592, - [609] = 593, - [610] = 535, - [611] = 536, - [612] = 537, - [613] = 538, - [614] = 543, - [615] = 544, - [616] = 545, - [617] = 546, - [618] = 547, - [619] = 548, - [620] = 549, - [621] = 550, - [622] = 551, - [623] = 594, - [624] = 556, - [625] = 557, - [626] = 559, - [627] = 560, - [628] = 561, - [629] = 562, - [630] = 563, - [631] = 564, - [632] = 565, - [633] = 533, - [634] = 567, - [635] = 568, - [636] = 569, - [637] = 570, - [638] = 571, - [639] = 572, - [640] = 573, - [641] = 574, - [642] = 575, - [643] = 576, - [644] = 577, - [645] = 578, - [646] = 579, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 527, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 532, + [614] = 534, + [615] = 615, + [616] = 568, + [617] = 569, + [618] = 541, + [619] = 542, + [620] = 543, + [621] = 544, + [622] = 545, + [623] = 546, + [624] = 547, + [625] = 548, + [626] = 549, + [627] = 607, + [628] = 529, + [629] = 530, + [630] = 531, + [631] = 570, + [632] = 349, + [633] = 633, + [634] = 634, + [635] = 609, + [636] = 589, + [637] = 590, + [638] = 591, + [639] = 592, + [640] = 593, + [641] = 594, + [642] = 595, + [643] = 596, + [644] = 597, + [645] = 598, + [646] = 599, [647] = 527, - [648] = 581, - [649] = 595, - [650] = 583, - [651] = 529, - [652] = 531, - [653] = 554, - [654] = 555, - [655] = 588, - [656] = 589, - [657] = 590, - [658] = 591, - [659] = 592, - [660] = 593, - [661] = 594, - [662] = 595, - [663] = 567, - [664] = 568, - [665] = 569, - [666] = 570, - [667] = 667, - [668] = 364, - [669] = 359, - [670] = 571, - [671] = 572, - [672] = 573, - [673] = 574, - [674] = 575, - [675] = 347, - [676] = 583, - [677] = 576, - [678] = 577, - [679] = 578, - [680] = 579, - [681] = 565, - [682] = 581, - [683] = 556, - [684] = 481, - [685] = 563, - [686] = 557, - [687] = 558, - [688] = 564, - [689] = 559, - [690] = 690, - [691] = 560, - [692] = 561, - [693] = 558, - [694] = 694, - [695] = 528, - [696] = 696, + [648] = 601, + [649] = 649, + [650] = 602, + [651] = 603, + [652] = 652, + [653] = 604, + [654] = 605, + [655] = 606, + [656] = 607, + [657] = 608, + [658] = 609, + [659] = 491, + [660] = 589, + [661] = 610, + [662] = 611, + [663] = 590, + [664] = 591, + [665] = 612, + [666] = 532, + [667] = 343, + [668] = 534, + [669] = 610, + [670] = 611, + [671] = 612, + [672] = 592, + [673] = 593, + [674] = 594, + [675] = 608, + [676] = 541, + [677] = 542, + [678] = 595, + [679] = 543, + [680] = 596, + [681] = 597, + [682] = 544, + [683] = 598, + [684] = 599, + [685] = 545, + [686] = 601, + [687] = 602, + [688] = 546, + [689] = 547, + [690] = 603, + [691] = 604, + [692] = 548, + [693] = 549, + [694] = 605, + [695] = 606, + [696] = 528, [697] = 697, [698] = 698, - [699] = 450, - [700] = 459, + [699] = 699, + [700] = 700, [701] = 701, [702] = 702, - [703] = 367, + [703] = 703, [704] = 704, [705] = 705, [706] = 706, [707] = 707, [708] = 708, - [709] = 379, + [709] = 459, [710] = 710, - [711] = 517, - [712] = 515, + [711] = 711, + [712] = 712, [713] = 713, [714] = 714, - [715] = 353, + [715] = 715, [716] = 716, [717] = 717, [718] = 718, [719] = 719, [720] = 720, - [721] = 721, + [721] = 633, [722] = 722, [723] = 723, - [724] = 724, - [725] = 725, - [726] = 350, - [727] = 727, + [724] = 634, + [725] = 517, + [726] = 726, + [727] = 369, [728] = 728, - [729] = 516, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, [733] = 733, - [734] = 690, + [734] = 501, [735] = 735, [736] = 736, - [737] = 737, - [738] = 738, + [737] = 366, + [738] = 516, [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, + [740] = 453, + [741] = 502, + [742] = 368, [743] = 743, [744] = 744, - [745] = 745, + [745] = 378, [746] = 746, [747] = 747, [748] = 748, [749] = 749, - [750] = 506, + [750] = 750, [751] = 751, [752] = 752, [753] = 753, [754] = 754, [755] = 755, - [756] = 756, + [756] = 499, [757] = 757, - [758] = 489, + [758] = 758, [759] = 759, [760] = 760, [761] = 761, [762] = 762, - [763] = 481, + [763] = 763, [764] = 764, [765] = 765, [766] = 766, @@ -5824,7 +5831,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [775] = 775, [776] = 776, [777] = 777, - [778] = 507, + [778] = 778, [779] = 779, [780] = 780, [781] = 781, @@ -5837,178 +5844,178 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [788] = 788, [789] = 789, [790] = 790, - [791] = 791, + [791] = 509, [792] = 792, - [793] = 793, + [793] = 510, [794] = 794, [795] = 795, [796] = 796, - [797] = 797, - [798] = 798, + [797] = 514, + [798] = 459, [799] = 799, - [800] = 800, + [800] = 649, [801] = 801, [802] = 802, [803] = 803, - [804] = 804, + [804] = 453, [805] = 805, [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 811, + [811] = 459, [812] = 812, [813] = 813, [814] = 814, - [815] = 815, - [816] = 746, + [815] = 491, + [816] = 492, [817] = 817, [818] = 818, - [819] = 796, + [819] = 819, [820] = 820, [821] = 821, - [822] = 797, + [822] = 771, [823] = 823, - [824] = 824, + [824] = 772, [825] = 825, [826] = 826, [827] = 827, - [828] = 798, + [828] = 511, [829] = 829, - [830] = 830, - [831] = 796, - [832] = 797, - [833] = 798, - [834] = 799, - [835] = 800, - [836] = 806, - [837] = 812, - [838] = 746, - [839] = 747, - [840] = 749, - [841] = 812, - [842] = 753, - [843] = 754, - [844] = 844, - [845] = 799, - [846] = 800, - [847] = 459, - [848] = 806, - [849] = 849, - [850] = 850, - [851] = 812, - [852] = 746, - [853] = 747, - [854] = 749, - [855] = 508, - [856] = 751, - [857] = 753, - [858] = 747, - [859] = 749, - [860] = 754, - [861] = 796, - [862] = 796, - [863] = 797, - [864] = 798, - [865] = 799, - [866] = 797, - [867] = 798, - [868] = 799, - [869] = 800, - [870] = 806, - [871] = 499, - [872] = 800, - [873] = 503, - [874] = 806, - [875] = 812, - [876] = 746, - [877] = 747, - [878] = 749, - [879] = 751, - [880] = 812, - [881] = 746, - [882] = 747, - [883] = 749, - [884] = 751, - [885] = 753, - [886] = 754, - [887] = 753, - [888] = 754, - [889] = 510, - [890] = 890, - [891] = 751, - [892] = 892, - [893] = 753, - [894] = 894, - [895] = 754, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 796, - [908] = 797, - [909] = 909, - [910] = 798, - [911] = 911, - [912] = 799, - [913] = 913, - [914] = 800, - [915] = 915, - [916] = 498, + [830] = 773, + [831] = 831, + [832] = 774, + [833] = 833, + [834] = 834, + [835] = 775, + [836] = 836, + [837] = 776, + [838] = 838, + [839] = 771, + [840] = 772, + [841] = 773, + [842] = 774, + [843] = 775, + [844] = 776, + [845] = 777, + [846] = 778, + [847] = 779, + [848] = 780, + [849] = 781, + [850] = 782, + [851] = 783, + [852] = 777, + [853] = 778, + [854] = 779, + [855] = 780, + [856] = 781, + [857] = 782, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 771, + [869] = 772, + [870] = 773, + [871] = 774, + [872] = 775, + [873] = 776, + [874] = 777, + [875] = 778, + [876] = 779, + [877] = 780, + [878] = 781, + [879] = 782, + [880] = 783, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 783, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 771, + [891] = 772, + [892] = 773, + [893] = 774, + [894] = 771, + [895] = 772, + [896] = 773, + [897] = 774, + [898] = 775, + [899] = 776, + [900] = 777, + [901] = 778, + [902] = 779, + [903] = 780, + [904] = 781, + [905] = 782, + [906] = 783, + [907] = 775, + [908] = 776, + [909] = 777, + [910] = 778, + [911] = 779, + [912] = 780, + [913] = 781, + [914] = 782, + [915] = 783, + [916] = 916, [917] = 917, - [918] = 459, - [919] = 450, + [918] = 918, + [919] = 518, [920] = 920, - [921] = 806, + [921] = 921, [922] = 922, - [923] = 751, + [923] = 923, [924] = 924, - [925] = 530, - [926] = 383, + [925] = 925, + [926] = 926, [927] = 927, - [928] = 489, + [928] = 716, [929] = 929, [930] = 930, [931] = 931, - [932] = 481, - [933] = 933, - [934] = 934, + [932] = 932, + [933] = 512, + [934] = 722, [935] = 935, - [936] = 936, - [937] = 937, - [938] = 515, - [939] = 516, - [940] = 517, - [941] = 724, - [942] = 725, - [943] = 727, - [944] = 728, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 487, + [936] = 708, + [937] = 493, + [938] = 717, + [939] = 939, + [940] = 520, + [941] = 730, + [942] = 942, + [943] = 517, + [944] = 944, + [945] = 502, + [946] = 516, + [947] = 383, + [948] = 948, [949] = 949, - [950] = 950, - [951] = 951, + [950] = 491, + [951] = 935, [952] = 952, [953] = 953, - [954] = 954, + [954] = 715, [955] = 955, [956] = 956, - [957] = 957, - [958] = 958, - [959] = 493, + [957] = 718, + [958] = 719, + [959] = 959, [960] = 960, [961] = 961, - [962] = 962, + [962] = 699, [963] = 963, [964] = 964, [965] = 965, @@ -6017,63 +6024,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [968] = 968, [969] = 969, [970] = 970, - [971] = 511, + [971] = 971, [972] = 972, - [973] = 743, + [973] = 973, [974] = 974, - [975] = 509, + [975] = 975, [976] = 976, - [977] = 960, + [977] = 977, [978] = 978, [979] = 979, [980] = 980, - [981] = 730, - [982] = 696, + [981] = 482, + [982] = 492, [983] = 983, [984] = 984, - [985] = 698, - [986] = 960, - [987] = 720, - [988] = 988, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 935, [989] = 989, [990] = 990, [991] = 991, [992] = 992, [993] = 993, - [994] = 994, + [994] = 952, [995] = 995, - [996] = 733, + [996] = 996, [997] = 997, [998] = 998, [999] = 999, - [1000] = 1000, + [1000] = 931, [1001] = 1001, - [1002] = 1002, + [1002] = 932, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 723, + [1009] = 1009, [1010] = 1010, - [1011] = 1011, + [1011] = 960, [1012] = 1012, [1013] = 1013, - [1014] = 1014, + [1014] = 961, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 1020, + [1020] = 987, [1021] = 1021, - [1022] = 1022, + [1022] = 956, [1023] = 1023, [1024] = 1024, - [1025] = 1025, + [1025] = 743, [1026] = 1026, - [1027] = 1021, + [1027] = 698, [1028] = 1028, [1029] = 1029, [1030] = 1030, @@ -6088,7 +6095,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 738, + [1042] = 1042, [1043] = 1043, [1044] = 1044, [1045] = 1045, @@ -6096,13 +6103,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1047] = 1047, [1048] = 1048, [1049] = 1049, - [1050] = 459, + [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 741, - [1056] = 1039, + [1055] = 1055, + [1056] = 1056, [1057] = 1057, [1058] = 1058, [1059] = 1059, @@ -6112,113 +6119,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 739, + [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 515, + [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 704, - [1077] = 934, - [1078] = 516, + [1076] = 1076, + [1077] = 1077, + [1078] = 1018, [1079] = 1079, - [1080] = 517, - [1081] = 717, + [1080] = 1080, + [1081] = 1081, [1082] = 1082, - [1083] = 718, - [1084] = 731, + [1083] = 1083, + [1084] = 1084, [1085] = 1085, - [1086] = 694, - [1087] = 719, - [1088] = 722, - [1089] = 1089, - [1090] = 1044, - [1091] = 1091, - [1092] = 1092, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 700, + [1090] = 701, + [1091] = 702, + [1092] = 703, [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1095] = 1064, + [1096] = 704, [1097] = 1097, - [1098] = 1098, - [1099] = 1070, - [1100] = 1071, - [1101] = 1072, - [1102] = 705, - [1103] = 708, - [1104] = 1104, - [1105] = 713, - [1106] = 714, + [1098] = 705, + [1099] = 706, + [1100] = 1100, + [1101] = 707, + [1102] = 710, + [1103] = 459, + [1104] = 711, + [1105] = 1105, + [1106] = 712, [1107] = 1107, [1108] = 1108, - [1109] = 1109, - [1110] = 732, + [1109] = 517, + [1110] = 502, [1111] = 1111, - [1112] = 1112, + [1112] = 516, [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 1116, + [1116] = 723, [1117] = 1117, - [1118] = 1118, - [1119] = 1119, + [1118] = 713, + [1119] = 714, [1120] = 1120, [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 1124, - [1125] = 920, - [1126] = 935, - [1127] = 927, + [1124] = 1018, + [1125] = 1029, + [1126] = 1030, + [1127] = 1031, [1128] = 1128, - [1129] = 1129, - [1130] = 1130, + [1129] = 1032, + [1130] = 887, [1131] = 1131, [1132] = 1132, - [1133] = 1133, + [1133] = 929, [1134] = 1134, - [1135] = 929, - [1136] = 936, - [1137] = 937, + [1135] = 1135, + [1136] = 1136, + [1137] = 949, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1021, - [1142] = 930, + [1141] = 1141, + [1142] = 1142, [1143] = 1143, - [1144] = 931, - [1145] = 1145, + [1144] = 729, + [1145] = 1032, [1146] = 1146, - [1147] = 933, + [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 1044, + [1150] = 1150, [1151] = 1151, [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 737, + [1155] = 1155, [1156] = 1156, [1157] = 1157, [1158] = 1158, [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, + [1162] = 1093, + [1163] = 1094, + [1164] = 733, [1165] = 1165, - [1166] = 1164, + [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1169, + [1169] = 917, [1170] = 1170, [1171] = 1171, - [1172] = 1172, + [1172] = 736, [1173] = 1173, [1174] = 1174, [1175] = 1175, @@ -6228,13 +6235,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1179] = 1179, [1180] = 1180, [1181] = 1181, - [1182] = 1165, + [1182] = 1182, [1183] = 1183, [1184] = 1184, [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1188, + [1188] = 759, [1189] = 1189, [1190] = 1190, [1191] = 1191, @@ -6246,51 +6253,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1153, - [1201] = 1037, - [1202] = 1038, + [1200] = 749, + [1201] = 1201, + [1202] = 750, [1203] = 1203, - [1204] = 1037, - [1205] = 1038, + [1204] = 1204, + [1205] = 1205, [1206] = 1206, - [1207] = 1039, + [1207] = 1207, [1208] = 1208, - [1209] = 742, + [1209] = 1209, [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, - [1214] = 795, - [1215] = 903, + [1214] = 1214, + [1215] = 1215, [1216] = 1216, [1217] = 1217, - [1218] = 1218, - [1219] = 775, + [1218] = 1097, + [1219] = 1219, [1220] = 1220, - [1221] = 776, - [1222] = 1222, - [1223] = 777, + [1221] = 1221, + [1222] = 916, + [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1227, - [1228] = 1154, + [1227] = 1184, + [1228] = 1228, [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1154, + [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1045, + [1237] = 1186, [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, - [1242] = 697, + [1242] = 1242, [1243] = 1243, - [1244] = 1244, + [1244] = 746, [1245] = 1245, [1246] = 1246, [1247] = 1247, @@ -6299,14 +6306,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, + [1253] = 1093, + [1254] = 1094, + [1255] = 751, + [1256] = 1235, [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1260, + [1260] = 1064, [1261] = 1261, [1262] = 1262, [1263] = 1263, @@ -6318,10 +6325,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1272, + [1272] = 1259, [1273] = 1273, [1274] = 1274, - [1275] = 784, + [1275] = 1275, [1276] = 1276, [1277] = 1277, [1278] = 1278, @@ -6331,1041 +6338,1041 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1282] = 1282, [1283] = 1283, [1284] = 1284, - [1285] = 1285, - [1286] = 1154, - [1287] = 1154, + [1285] = 1259, + [1286] = 1259, + [1287] = 1259, [1288] = 1288, - [1289] = 956, - [1290] = 946, - [1291] = 947, - [1292] = 976, - [1293] = 1293, - [1294] = 774, - [1295] = 951, - [1296] = 1296, - [1297] = 768, - [1298] = 1260, - [1299] = 966, - [1300] = 978, - [1301] = 974, - [1302] = 782, - [1303] = 788, - [1304] = 744, - [1305] = 790, - [1306] = 979, - [1307] = 900, - [1308] = 970, - [1309] = 1261, - [1310] = 1256, - [1311] = 803, - [1312] = 1262, - [1313] = 760, - [1314] = 1314, - [1315] = 786, - [1316] = 783, - [1317] = 958, - [1318] = 762, - [1319] = 917, - [1320] = 961, - [1321] = 804, - [1322] = 1254, - [1323] = 1258, - [1324] = 805, - [1325] = 957, - [1326] = 968, - [1327] = 809, - [1328] = 801, - [1329] = 1263, - [1330] = 814, - [1331] = 745, - [1332] = 764, - [1333] = 963, - [1334] = 901, + [1289] = 1203, + [1290] = 768, + [1291] = 769, + [1292] = 1292, + [1293] = 980, + [1294] = 959, + [1295] = 753, + [1296] = 760, + [1297] = 1297, + [1298] = 761, + [1299] = 1299, + [1300] = 762, + [1301] = 763, + [1302] = 764, + [1303] = 979, + [1304] = 765, + [1305] = 942, + [1306] = 747, + [1307] = 953, + [1308] = 889, + [1309] = 758, + [1310] = 976, + [1311] = 1225, + [1312] = 977, + [1313] = 1226, + [1314] = 964, + [1315] = 978, + [1316] = 1316, + [1317] = 920, + [1318] = 1178, + [1319] = 955, + [1320] = 922, + [1321] = 965, + [1322] = 923, + [1323] = 983, + [1324] = 1181, + [1325] = 925, + [1326] = 966, + [1327] = 989, + [1328] = 1201, + [1329] = 1329, + [1330] = 986, + [1331] = 967, + [1332] = 918, + [1333] = 755, + [1334] = 948, [1335] = 1335, - [1336] = 810, - [1337] = 969, - [1338] = 980, - [1339] = 1264, - [1340] = 967, - [1341] = 1341, - [1342] = 949, - [1343] = 740, - [1344] = 972, - [1345] = 772, - [1346] = 964, - [1347] = 988, - [1348] = 962, - [1349] = 802, - [1350] = 765, - [1351] = 1255, - [1352] = 965, - [1353] = 1353, - [1354] = 924, - [1355] = 953, - [1356] = 950, - [1357] = 955, - [1358] = 1259, - [1359] = 1257, - [1360] = 1296, - [1361] = 945, - [1362] = 1253, - [1363] = 785, - [1364] = 954, - [1365] = 815, + [1336] = 888, + [1337] = 754, + [1338] = 501, + [1339] = 697, + [1340] = 939, + [1341] = 944, + [1342] = 968, + [1343] = 748, + [1344] = 1209, + [1345] = 726, + [1346] = 970, + [1347] = 1215, + [1348] = 971, + [1349] = 1217, + [1350] = 1350, + [1351] = 1351, + [1352] = 972, + [1353] = 1335, + [1354] = 785, + [1355] = 786, + [1356] = 973, + [1357] = 974, + [1358] = 985, + [1359] = 766, + [1360] = 1221, + [1361] = 767, + [1362] = 963, + [1363] = 1363, + [1364] = 1171, + [1365] = 752, [1366] = 1366, - [1367] = 1367, - [1368] = 1368, - [1369] = 1369, - [1370] = 1370, - [1371] = 1371, - [1372] = 503, - [1373] = 1366, + [1367] = 975, + [1368] = 1223, + [1369] = 969, + [1370] = 984, + [1371] = 1350, + [1372] = 1366, + [1373] = 1373, [1374] = 1374, [1375] = 1375, [1376] = 1376, [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1367, - [1381] = 1375, - [1382] = 1370, - [1383] = 1377, - [1384] = 530, + [1378] = 649, + [1379] = 1376, + [1380] = 1380, + [1381] = 1363, + [1382] = 1316, + [1383] = 1383, + [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1368, + [1387] = 1387, [1388] = 1388, - [1389] = 1385, + [1389] = 1374, [1390] = 1390, - [1391] = 1388, + [1391] = 1386, [1392] = 1392, - [1393] = 1388, - [1394] = 1388, + [1393] = 1393, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1388, + [1401] = 1401, [1402] = 1402, - [1403] = 1403, - [1404] = 1404, + [1403] = 1397, + [1404] = 1397, [1405] = 1405, - [1406] = 406, + [1406] = 1397, [1407] = 1407, - [1408] = 1408, + [1408] = 1397, [1409] = 1409, - [1410] = 406, - [1411] = 412, + [1410] = 1410, + [1411] = 409, [1412] = 1412, - [1413] = 418, + [1413] = 425, [1414] = 1414, - [1415] = 1415, - [1416] = 1416, + [1415] = 409, + [1416] = 501, [1417] = 1417, - [1418] = 503, - [1419] = 93, - [1420] = 412, - [1421] = 1421, - [1422] = 1422, - [1423] = 418, - [1424] = 1424, - [1425] = 92, - [1426] = 93, - [1427] = 464, - [1428] = 92, - [1429] = 96, + [1418] = 413, + [1419] = 649, + [1420] = 1420, + [1421] = 92, + [1422] = 93, + [1423] = 1423, + [1424] = 413, + [1425] = 425, + [1426] = 1426, + [1427] = 1427, + [1428] = 93, + [1429] = 92, [1430] = 100, - [1431] = 1431, - [1432] = 530, - [1433] = 1433, - [1434] = 459, - [1435] = 100, - [1436] = 96, - [1437] = 450, - [1438] = 104, - [1439] = 1439, - [1440] = 106, - [1441] = 107, - [1442] = 1442, + [1431] = 460, + [1432] = 101, + [1433] = 115, + [1434] = 1434, + [1435] = 1435, + [1436] = 101, + [1437] = 460, + [1438] = 113, + [1439] = 105, + [1440] = 1440, + [1441] = 453, + [1442] = 100, [1443] = 1443, - [1444] = 1444, - [1445] = 464, - [1446] = 489, - [1447] = 106, - [1448] = 459, - [1449] = 104, - [1450] = 107, - [1451] = 481, - [1452] = 450, - [1453] = 1453, - [1454] = 517, - [1455] = 515, - [1456] = 528, - [1457] = 516, - [1458] = 690, - [1459] = 489, - [1460] = 1460, - [1461] = 481, - [1462] = 1453, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 528, - [1467] = 459, - [1468] = 516, - [1469] = 1465, - [1470] = 515, - [1471] = 450, - [1472] = 690, - [1473] = 1460, - [1474] = 517, + [1444] = 459, + [1445] = 1445, + [1446] = 113, + [1447] = 453, + [1448] = 115, + [1449] = 105, + [1450] = 459, + [1451] = 491, + [1452] = 492, + [1453] = 517, + [1454] = 1454, + [1455] = 633, + [1456] = 634, + [1457] = 491, + [1458] = 502, + [1459] = 516, + [1460] = 492, + [1461] = 1461, + [1462] = 1461, + [1463] = 634, + [1464] = 517, + [1465] = 453, + [1466] = 459, + [1467] = 1454, + [1468] = 633, + [1469] = 1469, + [1470] = 1470, + [1471] = 502, + [1472] = 516, + [1473] = 1470, + [1474] = 1474, [1475] = 1475, - [1476] = 1476, - [1477] = 1464, + [1476] = 459, + [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 450, + [1480] = 1480, [1481] = 1481, - [1482] = 459, + [1482] = 1482, [1483] = 1483, [1484] = 1484, - [1485] = 481, + [1485] = 1485, [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 489, - [1490] = 1490, + [1487] = 491, + [1488] = 492, + [1489] = 1469, + [1490] = 453, [1491] = 1491, [1492] = 1492, - [1493] = 937, - [1494] = 935, - [1495] = 936, - [1496] = 930, - [1497] = 489, - [1498] = 1498, - [1499] = 931, - [1500] = 1500, - [1501] = 481, - [1502] = 934, - [1503] = 920, + [1493] = 516, + [1494] = 1494, + [1495] = 956, + [1496] = 887, + [1497] = 1497, + [1498] = 929, + [1499] = 961, + [1500] = 931, + [1501] = 932, + [1502] = 960, + [1503] = 517, [1504] = 1504, - [1505] = 516, - [1506] = 933, - [1507] = 927, - [1508] = 1508, - [1509] = 517, - [1510] = 929, - [1511] = 515, - [1512] = 1039, - [1513] = 920, - [1514] = 931, - [1515] = 935, - [1516] = 1516, - [1517] = 1517, - [1518] = 1516, - [1519] = 1516, - [1520] = 1516, - [1521] = 1521, - [1522] = 1037, - [1523] = 1038, - [1524] = 933, - [1525] = 927, - [1526] = 1516, - [1527] = 1516, - [1528] = 515, - [1529] = 929, - [1530] = 1530, - [1531] = 1517, - [1532] = 516, - [1533] = 1516, - [1534] = 936, - [1535] = 1516, - [1536] = 1045, - [1537] = 517, - [1538] = 937, - [1539] = 930, - [1540] = 934, - [1541] = 1541, - [1542] = 1284, + [1505] = 1505, + [1506] = 491, + [1507] = 952, + [1508] = 987, + [1509] = 949, + [1510] = 502, + [1511] = 492, + [1512] = 1512, + [1513] = 956, + [1514] = 502, + [1515] = 516, + [1516] = 929, + [1517] = 931, + [1518] = 932, + [1519] = 1519, + [1520] = 887, + [1521] = 1512, + [1522] = 1522, + [1523] = 1523, + [1524] = 949, + [1525] = 1525, + [1526] = 1512, + [1527] = 1523, + [1528] = 1097, + [1529] = 1093, + [1530] = 1094, + [1531] = 952, + [1532] = 1512, + [1533] = 1064, + [1534] = 960, + [1535] = 1512, + [1536] = 517, + [1537] = 961, + [1538] = 987, + [1539] = 1512, + [1540] = 1512, + [1541] = 1512, + [1542] = 1214, [1543] = 1543, - [1544] = 1045, + [1544] = 1544, [1545] = 1545, [1546] = 1546, [1547] = 1547, - [1548] = 1530, - [1549] = 1037, - [1550] = 1038, - [1551] = 1551, + [1548] = 1548, + [1549] = 1549, + [1550] = 1093, + [1551] = 1094, [1552] = 1552, - [1553] = 1039, + [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1558, - [1559] = 1558, - [1560] = 1560, - [1561] = 1561, - [1562] = 406, - [1563] = 1551, - [1564] = 1552, - [1565] = 1554, - [1566] = 1555, - [1567] = 1556, - [1568] = 1557, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, + [1558] = 1548, + [1559] = 1549, + [1560] = 1552, + [1561] = 1553, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1554, + [1569] = 1555, + [1570] = 1556, + [1571] = 1557, [1572] = 1572, [1573] = 1573, [1574] = 1574, - [1575] = 1569, - [1576] = 1570, - [1577] = 1571, - [1578] = 1578, - [1579] = 1579, - [1580] = 1543, - [1581] = 1545, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1543, + [1579] = 1544, + [1580] = 1545, + [1581] = 1546, [1582] = 1572, - [1583] = 1583, - [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1546, - [1588] = 1547, + [1583] = 1577, + [1584] = 1064, + [1585] = 1562, + [1586] = 1563, + [1587] = 1564, + [1588] = 1565, [1589] = 1573, [1590] = 1574, - [1591] = 1184, - [1592] = 1192, - [1593] = 1194, - [1594] = 1196, - [1595] = 1199, - [1596] = 1152, - [1597] = 1203, - [1598] = 1206, - [1599] = 1208, - [1600] = 1210, - [1601] = 1211, - [1602] = 1212, - [1603] = 1235, - [1604] = 1238, - [1605] = 1239, - [1606] = 1241, - [1607] = 1243, - [1608] = 1245, - [1609] = 1247, - [1610] = 1249, - [1611] = 1250, - [1612] = 1251, - [1613] = 1252, - [1614] = 1265, - [1615] = 1267, - [1616] = 1268, - [1617] = 1269, - [1618] = 1272, - [1619] = 1277, - [1620] = 1279, - [1621] = 1280, - [1622] = 1282, - [1623] = 1283, - [1624] = 1285, - [1625] = 1266, - [1626] = 1220, - [1627] = 1189, - [1628] = 1229, - [1629] = 1181, - [1630] = 1579, - [1631] = 1217, - [1632] = 1234, - [1633] = 1246, - [1634] = 1177, - [1635] = 1560, - [1636] = 1191, - [1637] = 1213, - [1638] = 1226, - [1639] = 1561, - [1640] = 1179, - [1641] = 1185, - [1642] = 1186, - [1643] = 1188, - [1644] = 1190, - [1645] = 1193, - [1646] = 1195, - [1647] = 1198, - [1648] = 1216, - [1649] = 1218, - [1650] = 1222, - [1651] = 1224, - [1652] = 1227, - [1653] = 1288, - [1654] = 1230, - [1655] = 1231, - [1656] = 1233, - [1657] = 1236, - [1658] = 1240, - [1659] = 1244, - [1660] = 1248, - [1661] = 1270, - [1662] = 1271, - [1663] = 1273, - [1664] = 1274, - [1665] = 1276, - [1666] = 1278, - [1667] = 1281, - [1668] = 1156, - [1669] = 1157, - [1670] = 1158, - [1671] = 1159, - [1672] = 1160, - [1673] = 1161, - [1674] = 1162, - [1675] = 1163, - [1676] = 1167, - [1677] = 1168, - [1678] = 1169, - [1679] = 1170, - [1680] = 1171, - [1681] = 1172, - [1682] = 1173, - [1683] = 1174, - [1684] = 1175, - [1685] = 1176, - [1686] = 1178, - [1687] = 1180, - [1688] = 1583, - [1689] = 1584, - [1690] = 1585, - [1691] = 1586, - [1692] = 1253, - [1693] = 1254, - [1694] = 1255, - [1695] = 1256, - [1696] = 1257, - [1697] = 1258, - [1698] = 1259, - [1699] = 1260, - [1700] = 1261, - [1701] = 1262, - [1702] = 1263, - [1703] = 1264, - [1704] = 1578, - [1705] = 1197, - [1706] = 1706, + [1591] = 1566, + [1592] = 1097, + [1593] = 1567, + [1594] = 1276, + [1595] = 1284, + [1596] = 1161, + [1597] = 1232, + [1598] = 1269, + [1599] = 1179, + [1600] = 1229, + [1601] = 1240, + [1602] = 409, + [1603] = 1288, + [1604] = 1213, + [1605] = 1281, + [1606] = 1205, + [1607] = 1197, + [1608] = 1208, + [1609] = 1219, + [1610] = 1224, + [1611] = 1233, + [1612] = 1236, + [1613] = 1239, + [1614] = 1245, + [1615] = 1248, + [1616] = 1250, + [1617] = 1258, + [1618] = 1262, + [1619] = 1263, + [1620] = 1265, + [1621] = 1268, + [1622] = 1277, + [1623] = 1152, + [1624] = 1282, + [1625] = 1279, + [1626] = 1234, + [1627] = 1247, + [1628] = 1211, + [1629] = 1238, + [1630] = 1547, + [1631] = 1199, + [1632] = 1230, + [1633] = 1251, + [1634] = 1156, + [1635] = 1175, + [1636] = 1198, + [1637] = 1207, + [1638] = 1242, + [1639] = 1266, + [1640] = 1275, + [1641] = 1154, + [1642] = 1204, + [1643] = 1206, + [1644] = 1210, + [1645] = 1212, + [1646] = 1216, + [1647] = 1220, + [1648] = 1228, + [1649] = 1231, + [1650] = 1241, + [1651] = 1243, + [1652] = 1246, + [1653] = 1249, + [1654] = 1252, + [1655] = 1257, + [1656] = 1261, + [1657] = 1264, + [1658] = 1267, + [1659] = 1270, + [1660] = 1271, + [1661] = 1274, + [1662] = 1278, + [1663] = 1280, + [1664] = 1283, + [1665] = 1153, + [1666] = 1155, + [1667] = 1157, + [1668] = 1159, + [1669] = 1160, + [1670] = 1166, + [1671] = 1168, + [1672] = 1170, + [1673] = 1173, + [1674] = 1174, + [1675] = 1176, + [1676] = 1177, + [1677] = 1180, + [1678] = 1575, + [1679] = 1576, + [1680] = 1182, + [1681] = 1183, + [1682] = 1185, + [1683] = 1187, + [1684] = 1189, + [1685] = 1190, + [1686] = 1191, + [1687] = 1192, + [1688] = 1193, + [1689] = 1194, + [1690] = 1195, + [1691] = 1196, + [1692] = 1171, + [1693] = 1178, + [1694] = 1181, + [1695] = 1201, + [1696] = 1203, + [1697] = 1209, + [1698] = 1215, + [1699] = 1217, + [1700] = 1221, + [1701] = 1223, + [1702] = 1225, + [1703] = 1226, + [1704] = 1522, + [1705] = 1158, + [1706] = 1203, [1707] = 1707, - [1708] = 1708, - [1709] = 1709, + [1708] = 425, + [1709] = 1171, [1710] = 1710, - [1711] = 1707, - [1712] = 1712, - [1713] = 1253, - [1714] = 1254, - [1715] = 1255, - [1716] = 1256, - [1717] = 1257, - [1718] = 1258, - [1719] = 1259, - [1720] = 1260, - [1721] = 1261, - [1722] = 1262, - [1723] = 1263, - [1724] = 1264, - [1725] = 406, - [1726] = 418, - [1727] = 1727, - [1728] = 412, - [1729] = 1706, - [1730] = 1708, - [1731] = 1727, - [1732] = 1712, - [1733] = 393, - [1734] = 1734, - [1735] = 418, - [1736] = 412, - [1737] = 93, - [1738] = 1738, - [1739] = 422, - [1740] = 389, - [1741] = 343, - [1742] = 416, + [1711] = 1178, + [1712] = 1181, + [1713] = 1713, + [1714] = 1201, + [1715] = 413, + [1716] = 1209, + [1717] = 1215, + [1718] = 1718, + [1719] = 1719, + [1720] = 1217, + [1721] = 1221, + [1722] = 1223, + [1723] = 1225, + [1724] = 1226, + [1725] = 1725, + [1726] = 1726, + [1727] = 1707, + [1728] = 409, + [1729] = 1726, + [1730] = 1710, + [1731] = 1725, + [1732] = 1719, + [1733] = 93, + [1734] = 414, + [1735] = 1735, + [1736] = 344, + [1737] = 402, + [1738] = 345, + [1739] = 1739, + [1740] = 92, + [1741] = 413, + [1742] = 425, [1743] = 1743, - [1744] = 92, - [1745] = 344, - [1746] = 364, - [1747] = 100, - [1748] = 1748, - [1749] = 421, - [1750] = 93, - [1751] = 422, - [1752] = 348, - [1753] = 1753, - [1754] = 96, - [1755] = 344, - [1756] = 92, - [1757] = 357, - [1758] = 343, - [1759] = 360, - [1760] = 349, - [1761] = 92, - [1762] = 351, - [1763] = 420, - [1764] = 93, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1768, - [1769] = 464, - [1770] = 1770, - [1771] = 424, - [1772] = 1768, + [1744] = 423, + [1745] = 399, + [1746] = 414, + [1747] = 1747, + [1748] = 344, + [1749] = 1749, + [1750] = 1750, + [1751] = 92, + [1752] = 460, + [1753] = 420, + [1754] = 101, + [1755] = 1755, + [1756] = 349, + [1757] = 421, + [1758] = 1758, + [1759] = 348, + [1760] = 1749, + [1761] = 374, + [1762] = 412, + [1763] = 356, + [1764] = 1764, + [1765] = 352, + [1766] = 357, + [1767] = 354, + [1768] = 1747, + [1769] = 423, + [1770] = 424, + [1771] = 417, + [1772] = 418, [1773] = 1773, - [1774] = 1767, - [1775] = 416, - [1776] = 415, - [1777] = 417, - [1778] = 419, - [1779] = 1770, - [1780] = 1773, - [1781] = 1770, - [1782] = 1773, - [1783] = 359, - [1784] = 1770, + [1774] = 93, + [1775] = 1775, + [1776] = 1764, + [1777] = 100, + [1778] = 1750, + [1779] = 92, + [1780] = 1764, + [1781] = 1750, + [1782] = 93, + [1783] = 1764, + [1784] = 1750, [1785] = 1773, - [1786] = 1786, - [1787] = 1753, - [1788] = 354, + [1786] = 345, + [1787] = 1787, + [1788] = 353, [1789] = 1789, [1790] = 1790, - [1791] = 459, - [1792] = 359, - [1793] = 364, - [1794] = 1794, - [1795] = 1790, - [1796] = 96, - [1797] = 1789, - [1798] = 1790, - [1799] = 464, - [1800] = 100, - [1801] = 357, - [1802] = 360, - [1803] = 1794, - [1804] = 106, - [1805] = 450, - [1806] = 1806, - [1807] = 1807, - [1808] = 379, - [1809] = 1790, - [1810] = 347, - [1811] = 354, + [1791] = 353, + [1792] = 1792, + [1793] = 459, + [1794] = 1789, + [1795] = 113, + [1796] = 374, + [1797] = 378, + [1798] = 354, + [1799] = 1799, + [1800] = 349, + [1801] = 1801, + [1802] = 1802, + [1803] = 1799, + [1804] = 101, + [1805] = 105, + [1806] = 1801, + [1807] = 357, + [1808] = 1789, + [1809] = 100, + [1810] = 343, + [1811] = 1802, [1812] = 348, - [1813] = 349, - [1814] = 1794, - [1815] = 1815, - [1816] = 1816, - [1817] = 107, - [1818] = 1794, - [1819] = 96, + [1813] = 460, + [1814] = 356, + [1815] = 1802, + [1816] = 352, + [1817] = 101, + [1818] = 1802, + [1819] = 115, [1820] = 100, - [1821] = 1821, - [1822] = 1806, - [1823] = 1816, - [1824] = 1807, - [1825] = 104, - [1826] = 351, - [1827] = 1827, - [1828] = 1828, + [1821] = 453, + [1822] = 1822, + [1823] = 1792, + [1824] = 1789, + [1825] = 1825, + [1826] = 1825, + [1827] = 105, + [1828] = 459, [1829] = 1829, - [1830] = 106, - [1831] = 1831, - [1832] = 1831, - [1833] = 1827, + [1830] = 1830, + [1831] = 115, + [1832] = 1829, + [1833] = 1830, [1834] = 1834, - [1835] = 104, - [1836] = 1827, - [1837] = 1837, - [1838] = 489, - [1839] = 1839, - [1840] = 481, - [1841] = 450, - [1842] = 1831, - [1843] = 1827, - [1844] = 106, + [1835] = 113, + [1836] = 1836, + [1837] = 1836, + [1838] = 1836, + [1839] = 1834, + [1840] = 115, + [1841] = 113, + [1842] = 1836, + [1843] = 1843, + [1844] = 105, [1845] = 1845, [1846] = 1846, - [1847] = 459, - [1848] = 1837, - [1849] = 1828, - [1850] = 1850, - [1851] = 1837, - [1852] = 1852, - [1853] = 107, - [1854] = 1837, - [1855] = 107, - [1856] = 1828, - [1857] = 1857, - [1858] = 353, - [1859] = 1828, - [1860] = 367, - [1861] = 1861, - [1862] = 1828, - [1863] = 1837, - [1864] = 104, - [1865] = 347, - [1866] = 350, - [1867] = 379, - [1868] = 1868, - [1869] = 1831, - [1870] = 1827, - [1871] = 1837, - [1872] = 1828, - [1873] = 1831, - [1874] = 1827, - [1875] = 1831, - [1876] = 354, - [1877] = 810, - [1878] = 901, - [1879] = 515, - [1880] = 353, - [1881] = 528, - [1882] = 516, + [1847] = 1834, + [1848] = 1836, + [1849] = 1830, + [1850] = 369, + [1851] = 366, + [1852] = 1830, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1856, + [1857] = 492, + [1858] = 343, + [1859] = 1829, + [1860] = 1830, + [1861] = 1834, + [1862] = 1829, + [1863] = 1863, + [1864] = 1834, + [1865] = 453, + [1866] = 1866, + [1867] = 1867, + [1868] = 368, + [1869] = 1829, + [1870] = 1830, + [1871] = 1836, + [1872] = 378, + [1873] = 1834, + [1874] = 1829, + [1875] = 491, + [1876] = 633, + [1877] = 353, + [1878] = 1878, + [1879] = 502, + [1880] = 354, + [1881] = 516, + [1882] = 491, [1883] = 383, - [1884] = 517, - [1885] = 1885, - [1886] = 493, - [1887] = 489, - [1888] = 737, - [1889] = 690, - [1890] = 814, - [1891] = 481, - [1892] = 815, - [1893] = 367, - [1894] = 348, - [1895] = 360, - [1896] = 1896, - [1897] = 697, - [1898] = 349, - [1899] = 350, - [1900] = 487, - [1901] = 357, - [1902] = 1902, - [1903] = 809, - [1904] = 1904, - [1905] = 745, - [1906] = 351, - [1907] = 344, - [1908] = 459, - [1909] = 357, - [1910] = 506, - [1911] = 487, - [1912] = 515, - [1913] = 516, - [1914] = 517, - [1915] = 1915, - [1916] = 814, - [1917] = 360, - [1918] = 815, - [1919] = 383, - [1920] = 697, - [1921] = 745, - [1922] = 351, - [1923] = 901, - [1924] = 1924, - [1925] = 354, - [1926] = 348, - [1927] = 349, - [1928] = 499, - [1929] = 809, - [1930] = 810, - [1931] = 92, - [1932] = 1484, - [1933] = 690, - [1934] = 93, - [1935] = 507, - [1936] = 508, - [1937] = 528, - [1938] = 737, - [1939] = 510, - [1940] = 1915, - [1941] = 1941, - [1942] = 450, - [1943] = 343, - [1944] = 1885, - [1945] = 493, - [1946] = 498, - [1947] = 1941, + [1884] = 348, + [1885] = 356, + [1886] = 357, + [1887] = 368, + [1888] = 369, + [1889] = 1889, + [1890] = 1890, + [1891] = 733, + [1892] = 766, + [1893] = 1893, + [1894] = 785, + [1895] = 786, + [1896] = 736, + [1897] = 492, + [1898] = 493, + [1899] = 767, + [1900] = 517, + [1901] = 768, + [1902] = 769, + [1903] = 482, + [1904] = 352, + [1905] = 634, + [1906] = 366, + [1907] = 1907, + [1908] = 383, + [1909] = 518, + [1910] = 499, + [1911] = 634, + [1912] = 453, + [1913] = 736, + [1914] = 785, + [1915] = 768, + [1916] = 769, + [1917] = 493, + [1918] = 348, + [1919] = 1878, + [1920] = 353, + [1921] = 510, + [1922] = 1922, + [1923] = 766, + [1924] = 511, + [1925] = 767, + [1926] = 1907, + [1927] = 633, + [1928] = 357, + [1929] = 517, + [1930] = 354, + [1931] = 459, + [1932] = 514, + [1933] = 345, + [1934] = 1483, + [1935] = 502, + [1936] = 516, + [1937] = 733, + [1938] = 344, + [1939] = 1939, + [1940] = 1939, + [1941] = 509, + [1942] = 92, + [1943] = 482, + [1944] = 786, + [1945] = 352, + [1946] = 93, + [1947] = 356, [1948] = 1948, - [1949] = 348, - [1950] = 349, - [1951] = 354, - [1952] = 96, - [1953] = 360, - [1954] = 1954, + [1949] = 349, + [1950] = 491, + [1951] = 352, + [1952] = 100, + [1953] = 101, + [1954] = 93, [1955] = 92, - [1956] = 1948, - [1957] = 459, - [1958] = 93, - [1959] = 1508, - [1960] = 357, - [1961] = 100, - [1962] = 489, - [1963] = 481, - [1964] = 359, - [1965] = 364, - [1966] = 450, - [1967] = 351, - [1968] = 1968, - [1969] = 930, + [1956] = 374, + [1957] = 353, + [1958] = 354, + [1959] = 453, + [1960] = 459, + [1961] = 348, + [1962] = 1504, + [1963] = 356, + [1964] = 357, + [1965] = 1948, + [1966] = 492, + [1967] = 1967, + [1968] = 343, + [1969] = 1483, [1970] = 1970, [1971] = 931, - [1972] = 1972, + [1972] = 932, [1973] = 1973, [1974] = 1974, - [1975] = 96, - [1976] = 937, - [1977] = 106, + [1975] = 730, + [1976] = 100, + [1977] = 1977, [1978] = 1978, - [1979] = 1484, - [1980] = 107, + [1979] = 491, + [1980] = 113, [1981] = 1981, - [1982] = 933, - [1983] = 1983, - [1984] = 1984, - [1985] = 1985, - [1986] = 1986, + [1982] = 722, + [1983] = 115, + [1984] = 717, + [1985] = 719, + [1986] = 952, [1987] = 1987, - [1988] = 1498, - [1989] = 515, - [1990] = 347, + [1988] = 1988, + [1989] = 492, + [1990] = 1990, [1991] = 1991, - [1992] = 100, - [1993] = 516, - [1994] = 517, - [1995] = 104, - [1996] = 1996, - [1997] = 379, - [1998] = 1998, - [1999] = 934, - [2000] = 730, - [2001] = 1974, - [2002] = 489, - [2003] = 2003, - [2004] = 743, - [2005] = 698, - [2006] = 728, - [2007] = 929, - [2008] = 720, - [2009] = 935, - [2010] = 696, - [2011] = 724, - [2012] = 725, - [2013] = 727, - [2014] = 927, - [2015] = 920, - [2016] = 481, - [2017] = 936, - [2018] = 1185, - [2019] = 2019, - [2020] = 1161, - [2021] = 1162, - [2022] = 1163, + [1992] = 1992, + [1993] = 708, + [1994] = 715, + [1995] = 716, + [1996] = 718, + [1997] = 929, + [1998] = 949, + [1999] = 1505, + [2000] = 2000, + [2001] = 101, + [2002] = 2002, + [2003] = 956, + [2004] = 2004, + [2005] = 517, + [2006] = 2006, + [2007] = 887, + [2008] = 502, + [2009] = 2009, + [2010] = 987, + [2011] = 699, + [2012] = 516, + [2013] = 960, + [2014] = 105, + [2015] = 1973, + [2016] = 961, + [2017] = 378, + [2018] = 1168, + [2019] = 1242, + [2020] = 1266, + [2021] = 1275, + [2022] = 1154, [2023] = 2023, - [2024] = 2024, - [2025] = 1222, - [2026] = 1484, - [2027] = 2027, - [2028] = 1224, - [2029] = 343, - [2030] = 2030, - [2031] = 2031, - [2032] = 503, - [2033] = 742, - [2034] = 1167, - [2035] = 1168, - [2036] = 1169, - [2037] = 1170, - [2038] = 935, - [2039] = 1045, - [2040] = 927, - [2041] = 1171, - [2042] = 1172, - [2043] = 1173, - [2044] = 1174, - [2045] = 2045, - [2046] = 1175, - [2047] = 1176, - [2048] = 1178, - [2049] = 1180, - [2050] = 1227, - [2051] = 1288, - [2052] = 1230, - [2053] = 929, - [2054] = 1231, - [2055] = 927, - [2056] = 2056, - [2057] = 2023, - [2058] = 936, - [2059] = 937, - [2060] = 935, - [2061] = 1184, - [2062] = 1192, - [2063] = 1194, - [2064] = 1233, - [2065] = 1196, - [2066] = 930, - [2067] = 1199, - [2068] = 1152, - [2069] = 1203, - [2070] = 1206, - [2071] = 2027, - [2072] = 1208, - [2073] = 1210, - [2074] = 1211, - [2075] = 1212, - [2076] = 1521, - [2077] = 1236, - [2078] = 936, - [2079] = 1240, - [2080] = 931, - [2081] = 933, - [2082] = 2082, - [2083] = 934, - [2084] = 1244, - [2085] = 920, - [2086] = 937, - [2087] = 1248, - [2088] = 104, - [2089] = 1270, - [2090] = 1271, - [2091] = 1273, - [2092] = 1274, - [2093] = 1276, - [2094] = 1235, - [2095] = 1238, - [2096] = 1239, - [2097] = 1241, - [2098] = 1243, - [2099] = 1245, - [2100] = 1247, - [2101] = 1249, - [2102] = 1250, - [2103] = 1251, - [2104] = 1252, - [2105] = 1265, - [2106] = 1267, - [2107] = 1268, - [2108] = 1278, - [2109] = 1269, - [2110] = 1272, - [2111] = 1277, - [2112] = 2112, - [2113] = 2023, - [2114] = 1279, - [2115] = 1280, - [2116] = 1282, - [2117] = 2023, - [2118] = 353, - [2119] = 367, - [2120] = 1283, - [2121] = 2023, - [2122] = 2023, - [2123] = 350, - [2124] = 1285, - [2125] = 1266, - [2126] = 1220, - [2127] = 1189, + [2024] = 1204, + [2025] = 1206, + [2026] = 1210, + [2027] = 1212, + [2028] = 1216, + [2029] = 1220, + [2030] = 1228, + [2031] = 1231, + [2032] = 1207, + [2033] = 1243, + [2034] = 1246, + [2035] = 1249, + [2036] = 1252, + [2037] = 1257, + [2038] = 1261, + [2039] = 1264, + [2040] = 1267, + [2041] = 1270, + [2042] = 1271, + [2043] = 1274, + [2044] = 1278, + [2045] = 1280, + [2046] = 1283, + [2047] = 1153, + [2048] = 1155, + [2049] = 1157, + [2050] = 1159, + [2051] = 1160, + [2052] = 1166, + [2053] = 1170, + [2054] = 1173, + [2055] = 1174, + [2056] = 1176, + [2057] = 1177, + [2058] = 1180, + [2059] = 1182, + [2060] = 1183, + [2061] = 1185, + [2062] = 1187, + [2063] = 1189, + [2064] = 1190, + [2065] = 1191, + [2066] = 1192, + [2067] = 1193, + [2068] = 1194, + [2069] = 1195, + [2070] = 1196, + [2071] = 2071, + [2072] = 2072, + [2073] = 1097, + [2074] = 2074, + [2075] = 1504, + [2076] = 1505, + [2077] = 2077, + [2078] = 2078, + [2079] = 517, + [2080] = 746, + [2081] = 929, + [2082] = 1097, + [2083] = 949, + [2084] = 502, + [2085] = 516, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 949, + [2090] = 369, + [2091] = 2091, + [2092] = 931, + [2093] = 932, + [2094] = 366, + [2095] = 952, + [2096] = 2077, + [2097] = 105, + [2098] = 1525, + [2099] = 2077, + [2100] = 344, + [2101] = 960, + [2102] = 961, + [2103] = 2103, + [2104] = 987, + [2105] = 956, + [2106] = 887, + [2107] = 113, + [2108] = 368, + [2109] = 2109, + [2110] = 2110, + [2111] = 929, + [2112] = 931, + [2113] = 932, + [2114] = 887, + [2115] = 501, + [2116] = 1276, + [2117] = 1284, + [2118] = 1161, + [2119] = 1232, + [2120] = 1269, + [2121] = 1179, + [2122] = 1229, + [2123] = 1240, + [2124] = 2077, + [2125] = 1288, + [2126] = 1213, + [2127] = 2110, [2128] = 1281, - [2129] = 1229, - [2130] = 1284, - [2131] = 1181, - [2132] = 2132, - [2133] = 1156, - [2134] = 1157, - [2135] = 1158, - [2136] = 1197, - [2137] = 1217, - [2138] = 1234, - [2139] = 515, - [2140] = 1246, - [2141] = 920, - [2142] = 1177, - [2143] = 2023, - [2144] = 2144, - [2145] = 1191, - [2146] = 1159, - [2147] = 1508, - [2148] = 1213, - [2149] = 1498, - [2150] = 1226, - [2151] = 107, - [2152] = 1045, - [2153] = 106, - [2154] = 516, - [2155] = 517, - [2156] = 1160, - [2157] = 1179, - [2158] = 1216, - [2159] = 1186, - [2160] = 1188, - [2161] = 1190, - [2162] = 1193, - [2163] = 1195, - [2164] = 1198, - [2165] = 2165, - [2166] = 1218, - [2167] = 2167, - [2168] = 2168, - [2169] = 354, - [2170] = 348, - [2171] = 349, - [2172] = 1508, - [2173] = 737, - [2174] = 783, - [2175] = 357, - [2176] = 740, - [2177] = 953, - [2178] = 810, - [2179] = 2179, - [2180] = 2180, - [2181] = 360, - [2182] = 945, - [2183] = 2183, - [2184] = 744, - [2185] = 954, - [2186] = 762, - [2187] = 784, - [2188] = 795, - [2189] = 1498, - [2190] = 809, - [2191] = 2167, - [2192] = 903, - [2193] = 383, - [2194] = 949, - [2195] = 2195, - [2196] = 530, - [2197] = 814, - [2198] = 509, - [2199] = 2195, - [2200] = 917, - [2201] = 815, - [2202] = 697, - [2203] = 2167, - [2204] = 772, - [2205] = 2195, - [2206] = 1521, - [2207] = 351, - [2208] = 974, - [2209] = 775, - [2210] = 776, - [2211] = 777, - [2212] = 978, - [2213] = 511, - [2214] = 900, - [2215] = 2215, - [2216] = 1045, - [2217] = 745, - [2218] = 901, - [2219] = 2219, - [2220] = 2220, - [2221] = 1262, - [2222] = 1264, - [2223] = 503, - [2224] = 1263, - [2225] = 1256, - [2226] = 1255, - [2227] = 1254, - [2228] = 2220, - [2229] = 1261, - [2230] = 1264, - [2231] = 2231, - [2232] = 1253, - [2233] = 2231, - [2234] = 1254, - [2235] = 1260, - [2236] = 2231, - [2237] = 1256, - [2238] = 1257, - [2239] = 1257, - [2240] = 2231, - [2241] = 1258, - [2242] = 1259, - [2243] = 1258, - [2244] = 1260, - [2245] = 2231, - [2246] = 1261, - [2247] = 2220, - [2248] = 1521, - [2249] = 2231, - [2250] = 1262, - [2251] = 2220, - [2252] = 1263, - [2253] = 2231, - [2254] = 1253, - [2255] = 1259, - [2256] = 2231, - [2257] = 1255, + [2129] = 1205, + [2130] = 2077, + [2131] = 2077, + [2132] = 1483, + [2133] = 115, + [2134] = 2077, + [2135] = 1197, + [2136] = 1208, + [2137] = 1214, + [2138] = 1219, + [2139] = 1224, + [2140] = 1233, + [2141] = 1236, + [2142] = 1239, + [2143] = 1245, + [2144] = 1248, + [2145] = 1250, + [2146] = 1258, + [2147] = 1262, + [2148] = 1263, + [2149] = 1265, + [2150] = 1268, + [2151] = 1277, + [2152] = 1152, + [2153] = 1282, + [2154] = 1279, + [2155] = 1234, + [2156] = 1247, + [2157] = 1211, + [2158] = 1238, + [2159] = 1158, + [2160] = 1199, + [2161] = 1230, + [2162] = 1251, + [2163] = 1156, + [2164] = 1175, + [2165] = 1198, + [2166] = 1241, + [2167] = 733, + [2168] = 916, + [2169] = 917, + [2170] = 512, + [2171] = 918, + [2172] = 352, + [2173] = 2173, + [2174] = 748, + [2175] = 749, + [2176] = 1525, + [2177] = 750, + [2178] = 348, + [2179] = 751, + [2180] = 939, + [2181] = 520, + [2182] = 755, + [2183] = 353, + [2184] = 758, + [2185] = 1505, + [2186] = 356, + [2187] = 357, + [2188] = 759, + [2189] = 785, + [2190] = 2190, + [2191] = 959, + [2192] = 736, + [2193] = 989, + [2194] = 2194, + [2195] = 1504, + [2196] = 2196, + [2197] = 2197, + [2198] = 944, + [2199] = 2199, + [2200] = 649, + [2201] = 1097, + [2202] = 354, + [2203] = 766, + [2204] = 2204, + [2205] = 767, + [2206] = 786, + [2207] = 2207, + [2208] = 697, + [2209] = 969, + [2210] = 726, + [2211] = 768, + [2212] = 769, + [2213] = 888, + [2214] = 984, + [2215] = 2204, + [2216] = 2207, + [2217] = 2207, + [2218] = 2204, + [2219] = 383, + [2220] = 1225, + [2221] = 1181, + [2222] = 1201, + [2223] = 1203, + [2224] = 1209, + [2225] = 1221, + [2226] = 2226, + [2227] = 1215, + [2228] = 1209, + [2229] = 1217, + [2230] = 1221, + [2231] = 1223, + [2232] = 1223, + [2233] = 1226, + [2234] = 1225, + [2235] = 1215, + [2236] = 2236, + [2237] = 1171, + [2238] = 2226, + [2239] = 1203, + [2240] = 1226, + [2241] = 2236, + [2242] = 2226, + [2243] = 2236, + [2244] = 2226, + [2245] = 1201, + [2246] = 2236, + [2247] = 2236, + [2248] = 2236, + [2249] = 2236, + [2250] = 1525, + [2251] = 2236, + [2252] = 1178, + [2253] = 1217, + [2254] = 1171, + [2255] = 501, + [2256] = 1181, + [2257] = 1178, [2258] = 2258, [2259] = 2259, - [2260] = 2259, - [2261] = 2259, - [2262] = 2259, - [2263] = 2259, - [2264] = 530, - [2265] = 2259, + [2260] = 2258, + [2261] = 2258, + [2262] = 2258, + [2263] = 649, + [2264] = 2258, + [2265] = 2258, [2266] = 2266, - [2267] = 2267, - [2268] = 2258, - [2269] = 503, - [2270] = 2270, + [2267] = 1483, + [2268] = 2268, + [2269] = 2269, + [2270] = 2259, [2271] = 2271, - [2272] = 1484, - [2273] = 2273, - [2274] = 348, + [2272] = 2268, + [2273] = 501, + [2274] = 2274, [2275] = 2275, - [2276] = 349, - [2277] = 360, - [2278] = 2027, - [2279] = 1498, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2283, - [2284] = 354, - [2285] = 2285, - [2286] = 1508, - [2287] = 1484, - [2288] = 357, - [2289] = 351, - [2290] = 530, - [2291] = 2291, - [2292] = 2292, + [2276] = 352, + [2277] = 2277, + [2278] = 1483, + [2279] = 2279, + [2280] = 2110, + [2281] = 357, + [2282] = 649, + [2283] = 1505, + [2284] = 348, + [2285] = 356, + [2286] = 2286, + [2287] = 2287, + [2288] = 354, + [2289] = 2289, + [2290] = 2290, + [2291] = 1504, + [2292] = 353, [2293] = 2293, - [2294] = 1498, - [2295] = 1508, + [2294] = 2294, + [2295] = 1505, [2296] = 2296, - [2297] = 1521, + [2297] = 2297, [2298] = 2298, - [2299] = 1521, - [2300] = 2300, + [2299] = 1504, + [2300] = 1525, [2301] = 2301, - [2302] = 383, - [2303] = 2298, - [2304] = 2300, + [2302] = 2302, + [2303] = 1525, + [2304] = 2304, [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 344, - [2309] = 2309, + [2306] = 2302, + [2307] = 2301, + [2308] = 2308, + [2309] = 383, [2310] = 2310, - [2311] = 2311, - [2312] = 2312, - [2313] = 343, - [2314] = 2314, - [2315] = 2315, + [2311] = 345, + [2312] = 344, + [2313] = 2313, + [2314] = 423, + [2315] = 414, [2316] = 2316, [2317] = 2317, [2318] = 2318, - [2319] = 2319, + [2319] = 409, [2320] = 2320, [2321] = 2321, [2322] = 2322, @@ -7374,430 +7381,430 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2325] = 2325, [2326] = 2326, [2327] = 2327, - [2328] = 359, - [2329] = 364, - [2330] = 422, - [2331] = 416, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, [2332] = 2332, [2333] = 2333, [2334] = 2334, - [2335] = 2335, - [2336] = 2334, + [2335] = 374, + [2336] = 2336, [2337] = 2337, [2338] = 2338, - [2339] = 406, - [2340] = 2340, - [2341] = 379, - [2342] = 412, - [2343] = 389, - [2344] = 406, - [2345] = 418, - [2346] = 389, - [2347] = 93, - [2348] = 2348, - [2349] = 406, - [2350] = 2350, - [2351] = 424, - [2352] = 2348, - [2353] = 415, - [2354] = 417, - [2355] = 419, - [2356] = 2356, - [2357] = 418, - [2358] = 2358, - [2359] = 2358, - [2360] = 2356, + [2339] = 2321, + [2340] = 349, + [2341] = 2341, + [2342] = 2342, + [2343] = 2343, + [2344] = 378, + [2345] = 399, + [2346] = 409, + [2347] = 413, + [2348] = 425, + [2349] = 2349, + [2350] = 2349, + [2351] = 413, + [2352] = 2352, + [2353] = 92, + [2354] = 93, + [2355] = 399, + [2356] = 425, + [2357] = 412, + [2358] = 424, + [2359] = 417, + [2360] = 418, [2361] = 2361, - [2362] = 412, + [2362] = 2362, [2363] = 2363, - [2364] = 2361, - [2365] = 2350, - [2366] = 2363, - [2367] = 92, - [2368] = 92, - [2369] = 100, - [2370] = 96, - [2371] = 464, - [2372] = 418, - [2373] = 424, - [2374] = 412, - [2375] = 406, - [2376] = 389, - [2377] = 93, - [2378] = 415, - [2379] = 417, - [2380] = 419, - [2381] = 415, - [2382] = 100, - [2383] = 92, - [2384] = 412, - [2385] = 104, - [2386] = 106, - [2387] = 107, - [2388] = 450, - [2389] = 357, - [2390] = 360, - [2391] = 351, - [2392] = 354, - [2393] = 348, - [2394] = 349, - [2395] = 424, - [2396] = 417, - [2397] = 419, - [2398] = 418, - [2399] = 93, - [2400] = 389, - [2401] = 343, - [2402] = 344, - [2403] = 507, - [2404] = 510, - [2405] = 464, - [2406] = 459, - [2407] = 96, + [2364] = 2364, + [2365] = 2362, + [2366] = 409, + [2367] = 2361, + [2368] = 2352, + [2369] = 2363, + [2370] = 2364, + [2371] = 409, + [2372] = 460, + [2373] = 100, + [2374] = 101, + [2375] = 399, + [2376] = 412, + [2377] = 424, + [2378] = 417, + [2379] = 418, + [2380] = 92, + [2381] = 425, + [2382] = 413, + [2383] = 93, + [2384] = 348, + [2385] = 101, + [2386] = 345, + [2387] = 453, + [2388] = 460, + [2389] = 353, + [2390] = 412, + [2391] = 424, + [2392] = 417, + [2393] = 92, + [2394] = 115, + [2395] = 356, + [2396] = 357, + [2397] = 418, + [2398] = 413, + [2399] = 399, + [2400] = 354, + [2401] = 510, + [2402] = 425, + [2403] = 518, + [2404] = 93, + [2405] = 345, + [2406] = 100, + [2407] = 459, [2408] = 344, - [2409] = 464, - [2410] = 406, - [2411] = 489, - [2412] = 2412, - [2413] = 2413, - [2414] = 422, - [2415] = 2415, - [2416] = 93, - [2417] = 481, - [2418] = 424, - [2419] = 96, - [2420] = 450, + [2409] = 113, + [2410] = 105, + [2411] = 352, + [2412] = 412, + [2413] = 418, + [2414] = 105, + [2415] = 459, + [2416] = 453, + [2417] = 423, + [2418] = 460, + [2419] = 93, + [2420] = 409, [2421] = 2421, - [2422] = 416, - [2423] = 107, - [2424] = 1484, - [2425] = 2425, - [2426] = 92, - [2427] = 415, - [2428] = 343, - [2429] = 100, - [2430] = 417, - [2431] = 419, - [2432] = 359, - [2433] = 104, - [2434] = 459, - [2435] = 106, - [2436] = 364, - [2437] = 96, - [2438] = 379, - [2439] = 506, - [2440] = 343, - [2441] = 2441, - [2442] = 508, - [2443] = 516, - [2444] = 389, - [2445] = 2445, - [2446] = 1508, + [2422] = 1483, + [2423] = 414, + [2424] = 492, + [2425] = 424, + [2426] = 349, + [2427] = 417, + [2428] = 92, + [2429] = 101, + [2430] = 344, + [2431] = 2431, + [2432] = 2432, + [2433] = 2433, + [2434] = 374, + [2435] = 2435, + [2436] = 100, + [2437] = 115, + [2438] = 113, + [2439] = 491, + [2440] = 344, + [2441] = 1505, + [2442] = 414, + [2443] = 2443, + [2444] = 92, + [2445] = 378, + [2446] = 413, [2447] = 93, - [2448] = 422, - [2449] = 464, - [2450] = 450, - [2451] = 100, - [2452] = 418, - [2453] = 499, - [2454] = 107, - [2455] = 515, - [2456] = 1498, - [2457] = 517, - [2458] = 104, - [2459] = 359, - [2460] = 364, - [2461] = 347, - [2462] = 106, - [2463] = 416, - [2464] = 489, - [2465] = 92, - [2466] = 528, - [2467] = 379, - [2468] = 690, - [2469] = 2469, - [2470] = 498, - [2471] = 344, - [2472] = 481, - [2473] = 412, + [2448] = 343, + [2449] = 517, + [2450] = 2450, + [2451] = 491, + [2452] = 502, + [2453] = 516, + [2454] = 113, + [2455] = 345, + [2456] = 105, + [2457] = 499, + [2458] = 509, + [2459] = 511, + [2460] = 453, + [2461] = 633, + [2462] = 100, + [2463] = 423, + [2464] = 399, + [2465] = 115, + [2466] = 460, + [2467] = 425, + [2468] = 492, + [2469] = 374, + [2470] = 349, + [2471] = 101, + [2472] = 378, + [2473] = 2473, [2474] = 459, - [2475] = 2475, - [2476] = 357, - [2477] = 107, - [2478] = 100, - [2479] = 104, - [2480] = 1834, - [2481] = 364, - [2482] = 354, - [2483] = 348, - [2484] = 349, - [2485] = 515, - [2486] = 459, - [2487] = 450, - [2488] = 416, - [2489] = 96, - [2490] = 690, - [2491] = 489, - [2492] = 516, - [2493] = 517, - [2494] = 344, - [2495] = 481, - [2496] = 351, - [2497] = 343, - [2498] = 1521, - [2499] = 450, - [2500] = 415, - [2501] = 528, - [2502] = 417, - [2503] = 360, - [2504] = 419, - [2505] = 106, - [2506] = 424, - [2507] = 459, - [2508] = 359, - [2509] = 350, - [2510] = 353, - [2511] = 367, - [2512] = 422, - [2513] = 360, - [2514] = 2514, - [2515] = 508, - [2516] = 2516, + [2475] = 1504, + [2476] = 634, + [2477] = 514, + [2478] = 633, + [2479] = 113, + [2480] = 349, + [2481] = 634, + [2482] = 423, + [2483] = 459, + [2484] = 105, + [2485] = 366, + [2486] = 368, + [2487] = 369, + [2488] = 492, + [2489] = 459, + [2490] = 453, + [2491] = 100, + [2492] = 353, + [2493] = 1525, + [2494] = 115, + [2495] = 414, + [2496] = 491, + [2497] = 424, + [2498] = 417, + [2499] = 345, + [2500] = 517, + [2501] = 418, + [2502] = 354, + [2503] = 352, + [2504] = 502, + [2505] = 412, + [2506] = 453, + [2507] = 2507, + [2508] = 516, + [2509] = 374, + [2510] = 344, + [2511] = 1863, + [2512] = 348, + [2513] = 356, + [2514] = 357, + [2515] = 101, + [2516] = 511, [2517] = 2517, - [2518] = 347, + [2518] = 356, [2519] = 2519, - [2520] = 2520, - [2521] = 489, + [2520] = 492, + [2521] = 378, [2522] = 344, - [2523] = 351, - [2524] = 515, - [2525] = 422, - [2526] = 481, - [2527] = 106, - [2528] = 2528, - [2529] = 517, - [2530] = 1834, - [2531] = 528, - [2532] = 2532, - [2533] = 2533, - [2534] = 489, - [2535] = 450, - [2536] = 481, - [2537] = 459, - [2538] = 450, - [2539] = 343, - [2540] = 690, - [2541] = 104, - [2542] = 2542, - [2543] = 2543, - [2544] = 359, + [2523] = 423, + [2524] = 2524, + [2525] = 502, + [2526] = 357, + [2527] = 2527, + [2528] = 499, + [2529] = 2529, + [2530] = 459, + [2531] = 115, + [2532] = 518, + [2533] = 509, + [2534] = 491, + [2535] = 453, + [2536] = 510, + [2537] = 354, + [2538] = 633, + [2539] = 517, + [2540] = 113, + [2541] = 345, + [2542] = 349, + [2543] = 352, + [2544] = 353, [2545] = 2545, - [2546] = 354, - [2547] = 730, - [2548] = 348, - [2549] = 349, - [2550] = 2550, - [2551] = 2517, - [2552] = 107, - [2553] = 499, - [2554] = 696, - [2555] = 724, - [2556] = 725, - [2557] = 727, - [2558] = 510, - [2559] = 364, - [2560] = 498, - [2561] = 506, - [2562] = 379, - [2563] = 507, - [2564] = 357, + [2546] = 414, + [2547] = 514, + [2548] = 491, + [2549] = 2524, + [2550] = 730, + [2551] = 2551, + [2552] = 2524, + [2553] = 492, + [2554] = 2554, + [2555] = 459, + [2556] = 2556, + [2557] = 453, + [2558] = 708, + [2559] = 715, + [2560] = 716, + [2561] = 718, + [2562] = 343, + [2563] = 1863, + [2564] = 2564, [2565] = 2565, - [2566] = 343, - [2567] = 416, - [2568] = 2517, - [2569] = 2569, - [2570] = 2517, - [2571] = 516, - [2572] = 459, - [2573] = 353, - [2574] = 528, + [2566] = 516, + [2567] = 2524, + [2568] = 374, + [2569] = 634, + [2570] = 348, + [2571] = 2571, + [2572] = 105, + [2573] = 2573, + [2574] = 344, [2575] = 2575, - [2576] = 2576, - [2577] = 499, - [2578] = 507, + [2576] = 708, + [2577] = 509, + [2578] = 378, [2579] = 344, - [2580] = 508, - [2581] = 510, - [2582] = 498, - [2583] = 506, - [2584] = 515, - [2585] = 516, - [2586] = 517, - [2587] = 508, - [2588] = 347, - [2589] = 498, - [2590] = 506, - [2591] = 379, - [2592] = 367, - [2593] = 350, - [2594] = 920, - [2595] = 927, - [2596] = 929, - [2597] = 930, - [2598] = 931, - [2599] = 933, - [2600] = 934, - [2601] = 935, - [2602] = 936, - [2603] = 937, - [2604] = 359, - [2605] = 364, - [2606] = 450, - [2607] = 357, - [2608] = 360, - [2609] = 351, + [2580] = 369, + [2581] = 366, + [2582] = 2529, + [2583] = 2575, + [2584] = 368, + [2585] = 2554, + [2586] = 887, + [2587] = 949, + [2588] = 952, + [2589] = 960, + [2590] = 961, + [2591] = 987, + [2592] = 956, + [2593] = 929, + [2594] = 931, + [2595] = 932, + [2596] = 374, + [2597] = 349, + [2598] = 453, + [2599] = 352, + [2600] = 353, + [2601] = 354, + [2602] = 348, + [2603] = 356, + [2604] = 357, + [2605] = 2605, + [2606] = 352, + [2607] = 459, + [2608] = 491, + [2609] = 353, [2610] = 354, [2611] = 348, - [2612] = 349, + [2612] = 356, [2613] = 357, - [2614] = 727, - [2615] = 489, - [2616] = 360, - [2617] = 351, - [2618] = 354, - [2619] = 348, - [2620] = 349, - [2621] = 481, - [2622] = 515, - [2623] = 516, - [2624] = 517, - [2625] = 489, - [2626] = 481, + [2614] = 492, + [2615] = 517, + [2616] = 502, + [2617] = 516, + [2618] = 491, + [2619] = 2619, + [2620] = 514, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, [2627] = 2627, - [2628] = 343, - [2629] = 2532, - [2630] = 2545, - [2631] = 2514, - [2632] = 2632, + [2628] = 2628, + [2629] = 2629, + [2630] = 2630, + [2631] = 2630, + [2632] = 633, [2633] = 2633, [2634] = 2634, [2635] = 2635, - [2636] = 2636, + [2636] = 634, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2640, - [2641] = 2641, - [2642] = 2642, - [2643] = 2643, - [2644] = 690, - [2645] = 730, - [2646] = 2646, - [2647] = 2647, - [2648] = 359, - [2649] = 364, - [2650] = 2650, - [2651] = 2627, - [2652] = 696, - [2653] = 724, - [2654] = 725, - [2655] = 459, - [2656] = 2656, - [2657] = 350, - [2658] = 927, - [2659] = 929, - [2660] = 383, - [2661] = 515, - [2662] = 930, - [2663] = 931, - [2664] = 933, - [2665] = 934, - [2666] = 516, - [2667] = 517, - [2668] = 935, - [2669] = 1045, - [2670] = 498, - [2671] = 459, - [2672] = 515, - [2673] = 936, - [2674] = 516, - [2675] = 517, - [2676] = 937, - [2677] = 2677, - [2678] = 2678, + [2640] = 499, + [2641] = 510, + [2642] = 345, + [2643] = 511, + [2644] = 518, + [2645] = 514, + [2646] = 509, + [2647] = 517, + [2648] = 502, + [2649] = 516, + [2650] = 730, + [2651] = 374, + [2652] = 349, + [2653] = 511, + [2654] = 343, + [2655] = 715, + [2656] = 716, + [2657] = 718, + [2658] = 492, + [2659] = 502, + [2660] = 366, + [2661] = 516, + [2662] = 1097, + [2663] = 368, + [2664] = 491, + [2665] = 459, + [2666] = 2666, + [2667] = 378, + [2668] = 343, + [2669] = 492, + [2670] = 2619, + [2671] = 931, + [2672] = 932, + [2673] = 949, + [2674] = 2621, + [2675] = 2675, + [2676] = 2676, + [2677] = 2639, + [2678] = 887, [2679] = 2679, - [2680] = 359, - [2681] = 487, - [2682] = 2634, - [2683] = 2683, - [2684] = 2635, - [2685] = 493, - [2686] = 2636, - [2687] = 2646, - [2688] = 2647, - [2689] = 2650, - [2690] = 506, - [2691] = 920, - [2692] = 1954, - [2693] = 2693, - [2694] = 2575, - [2695] = 2576, - [2696] = 508, - [2697] = 509, - [2698] = 690, - [2699] = 528, - [2700] = 450, - [2701] = 2632, - [2702] = 2632, - [2703] = 511, - [2704] = 498, - [2705] = 506, - [2706] = 489, - [2707] = 2707, - [2708] = 499, + [2680] = 2622, + [2681] = 499, + [2682] = 510, + [2683] = 511, + [2684] = 518, + [2685] = 1967, + [2686] = 514, + [2687] = 374, + [2688] = 952, + [2689] = 509, + [2690] = 349, + [2691] = 383, + [2692] = 960, + [2693] = 961, + [2694] = 517, + [2695] = 2695, + [2696] = 987, + [2697] = 956, + [2698] = 482, + [2699] = 2639, + [2700] = 2633, + [2701] = 493, + [2702] = 502, + [2703] = 2637, + [2704] = 511, + [2705] = 512, + [2706] = 453, + [2707] = 520, + [2708] = 2708, [2709] = 2709, - [2710] = 2710, - [2711] = 509, - [2712] = 379, - [2713] = 347, - [2714] = 730, - [2715] = 696, - [2716] = 724, - [2717] = 725, - [2718] = 727, - [2719] = 481, - [2720] = 507, - [2721] = 511, - [2722] = 353, - [2723] = 508, - [2724] = 367, - [2725] = 510, - [2726] = 364, - [2727] = 708, - [2728] = 2728, - [2729] = 1045, + [2710] = 516, + [2711] = 514, + [2712] = 730, + [2713] = 708, + [2714] = 715, + [2715] = 716, + [2716] = 718, + [2717] = 2638, + [2718] = 2634, + [2719] = 509, + [2720] = 2635, + [2721] = 512, + [2722] = 633, + [2723] = 634, + [2724] = 2724, + [2725] = 517, + [2726] = 520, + [2727] = 369, + [2728] = 929, + [2729] = 2729, [2730] = 2730, - [2731] = 730, - [2732] = 2732, - [2733] = 2733, - [2734] = 487, - [2735] = 696, + [2731] = 368, + [2732] = 502, + [2733] = 369, + [2734] = 2734, + [2735] = 516, [2736] = 2736, - [2737] = 347, + [2737] = 2737, [2738] = 2738, - [2739] = 493, - [2740] = 509, - [2741] = 367, - [2742] = 379, - [2743] = 515, - [2744] = 724, - [2745] = 350, - [2746] = 511, - [2747] = 516, - [2748] = 353, - [2749] = 517, - [2750] = 725, - [2751] = 727, + [2739] = 2739, + [2740] = 2740, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2746, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, [2752] = 2752, [2753] = 2753, [2754] = 2754, @@ -7828,34 +7835,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2782, + [2782] = 453, [2783] = 2783, [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, - [2788] = 927, - [2789] = 489, - [2790] = 929, + [2788] = 2788, + [2789] = 2789, + [2790] = 2790, [2791] = 2791, - [2792] = 705, + [2792] = 2792, [2793] = 2793, - [2794] = 713, + [2794] = 2794, [2795] = 2795, [2796] = 2796, [2797] = 2797, - [2798] = 450, - [2799] = 2799, + [2798] = 2798, + [2799] = 459, [2800] = 2800, [2801] = 459, - [2802] = 2802, + [2802] = 1967, [2803] = 2803, [2804] = 2804, [2805] = 2805, [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 459, + [2809] = 2809, [2810] = 2810, [2811] = 2811, [2812] = 2812, @@ -7866,43 +7873,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2817] = 2817, [2818] = 2818, [2819] = 2819, - [2820] = 2820, + [2820] = 2798, [2821] = 2821, - [2822] = 2822, - [2823] = 2823, - [2824] = 2824, - [2825] = 930, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, + [2822] = 2708, + [2823] = 730, + [2824] = 2709, + [2825] = 708, + [2826] = 715, + [2827] = 716, + [2828] = 718, [2829] = 2829, - [2830] = 931, + [2830] = 2830, [2831] = 2831, - [2832] = 2632, - [2833] = 714, - [2834] = 481, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, [2835] = 2835, - [2836] = 2836, - [2837] = 499, - [2838] = 507, - [2839] = 508, - [2840] = 510, - [2841] = 498, - [2842] = 506, - [2843] = 933, + [2836] = 1097, + [2837] = 2837, + [2838] = 2639, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 743, + [2843] = 698, [2844] = 2844, - [2845] = 2845, - [2846] = 2846, - [2847] = 934, + [2845] = 723, + [2846] = 729, + [2847] = 2639, [2848] = 2848, [2849] = 2849, [2850] = 2850, [2851] = 2851, [2852] = 2852, - [2853] = 920, + [2853] = 2853, [2854] = 2854, [2855] = 2855, - [2856] = 935, + [2856] = 2856, [2857] = 2857, [2858] = 2858, [2859] = 2859, @@ -7918,715 +7925,715 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2869] = 2869, [2870] = 2870, [2871] = 2871, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 2875, - [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 2632, + [2872] = 499, + [2873] = 510, + [2874] = 511, + [2875] = 518, + [2876] = 514, + [2877] = 509, + [2878] = 482, + [2879] = 343, + [2880] = 2880, [2881] = 2881, - [2882] = 2882, + [2882] = 493, [2883] = 2883, - [2884] = 2884, - [2885] = 2885, + [2884] = 512, + [2885] = 378, [2886] = 2886, [2887] = 2887, - [2888] = 1954, + [2888] = 2888, [2889] = 2889, - [2890] = 2890, + [2890] = 520, [2891] = 2891, [2892] = 2892, [2893] = 2893, - [2894] = 2821, - [2895] = 2821, + [2894] = 2894, + [2895] = 2895, [2896] = 2896, [2897] = 2897, [2898] = 2898, - [2899] = 2899, - [2900] = 2900, - [2901] = 2901, - [2902] = 2902, - [2903] = 1998, - [2904] = 2904, - [2905] = 2905, - [2906] = 936, - [2907] = 937, - [2908] = 383, - [2909] = 2909, - [2910] = 2709, - [2911] = 2710, - [2912] = 2912, - [2913] = 2913, - [2914] = 2914, - [2915] = 2915, - [2916] = 2916, + [2899] = 949, + [2900] = 491, + [2901] = 952, + [2902] = 960, + [2903] = 961, + [2904] = 492, + [2905] = 2798, + [2906] = 987, + [2907] = 956, + [2908] = 2908, + [2909] = 887, + [2910] = 929, + [2911] = 2009, + [2912] = 366, + [2913] = 931, + [2914] = 932, + [2915] = 383, + [2916] = 517, [2917] = 2917, [2918] = 2918, - [2919] = 2867, - [2920] = 2865, - [2921] = 2866, - [2922] = 930, - [2923] = 2868, - [2924] = 2869, - [2925] = 2899, - [2926] = 2926, - [2927] = 727, - [2928] = 2928, - [2929] = 2528, - [2930] = 2846, - [2931] = 516, - [2932] = 2916, - [2933] = 2917, - [2934] = 2934, - [2935] = 2516, - [2936] = 978, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, + [2922] = 2790, + [2923] = 2527, + [2924] = 2918, + [2925] = 2009, + [2926] = 952, + [2927] = 2927, + [2928] = 2730, + [2929] = 931, + [2930] = 2545, + [2931] = 887, + [2932] = 2932, + [2933] = 2933, + [2934] = 932, + [2935] = 2791, + [2936] = 743, [2937] = 2937, - [2938] = 2569, - [2939] = 2844, - [2940] = 2542, - [2941] = 1045, - [2942] = 708, - [2943] = 2819, + [2938] = 2938, + [2939] = 2939, + [2940] = 366, + [2941] = 2941, + [2942] = 723, + [2943] = 729, [2944] = 2944, - [2945] = 367, - [2946] = 953, - [2947] = 517, - [2948] = 487, - [2949] = 742, - [2950] = 2950, - [2951] = 2951, - [2952] = 697, - [2953] = 2953, + [2945] = 2571, + [2946] = 2919, + [2947] = 2785, + [2948] = 2948, + [2949] = 2800, + [2950] = 2781, + [2951] = 2776, + [2952] = 2779, + [2953] = 698, [2954] = 2954, - [2955] = 515, - [2956] = 737, - [2957] = 2550, - [2958] = 2958, - [2959] = 459, - [2960] = 489, - [2961] = 2520, - [2962] = 481, - [2963] = 2963, - [2964] = 2964, - [2965] = 2533, - [2966] = 2519, - [2967] = 2550, - [2968] = 2528, - [2969] = 2969, - [2970] = 350, - [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2974, - [2975] = 353, - [2976] = 2915, - [2977] = 2977, - [2978] = 2542, - [2979] = 713, - [2980] = 714, - [2981] = 742, - [2982] = 2831, - [2983] = 730, - [2984] = 2984, - [2985] = 2985, - [2986] = 2519, - [2987] = 696, - [2988] = 2969, - [2989] = 2989, + [2955] = 2927, + [2956] = 960, + [2957] = 2786, + [2958] = 2734, + [2959] = 961, + [2960] = 2795, + [2961] = 2792, + [2962] = 2517, + [2963] = 2551, + [2964] = 2793, + [2965] = 2965, + [2966] = 2966, + [2967] = 2787, + [2968] = 987, + [2969] = 368, + [2970] = 2970, + [2971] = 956, + [2972] = 369, + [2973] = 2920, + [2974] = 2556, + [2975] = 746, + [2976] = 730, + [2977] = 708, + [2978] = 409, + [2979] = 2796, + [2980] = 2797, + [2981] = 2527, + [2982] = 2982, + [2983] = 715, + [2984] = 716, + [2985] = 718, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2545, [2990] = 2990, - [2991] = 2864, - [2992] = 2793, - [2993] = 2990, - [2994] = 383, - [2995] = 406, - [2996] = 2996, + [2991] = 2932, + [2992] = 2992, + [2993] = 2775, + [2994] = 2954, + [2995] = 2939, + [2996] = 746, [2997] = 2997, - [2998] = 954, - [2999] = 935, - [3000] = 927, - [3001] = 2926, - [3002] = 933, - [3003] = 3003, - [3004] = 2791, - [3005] = 934, - [3006] = 2849, - [3007] = 1998, - [3008] = 2989, - [3009] = 705, - [3010] = 2851, - [3011] = 929, - [3012] = 2915, - [3013] = 931, - [3014] = 936, - [3015] = 937, - [3016] = 2916, - [3017] = 2917, - [3018] = 2793, - [3019] = 3019, - [3020] = 724, - [3021] = 2852, - [3022] = 725, - [3023] = 3023, - [3024] = 2854, - [3025] = 2855, - [3026] = 974, - [3027] = 2516, - [3028] = 493, - [3029] = 2857, - [3030] = 2569, - [3031] = 2996, - [3032] = 2826, - [3033] = 2918, - [3034] = 2821, - [3035] = 2828, - [3036] = 2858, + [2998] = 383, + [2999] = 733, + [3000] = 2783, + [3001] = 3001, + [3002] = 736, + [3003] = 2565, + [3004] = 2908, + [3005] = 959, + [3006] = 939, + [3007] = 3007, + [3008] = 1097, + [3009] = 2517, + [3010] = 3010, + [3011] = 2551, + [3012] = 989, + [3013] = 482, + [3014] = 2519, + [3015] = 517, + [3016] = 2880, + [3017] = 459, + [3018] = 2769, + [3019] = 944, + [3020] = 493, + [3021] = 491, + [3022] = 502, + [3023] = 2933, + [3024] = 2794, + [3025] = 516, + [3026] = 2773, + [3027] = 2917, + [3028] = 929, + [3029] = 3029, + [3030] = 949, + [3031] = 2918, + [3032] = 2730, + [3033] = 2919, + [3034] = 2917, + [3035] = 3035, + [3036] = 2788, [3037] = 3037, [3038] = 3038, - [3039] = 2859, - [3040] = 2835, - [3041] = 920, - [3042] = 2860, + [3039] = 2798, + [3040] = 2556, + [3041] = 2784, + [3042] = 3042, [3043] = 3043, - [3044] = 2861, - [3045] = 2862, - [3046] = 2863, - [3047] = 3019, - [3048] = 2915, - [3049] = 3049, - [3050] = 406, + [3044] = 3044, + [3045] = 492, + [3046] = 2789, + [3047] = 2778, + [3048] = 2780, + [3049] = 2986, + [3050] = 2571, [3051] = 3051, [3052] = 3052, - [3053] = 760, - [3054] = 764, - [3055] = 765, - [3056] = 2542, - [3057] = 768, - [3058] = 2219, - [3059] = 2926, - [3060] = 737, - [3061] = 920, - [3062] = 927, - [3063] = 2639, - [3064] = 929, - [3065] = 2640, - [3066] = 2641, - [3067] = 930, - [3068] = 782, - [3069] = 931, - [3070] = 2642, - [3071] = 933, - [3072] = 934, - [3073] = 788, - [3074] = 790, - [3075] = 406, - [3076] = 935, - [3077] = 2693, - [3078] = 2637, - [3079] = 936, - [3080] = 937, - [3081] = 2916, - [3082] = 785, - [3083] = 786, - [3084] = 801, - [3085] = 802, - [3086] = 803, - [3087] = 804, - [3088] = 805, - [3089] = 3089, - [3090] = 3090, + [3053] = 3053, + [3054] = 3054, + [3055] = 3055, + [3056] = 2565, + [3057] = 2519, + [3058] = 2196, + [3059] = 2197, + [3060] = 2199, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 2527, + [3065] = 2986, + [3066] = 3066, + [3067] = 3067, + [3068] = 3068, + [3069] = 2868, + [3070] = 3070, + [3071] = 2730, + [3072] = 2545, + [3073] = 3073, + [3074] = 459, + [3075] = 2919, + [3076] = 409, + [3077] = 3077, + [3078] = 3078, + [3079] = 3079, + [3080] = 2551, + [3081] = 2623, + [3082] = 3082, + [3083] = 3083, + [3084] = 2624, + [3085] = 2571, + [3086] = 383, + [3087] = 517, + [3088] = 399, + [3089] = 2939, + [3090] = 960, [3091] = 3091, - [3092] = 2996, - [3093] = 3093, - [3094] = 3094, - [3095] = 740, - [3096] = 3003, - [3097] = 945, - [3098] = 744, - [3099] = 3099, - [3100] = 3100, + [3092] = 887, + [3093] = 889, + [3094] = 2939, + [3095] = 502, + [3096] = 516, + [3097] = 3097, + [3098] = 3098, + [3099] = 949, + [3100] = 2556, [3101] = 3101, - [3102] = 2638, - [3103] = 762, - [3104] = 949, - [3105] = 418, - [3106] = 954, - [3107] = 795, - [3108] = 903, - [3109] = 2550, - [3110] = 917, - [3111] = 2917, - [3112] = 772, - [3113] = 3113, - [3114] = 775, - [3115] = 776, - [3116] = 777, - [3117] = 978, - [3118] = 900, - [3119] = 412, - [3120] = 783, - [3121] = 784, - [3122] = 3122, - [3123] = 515, - [3124] = 516, - [3125] = 517, - [3126] = 740, - [3127] = 2643, - [3128] = 945, - [3129] = 744, - [3130] = 3130, - [3131] = 3131, - [3132] = 3132, - [3133] = 3133, - [3134] = 3134, - [3135] = 809, - [3136] = 3136, - [3137] = 3137, - [3138] = 3138, - [3139] = 810, - [3140] = 3140, - [3141] = 3141, - [3142] = 762, - [3143] = 949, - [3144] = 814, - [3145] = 815, - [3146] = 406, - [3147] = 459, + [3102] = 3102, + [3103] = 3103, + [3104] = 961, + [3105] = 2948, + [3106] = 3097, + [3107] = 989, + [3108] = 2988, + [3109] = 920, + [3110] = 922, + [3111] = 923, + [3112] = 2777, + [3113] = 925, + [3114] = 2990, + [3115] = 2625, + [3116] = 3116, + [3117] = 3037, + [3118] = 2626, + [3119] = 2627, + [3120] = 2628, + [3121] = 3121, + [3122] = 752, + [3123] = 753, + [3124] = 754, + [3125] = 3125, + [3126] = 2629, + [3127] = 2517, + [3128] = 2551, + [3129] = 3129, + [3130] = 760, + [3131] = 761, + [3132] = 762, + [3133] = 763, + [3134] = 764, + [3135] = 765, + [3136] = 747, + [3137] = 697, + [3138] = 969, + [3139] = 726, + [3140] = 2986, + [3141] = 3043, + [3142] = 2917, + [3143] = 3143, + [3144] = 888, + [3145] = 984, + [3146] = 987, + [3147] = 2917, [3148] = 3148, - [3149] = 3149, + [3149] = 413, [3150] = 3150, [3151] = 3151, - [3152] = 3152, - [3153] = 953, - [3154] = 3154, - [3155] = 3155, + [3152] = 956, + [3153] = 959, + [3154] = 916, + [3155] = 917, [3156] = 3156, [3157] = 3157, - [3158] = 2915, - [3159] = 2520, + [3158] = 918, + [3159] = 3159, [3160] = 3160, - [3161] = 795, - [3162] = 903, - [3163] = 2533, - [3164] = 2528, - [3165] = 745, - [3166] = 3166, - [3167] = 901, - [3168] = 974, - [3169] = 2916, - [3170] = 772, - [3171] = 1045, - [3172] = 3160, - [3173] = 775, - [3174] = 776, - [3175] = 777, - [3176] = 2179, - [3177] = 2180, - [3178] = 900, - [3179] = 3179, - [3180] = 783, - [3181] = 784, - [3182] = 3182, - [3183] = 3183, - [3184] = 2215, - [3185] = 2519, - [3186] = 3186, - [3187] = 3187, - [3188] = 2793, - [3189] = 3189, - [3190] = 3190, - [3191] = 2542, - [3192] = 2528, + [3161] = 748, + [3162] = 3162, + [3163] = 749, + [3164] = 750, + [3165] = 751, + [3166] = 939, + [3167] = 3167, + [3168] = 3168, + [3169] = 3169, + [3170] = 755, + [3171] = 425, + [3172] = 758, + [3173] = 759, + [3174] = 697, + [3175] = 3175, + [3176] = 969, + [3177] = 726, + [3178] = 2556, + [3179] = 766, + [3180] = 767, + [3181] = 2918, + [3182] = 2605, + [3183] = 888, + [3184] = 2730, + [3185] = 984, + [3186] = 2571, + [3187] = 768, + [3188] = 769, + [3189] = 3083, + [3190] = 409, + [3191] = 989, + [3192] = 3192, [3193] = 3193, - [3194] = 3193, - [3195] = 383, - [3196] = 3196, - [3197] = 3197, + [3194] = 2919, + [3195] = 916, + [3196] = 917, + [3197] = 409, [3198] = 3198, - [3199] = 3199, + [3199] = 918, [3200] = 3200, [3201] = 3201, - [3202] = 389, - [3203] = 3203, - [3204] = 3204, - [3205] = 2516, - [3206] = 2973, - [3207] = 3207, - [3208] = 2917, - [3209] = 2569, - [3210] = 3210, - [3211] = 3211, + [3202] = 785, + [3203] = 786, + [3204] = 944, + [3205] = 748, + [3206] = 749, + [3207] = 750, + [3208] = 751, + [3209] = 755, + [3210] = 758, + [3211] = 759, [3212] = 3212, [3213] = 3213, - [3214] = 809, - [3215] = 810, - [3216] = 2793, - [3217] = 742, - [3218] = 3218, + [3214] = 3214, + [3215] = 2545, + [3216] = 3038, + [3217] = 3217, + [3218] = 746, [3219] = 3219, [3220] = 3220, - [3221] = 3221, + [3221] = 2918, [3222] = 3222, [3223] = 3223, [3224] = 3224, [3225] = 3225, - [3226] = 814, - [3227] = 815, + [3226] = 733, + [3227] = 3227, [3228] = 3228, - [3229] = 3037, - [3230] = 3230, - [3231] = 3231, + [3229] = 3229, + [3230] = 766, + [3231] = 767, [3232] = 3232, - [3233] = 697, - [3234] = 3234, - [3235] = 954, - [3236] = 3236, - [3237] = 3237, + [3233] = 3233, + [3234] = 929, + [3235] = 501, + [3236] = 944, + [3237] = 2679, [3238] = 3238, - [3239] = 2516, - [3240] = 2996, - [3241] = 2569, - [3242] = 3043, - [3243] = 745, - [3244] = 901, - [3245] = 2820, - [3246] = 978, - [3247] = 2822, - [3248] = 2519, - [3249] = 774, - [3250] = 2926, - [3251] = 953, - [3252] = 974, - [3253] = 2934, - [3254] = 3254, - [3255] = 503, - [3256] = 3038, - [3257] = 2633, - [3258] = 2550, - [3259] = 917, - [3260] = 777, - [3261] = 3204, - [3262] = 412, - [3263] = 765, - [3264] = 3264, - [3265] = 418, - [3266] = 974, - [3267] = 389, - [3268] = 768, - [3269] = 745, + [3239] = 2527, + [3240] = 3240, + [3241] = 3241, + [3242] = 768, + [3243] = 769, + [3244] = 3244, + [3245] = 3245, + [3246] = 931, + [3247] = 2194, + [3248] = 959, + [3249] = 932, + [3250] = 3250, + [3251] = 2517, + [3252] = 785, + [3253] = 786, + [3254] = 736, + [3255] = 3255, + [3256] = 1097, + [3257] = 939, + [3258] = 952, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 3262, + [3263] = 3162, + [3264] = 3167, + [3265] = 3168, + [3266] = 760, + [3267] = 3267, + [3268] = 761, + [3269] = 3269, [3270] = 3270, - [3271] = 3271, - [3272] = 418, - [3273] = 901, - [3274] = 2633, - [3275] = 3275, + [3271] = 762, + [3272] = 3272, + [3273] = 3102, + [3274] = 3068, + [3275] = 763, [3276] = 3276, - [3277] = 3277, - [3278] = 3278, - [3279] = 3279, - [3280] = 3280, + [3277] = 764, + [3278] = 765, + [3279] = 747, + [3280] = 3156, [3281] = 3281, - [3282] = 3282, - [3283] = 3283, - [3284] = 412, - [3285] = 2693, - [3286] = 3286, - [3287] = 412, - [3288] = 3288, - [3289] = 3228, - [3290] = 772, - [3291] = 3291, - [3292] = 2984, - [3293] = 954, - [3294] = 775, - [3295] = 3219, - [3296] = 776, - [3297] = 3297, - [3298] = 3298, - [3299] = 406, - [3300] = 2179, - [3301] = 978, - [3302] = 954, - [3303] = 2985, - [3304] = 795, - [3305] = 3230, - [3306] = 389, - [3307] = 782, + [3282] = 785, + [3283] = 786, + [3284] = 2623, + [3285] = 2624, + [3286] = 925, + [3287] = 748, + [3288] = 3223, + [3289] = 399, + [3290] = 3290, + [3291] = 3001, + [3292] = 413, + [3293] = 3293, + [3294] = 2625, + [3295] = 2626, + [3296] = 944, + [3297] = 2627, + [3298] = 2628, + [3299] = 749, + [3300] = 413, + [3301] = 3068, + [3302] = 2629, + [3303] = 3303, + [3304] = 3169, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, [3308] = 3308, - [3309] = 3222, - [3310] = 788, - [3311] = 3282, - [3312] = 3283, - [3313] = 790, - [3314] = 903, - [3315] = 3275, - [3316] = 424, - [3317] = 3317, - [3318] = 415, - [3319] = 417, - [3320] = 419, - [3321] = 900, - [3322] = 2215, - [3323] = 3223, - [3324] = 3324, - [3325] = 3236, - [3326] = 3326, - [3327] = 3327, - [3328] = 783, - [3329] = 784, - [3330] = 917, - [3331] = 3331, - [3332] = 3332, - [3333] = 3333, - [3334] = 3113, - [3335] = 3212, - [3336] = 3225, - [3337] = 785, - [3338] = 3338, + [3309] = 3309, + [3310] = 3310, + [3311] = 750, + [3312] = 751, + [3313] = 3192, + [3314] = 3314, + [3315] = 413, + [3316] = 425, + [3317] = 766, + [3318] = 767, + [3319] = 3319, + [3320] = 939, + [3321] = 3010, + [3322] = 3281, + [3323] = 3193, + [3324] = 2605, + [3325] = 3325, + [3326] = 409, + [3327] = 752, + [3328] = 697, + [3329] = 3329, + [3330] = 753, + [3331] = 959, + [3332] = 3116, + [3333] = 969, + [3334] = 3334, + [3335] = 754, + [3336] = 920, + [3337] = 412, + [3338] = 918, [3339] = 3339, - [3340] = 978, - [3341] = 801, - [3342] = 802, - [3343] = 803, - [3344] = 804, - [3345] = 805, - [3346] = 2637, - [3347] = 2638, - [3348] = 740, - [3349] = 2639, - [3350] = 2640, - [3351] = 2641, - [3352] = 3276, - [3353] = 3207, - [3354] = 2642, - [3355] = 3355, - [3356] = 945, - [3357] = 3357, - [3358] = 3358, - [3359] = 3359, - [3360] = 3360, - [3361] = 3140, - [3362] = 3141, - [3363] = 3363, - [3364] = 2643, - [3365] = 3365, - [3366] = 809, - [3367] = 810, - [3368] = 744, - [3369] = 760, - [3370] = 3370, - [3371] = 2180, - [3372] = 3298, - [3373] = 953, - [3374] = 3207, - [3375] = 418, - [3376] = 762, - [3377] = 764, - [3378] = 949, - [3379] = 974, - [3380] = 3297, - [3381] = 3298, - [3382] = 2219, - [3383] = 3210, - [3384] = 3211, - [3385] = 814, - [3386] = 406, - [3387] = 3297, - [3388] = 815, - [3389] = 3224, - [3390] = 3390, - [3391] = 3254, - [3392] = 3213, - [3393] = 3218, - [3394] = 3220, - [3395] = 3179, - [3396] = 3182, - [3397] = 3183, - [3398] = 3186, - [3399] = 3089, - [3400] = 3090, - [3401] = 3091, - [3402] = 3131, - [3403] = 953, - [3404] = 3196, - [3405] = 3197, - [3406] = 774, - [3407] = 3198, - [3408] = 3199, - [3409] = 3200, - [3410] = 530, - [3411] = 3201, - [3412] = 3203, - [3413] = 389, + [3340] = 3340, + [3341] = 726, + [3342] = 939, + [3343] = 3343, + [3344] = 3344, + [3345] = 3345, + [3346] = 989, + [3347] = 3244, + [3348] = 3339, + [3349] = 755, + [3350] = 3345, + [3351] = 3281, + [3352] = 425, + [3353] = 2679, + [3354] = 3354, + [3355] = 888, + [3356] = 399, + [3357] = 3240, + [3358] = 984, + [3359] = 922, + [3360] = 3250, + [3361] = 3340, + [3362] = 889, + [3363] = 3061, + [3364] = 768, + [3365] = 649, + [3366] = 769, + [3367] = 923, + [3368] = 399, + [3369] = 3078, + [3370] = 409, + [3371] = 3371, + [3372] = 758, + [3373] = 759, + [3374] = 3272, + [3375] = 424, + [3376] = 3091, + [3377] = 3066, + [3378] = 3067, + [3379] = 3070, + [3380] = 3220, + [3381] = 3225, + [3382] = 3229, + [3383] = 3238, + [3384] = 3224, + [3385] = 3228, + [3386] = 3233, + [3387] = 3143, + [3388] = 3259, + [3389] = 3310, + [3390] = 417, + [3391] = 989, + [3392] = 418, + [3393] = 425, + [3394] = 3232, + [3395] = 2196, + [3396] = 2197, + [3397] = 2199, + [3398] = 3079, + [3399] = 3399, + [3400] = 3400, + [3401] = 3401, + [3402] = 3345, + [3403] = 944, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, + [3407] = 3260, + [3408] = 3222, + [3409] = 3262, + [3410] = 3082, + [3411] = 3411, + [3412] = 3412, + [3413] = 959, [3414] = 3414, - [3415] = 786, - [3416] = 3416, - [3417] = 3288, - [3418] = 3418, + [3415] = 3415, + [3416] = 916, + [3417] = 917, + [3418] = 2194, [3419] = 3419, [3420] = 3420, - [3421] = 3421, + [3421] = 413, [3422] = 3422, - [3423] = 785, - [3424] = 786, - [3425] = 3425, - [3426] = 3426, - [3427] = 801, + [3423] = 3423, + [3424] = 3424, + [3425] = 3406, + [3426] = 3401, + [3427] = 3404, [3428] = 3428, - [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 802, - [3433] = 3433, - [3434] = 803, - [3435] = 804, - [3436] = 3279, - [3437] = 805, - [3438] = 2516, - [3439] = 3439, - [3440] = 2569, - [3441] = 92, - [3442] = 343, - [3443] = 3443, - [3444] = 424, - [3445] = 3445, - [3446] = 344, - [3447] = 2519, - [3448] = 3448, - [3449] = 93, + [3429] = 424, + [3430] = 417, + [3431] = 418, + [3432] = 425, + [3433] = 3001, + [3434] = 3010, + [3435] = 3303, + [3436] = 3436, + [3437] = 3269, + [3438] = 3308, + [3439] = 92, + [3440] = 3334, + [3441] = 3290, + [3442] = 3319, + [3443] = 3343, + [3444] = 425, + [3445] = 92, + [3446] = 3267, + [3447] = 93, + [3448] = 501, + [3449] = 3449, [3450] = 3450, - [3451] = 3207, - [3452] = 774, - [3453] = 3355, - [3454] = 3454, - [3455] = 3455, - [3456] = 418, - [3457] = 3457, - [3458] = 406, + [3451] = 412, + [3452] = 424, + [3453] = 417, + [3454] = 418, + [3455] = 93, + [3456] = 3456, + [3457] = 3411, + [3458] = 3412, [3459] = 3459, [3460] = 3460, - [3461] = 3461, + [3461] = 413, [3462] = 3462, [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 424, - [3467] = 3467, + [3464] = 3405, + [3465] = 3414, + [3466] = 3466, + [3467] = 3415, [3468] = 3468, - [3469] = 3222, - [3470] = 3280, - [3471] = 3230, + [3469] = 3469, + [3470] = 3470, + [3471] = 3471, [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 424, - [3477] = 415, - [3478] = 417, - [3479] = 419, - [3480] = 3357, - [3481] = 3358, - [3482] = 415, - [3483] = 417, - [3484] = 419, + [3473] = 344, + [3474] = 402, + [3475] = 889, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, + [3480] = 412, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, [3485] = 3485, - [3486] = 3428, - [3487] = 2550, - [3488] = 3488, - [3489] = 3489, + [3486] = 920, + [3487] = 922, + [3488] = 923, + [3489] = 925, [3490] = 3490, - [3491] = 3491, - [3492] = 3359, - [3493] = 2528, - [3494] = 3494, - [3495] = 3236, - [3496] = 3496, - [3497] = 3324, - [3498] = 3291, - [3499] = 3360, - [3500] = 415, - [3501] = 417, - [3502] = 3281, - [3503] = 2542, - [3504] = 3504, - [3505] = 419, - [3506] = 2984, - [3507] = 2985, - [3508] = 3327, + [3491] = 3068, + [3492] = 3492, + [3493] = 752, + [3494] = 753, + [3495] = 754, + [3496] = 424, + [3497] = 417, + [3498] = 418, + [3499] = 3499, + [3500] = 760, + [3501] = 761, + [3502] = 762, + [3503] = 763, + [3504] = 764, + [3505] = 765, + [3506] = 747, + [3507] = 92, + [3508] = 3508, [3509] = 3509, - [3510] = 93, + [3510] = 3510, [3511] = 3511, [3512] = 3512, [3513] = 3513, - [3514] = 3514, - [3515] = 3515, - [3516] = 3370, + [3514] = 92, + [3515] = 93, + [3516] = 3516, [3517] = 3517, - [3518] = 3518, + [3518] = 93, [3519] = 3519, [3520] = 3520, [3521] = 3521, [3522] = 3522, - [3523] = 412, + [3523] = 3523, [3524] = 3524, [3525] = 3525, - [3526] = 760, - [3527] = 92, + [3526] = 3526, + [3527] = 3527, [3528] = 3528, - [3529] = 3529, + [3529] = 2527, [3530] = 3530, - [3531] = 764, - [3532] = 765, + [3531] = 3531, + [3532] = 2545, [3533] = 3533, - [3534] = 3534, + [3534] = 3156, [3535] = 3535, - [3536] = 768, - [3537] = 3278, + [3536] = 3536, + [3537] = 3537, [3538] = 3538, [3539] = 3539, [3540] = 3540, - [3541] = 3541, - [3542] = 782, - [3543] = 788, - [3544] = 3308, - [3545] = 790, - [3546] = 3546, - [3547] = 92, - [3548] = 3390, - [3549] = 3254, - [3550] = 3213, - [3551] = 3218, - [3552] = 3220, - [3553] = 3179, - [3554] = 3182, - [3555] = 3183, - [3556] = 3186, - [3557] = 3089, - [3558] = 3090, - [3559] = 3091, - [3560] = 3131, - [3561] = 393, - [3562] = 93, - [3563] = 3563, - [3564] = 3564, - [3565] = 93, - [3566] = 3566, - [3567] = 3567, - [3568] = 3568, - [3569] = 3331, - [3570] = 3332, - [3571] = 3571, + [3541] = 2571, + [3542] = 3542, + [3543] = 3371, + [3544] = 3544, + [3545] = 3545, + [3546] = 409, + [3547] = 3232, + [3548] = 3244, + [3549] = 3549, + [3550] = 3550, + [3551] = 3551, + [3552] = 2517, + [3553] = 2551, + [3554] = 3554, + [3555] = 3329, + [3556] = 3091, + [3557] = 3061, + [3558] = 3066, + [3559] = 3067, + [3560] = 3070, + [3561] = 3220, + [3562] = 3225, + [3563] = 3229, + [3564] = 3238, + [3565] = 3224, + [3566] = 3228, + [3567] = 3233, + [3568] = 3143, + [3569] = 3569, + [3570] = 3570, + [3571] = 2556, [3572] = 3572, - [3573] = 418, + [3573] = 3573, [3574] = 3574, [3575] = 3575, - [3576] = 3333, - [3577] = 503, - [3578] = 412, + [3576] = 3428, + [3577] = 3577, + [3578] = 3578, [3579] = 3579, - [3580] = 3228, + [3580] = 3580, [3581] = 3581, [3582] = 3582, [3583] = 3583, @@ -8636,422 +8643,422 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3587] = 3587, [3588] = 3588, [3589] = 3589, - [3590] = 3590, - [3591] = 3297, + [3590] = 412, + [3591] = 3345, [3592] = 3592, [3593] = 3593, [3594] = 3594, - [3595] = 3298, + [3595] = 3281, [3596] = 3596, - [3597] = 92, + [3597] = 3597, [3598] = 3598, [3599] = 3599, [3600] = 3600, [3601] = 3601, [3602] = 3602, [3603] = 3603, - [3604] = 3604, - [3605] = 3605, + [3604] = 3307, + [3605] = 345, [3606] = 3606, - [3607] = 96, - [3608] = 422, + [3607] = 3607, + [3608] = 3608, [3609] = 3609, - [3610] = 412, - [3611] = 3611, - [3612] = 357, - [3613] = 359, + [3610] = 3610, + [3611] = 460, + [3612] = 100, + [3613] = 3613, [3614] = 3614, - [3615] = 364, - [3616] = 92, - [3617] = 530, + [3615] = 100, + [3616] = 101, + [3617] = 101, [3618] = 3618, - [3619] = 3619, - [3620] = 3620, - [3621] = 3619, - [3622] = 3619, - [3623] = 354, - [3624] = 3619, - [3625] = 93, - [3626] = 93, - [3627] = 3627, - [3628] = 3619, - [3629] = 389, - [3630] = 348, - [3631] = 349, - [3632] = 418, - [3633] = 92, - [3634] = 96, - [3635] = 3298, - [3636] = 100, - [3637] = 96, - [3638] = 360, - [3639] = 351, - [3640] = 96, - [3641] = 464, - [3642] = 3642, - [3643] = 100, + [3619] = 421, + [3620] = 3614, + [3621] = 100, + [3622] = 3614, + [3623] = 3623, + [3624] = 3624, + [3625] = 3625, + [3626] = 3614, + [3627] = 425, + [3628] = 413, + [3629] = 3629, + [3630] = 93, + [3631] = 399, + [3632] = 352, + [3633] = 420, + [3634] = 374, + [3635] = 92, + [3636] = 349, + [3637] = 101, + [3638] = 423, + [3639] = 3614, + [3640] = 93, + [3641] = 353, + [3642] = 100, + [3643] = 354, [3644] = 92, - [3645] = 421, - [3646] = 100, - [3647] = 416, - [3648] = 3648, - [3649] = 3649, - [3650] = 93, - [3651] = 100, - [3652] = 420, - [3653] = 3653, - [3654] = 107, - [3655] = 459, + [3645] = 93, + [3646] = 101, + [3647] = 3647, + [3648] = 3281, + [3649] = 348, + [3650] = 356, + [3651] = 357, + [3652] = 649, + [3653] = 414, + [3654] = 3654, + [3655] = 92, [3656] = 3656, - [3657] = 3657, - [3658] = 459, - [3659] = 3659, - [3660] = 107, - [3661] = 106, - [3662] = 3656, - [3663] = 3663, - [3664] = 3664, - [3665] = 3657, - [3666] = 3656, - [3667] = 3657, - [3668] = 3653, - [3669] = 100, - [3670] = 3656, - [3671] = 3657, - [3672] = 3653, - [3673] = 3656, - [3674] = 3657, - [3675] = 3653, + [3657] = 113, + [3658] = 113, + [3659] = 3656, + [3660] = 3660, + [3661] = 3661, + [3662] = 105, + [3663] = 115, + [3664] = 453, + [3665] = 3656, + [3666] = 3660, + [3667] = 3661, + [3668] = 424, + [3669] = 417, + [3670] = 418, + [3671] = 3656, + [3672] = 3660, + [3673] = 3661, + [3674] = 3674, + [3675] = 115, [3676] = 3656, - [3677] = 3657, - [3678] = 3653, + [3677] = 3660, + [3678] = 3661, [3679] = 3656, - [3680] = 3657, - [3681] = 3653, - [3682] = 3656, - [3683] = 3657, - [3684] = 3653, - [3685] = 3656, - [3686] = 3657, - [3687] = 3653, - [3688] = 3656, - [3689] = 3657, - [3690] = 3653, - [3691] = 3653, - [3692] = 3653, - [3693] = 3653, - [3694] = 3653, - [3695] = 3653, - [3696] = 3653, - [3697] = 3653, - [3698] = 3653, - [3699] = 2475, - [3700] = 3653, - [3701] = 96, - [3702] = 424, - [3703] = 459, - [3704] = 3653, - [3705] = 104, - [3706] = 96, - [3707] = 3707, - [3708] = 100, - [3709] = 100, - [3710] = 104, - [3711] = 107, - [3712] = 3656, - [3713] = 3657, - [3714] = 3648, - [3715] = 104, - [3716] = 3653, - [3717] = 450, - [3718] = 450, - [3719] = 3719, - [3720] = 459, - [3721] = 417, - [3722] = 3719, - [3723] = 96, - [3724] = 106, - [3725] = 419, - [3726] = 3656, - [3727] = 3657, + [3680] = 3660, + [3681] = 3661, + [3682] = 105, + [3683] = 3656, + [3684] = 3660, + [3685] = 3661, + [3686] = 3656, + [3687] = 3656, + [3688] = 3660, + [3689] = 3661, + [3690] = 3656, + [3691] = 3660, + [3692] = 3661, + [3693] = 3656, + [3694] = 3660, + [3695] = 3661, + [3696] = 105, + [3697] = 3660, + [3698] = 3661, + [3699] = 3656, + [3700] = 3660, + [3701] = 3661, + [3702] = 3661, + [3703] = 3661, + [3704] = 453, + [3705] = 3661, + [3706] = 3661, + [3707] = 3661, + [3708] = 3661, + [3709] = 3661, + [3710] = 3660, + [3711] = 3711, + [3712] = 3712, + [3713] = 3625, + [3714] = 3661, + [3715] = 3661, + [3716] = 100, + [3717] = 412, + [3718] = 459, + [3719] = 459, + [3720] = 3720, + [3721] = 101, + [3722] = 3656, + [3723] = 3723, + [3724] = 453, + [3725] = 459, + [3726] = 3660, + [3727] = 113, [3728] = 3728, - [3729] = 3664, - [3730] = 3728, - [3731] = 450, - [3732] = 379, - [3733] = 106, - [3734] = 106, - [3735] = 3656, - [3736] = 3657, - [3737] = 3653, - [3738] = 3653, - [3739] = 3663, - [3740] = 415, - [3741] = 450, - [3742] = 3656, - [3743] = 3657, - [3744] = 107, - [3745] = 104, - [3746] = 3746, - [3747] = 3747, - [3748] = 107, - [3749] = 3746, - [3750] = 489, - [3751] = 3747, - [3752] = 106, - [3753] = 3753, - [3754] = 3746, - [3755] = 106, - [3756] = 3746, + [3729] = 3656, + [3730] = 3660, + [3731] = 100, + [3732] = 3661, + [3733] = 115, + [3734] = 101, + [3735] = 101, + [3736] = 3711, + [3737] = 100, + [3738] = 113, + [3739] = 378, + [3740] = 115, + [3741] = 453, + [3742] = 3712, + [3743] = 105, + [3744] = 3720, + [3745] = 3723, + [3746] = 2507, + [3747] = 459, + [3748] = 3661, + [3749] = 1863, + [3750] = 3750, + [3751] = 3751, + [3752] = 492, + [3753] = 3750, + [3754] = 3751, + [3755] = 3750, + [3756] = 3751, [3757] = 3757, - [3758] = 3757, - [3759] = 3759, - [3760] = 3747, - [3761] = 3747, - [3762] = 3746, - [3763] = 3746, - [3764] = 3707, - [3765] = 498, - [3766] = 3746, - [3767] = 360, - [3768] = 3757, - [3769] = 3747, - [3770] = 3770, - [3771] = 3747, - [3772] = 3746, - [3773] = 3759, - [3774] = 3774, - [3775] = 104, - [3776] = 104, - [3777] = 3774, - [3778] = 3746, - [3779] = 3746, - [3780] = 357, - [3781] = 3746, - [3782] = 489, - [3783] = 351, - [3784] = 3747, - [3785] = 489, - [3786] = 93, - [3787] = 3746, - [3788] = 107, - [3789] = 3746, - [3790] = 3747, - [3791] = 3791, - [3792] = 3747, - [3793] = 3747, - [3794] = 3774, - [3795] = 3774, - [3796] = 1834, - [3797] = 481, - [3798] = 3759, - [3799] = 3746, - [3800] = 459, - [3801] = 354, - [3802] = 3747, - [3803] = 3747, - [3804] = 3757, - [3805] = 106, - [3806] = 3759, - [3807] = 450, - [3808] = 92, - [3809] = 349, - [3810] = 107, - [3811] = 104, - [3812] = 3746, - [3813] = 348, - [3814] = 3746, - [3815] = 489, - [3816] = 3746, - [3817] = 481, - [3818] = 3747, - [3819] = 3746, - [3820] = 506, - [3821] = 450, - [3822] = 1834, - [3823] = 481, - [3824] = 508, - [3825] = 459, - [3826] = 481, - [3827] = 528, - [3828] = 517, - [3829] = 93, + [3758] = 3751, + [3759] = 3757, + [3760] = 3751, + [3761] = 3751, + [3762] = 514, + [3763] = 3751, + [3764] = 92, + [3765] = 3751, + [3766] = 3766, + [3767] = 3751, + [3768] = 348, + [3769] = 3674, + [3770] = 3750, + [3771] = 453, + [3772] = 3772, + [3773] = 492, + [3774] = 3750, + [3775] = 3772, + [3776] = 352, + [3777] = 3766, + [3778] = 3757, + [3779] = 3751, + [3780] = 453, + [3781] = 356, + [3782] = 492, + [3783] = 3783, + [3784] = 3751, + [3785] = 3750, + [3786] = 113, + [3787] = 491, + [3788] = 3750, + [3789] = 3789, + [3790] = 354, + [3791] = 3766, + [3792] = 459, + [3793] = 357, + [3794] = 3750, + [3795] = 3750, + [3796] = 3772, + [3797] = 509, + [3798] = 3757, + [3799] = 3751, + [3800] = 115, + [3801] = 3750, + [3802] = 3772, + [3803] = 459, + [3804] = 3804, + [3805] = 492, + [3806] = 491, + [3807] = 3750, + [3808] = 115, + [3809] = 491, + [3810] = 3766, + [3811] = 113, + [3812] = 113, + [3813] = 105, + [3814] = 3751, + [3815] = 93, + [3816] = 115, + [3817] = 1863, + [3818] = 3751, + [3819] = 3750, + [3820] = 105, + [3821] = 353, + [3822] = 511, + [3823] = 3751, + [3824] = 3750, + [3825] = 491, + [3826] = 3751, + [3827] = 3751, + [3828] = 105, + [3829] = 3751, [3830] = 3830, - [3831] = 3831, - [3832] = 3831, - [3833] = 517, - [3834] = 690, - [3835] = 690, - [3836] = 516, - [3837] = 3831, - [3838] = 3831, - [3839] = 3831, - [3840] = 481, - [3841] = 96, - [3842] = 3831, - [3843] = 3843, - [3844] = 3831, - [3845] = 515, - [3846] = 100, - [3847] = 515, - [3848] = 3831, - [3849] = 3849, - [3850] = 489, - [3851] = 3851, - [3852] = 3831, - [3853] = 3831, - [3854] = 3831, - [3855] = 343, - [3856] = 344, - [3857] = 516, - [3858] = 3831, - [3859] = 690, - [3860] = 515, - [3861] = 517, - [3862] = 3831, - [3863] = 528, - [3864] = 3843, - [3865] = 516, - [3866] = 489, + [3831] = 502, + [3832] = 3830, + [3833] = 634, + [3834] = 633, + [3835] = 633, + [3836] = 502, + [3837] = 3837, + [3838] = 3830, + [3839] = 3839, + [3840] = 100, + [3841] = 344, + [3842] = 516, + [3843] = 502, + [3844] = 3830, + [3845] = 3830, + [3846] = 517, + [3847] = 3830, + [3848] = 3830, + [3849] = 3830, + [3850] = 3850, + [3851] = 516, + [3852] = 92, + [3853] = 516, + [3854] = 93, + [3855] = 517, + [3856] = 3837, + [3857] = 634, + [3858] = 492, + [3859] = 3830, + [3860] = 3860, + [3861] = 3830, + [3862] = 492, + [3863] = 101, + [3864] = 3830, + [3865] = 3830, + [3866] = 634, [3867] = 3867, - [3868] = 516, - [3869] = 515, - [3870] = 92, - [3871] = 517, - [3872] = 528, - [3873] = 481, - [3874] = 3874, - [3875] = 459, - [3876] = 344, - [3877] = 515, - [3878] = 516, - [3879] = 517, - [3880] = 3880, + [3868] = 517, + [3869] = 491, + [3870] = 517, + [3871] = 502, + [3872] = 3830, + [3873] = 633, + [3874] = 345, + [3875] = 491, + [3876] = 516, + [3877] = 101, + [3878] = 3878, + [3879] = 105, + [3880] = 453, [3881] = 3881, - [3882] = 690, + [3882] = 3882, [3883] = 3883, - [3884] = 506, - [3885] = 2575, - [3886] = 528, - [3887] = 3887, - [3888] = 487, - [3889] = 3887, - [3890] = 3890, - [3891] = 3891, - [3892] = 511, - [3893] = 1885, - [3894] = 3843, - [3895] = 3707, - [3896] = 450, - [3897] = 3874, - [3898] = 3898, - [3899] = 3899, - [3900] = 3900, - [3901] = 3901, - [3902] = 690, - [3903] = 3903, - [3904] = 3904, - [3905] = 3905, - [3906] = 450, - [3907] = 3907, - [3908] = 507, - [3909] = 510, - [3910] = 450, - [3911] = 3911, - [3912] = 499, - [3913] = 3887, - [3914] = 359, + [3884] = 3884, + [3885] = 3885, + [3886] = 3878, + [3887] = 514, + [3888] = 3883, + [3889] = 517, + [3890] = 3878, + [3891] = 3878, + [3892] = 3892, + [3893] = 3878, + [3894] = 509, + [3895] = 3839, + [3896] = 3878, + [3897] = 3897, + [3898] = 510, + [3899] = 633, + [3900] = 344, + [3901] = 3789, + [3902] = 511, + [3903] = 512, + [3904] = 633, + [3905] = 3867, + [3906] = 499, + [3907] = 113, + [3908] = 634, + [3909] = 459, + [3910] = 3910, + [3911] = 493, + [3912] = 115, + [3913] = 634, + [3914] = 453, [3915] = 3915, - [3916] = 528, - [3917] = 690, - [3918] = 3918, - [3919] = 364, - [3920] = 3920, - [3921] = 528, - [3922] = 507, - [3923] = 3770, - [3924] = 3867, - [3925] = 3830, + [3916] = 3916, + [3917] = 3892, + [3918] = 634, + [3919] = 3878, + [3920] = 3885, + [3921] = 3921, + [3922] = 3922, + [3923] = 3837, + [3924] = 3924, + [3925] = 3925, [3926] = 3926, - [3927] = 2646, - [3928] = 459, - [3929] = 3887, - [3930] = 3911, - [3931] = 3887, - [3932] = 3887, - [3933] = 510, - [3934] = 3887, - [3935] = 498, - [3936] = 343, - [3937] = 3887, - [3938] = 499, - [3939] = 459, - [3940] = 515, - [3941] = 493, - [3942] = 3887, - [3943] = 516, - [3944] = 3944, - [3945] = 517, - [3946] = 107, - [3947] = 459, - [3948] = 104, - [3949] = 3949, - [3950] = 3887, - [3951] = 3926, - [3952] = 3890, - [3953] = 3891, - [3954] = 3899, - [3955] = 3901, - [3956] = 3944, - [3957] = 3898, - [3958] = 3905, - [3959] = 3915, - [3960] = 3918, - [3961] = 3907, - [3962] = 498, - [3963] = 696, - [3964] = 3949, - [3965] = 510, - [3966] = 724, - [3967] = 725, - [3968] = 727, - [3969] = 3883, - [3970] = 343, - [3971] = 506, - [3972] = 507, - [3973] = 3887, - [3974] = 450, - [3975] = 508, - [3976] = 509, - [3977] = 106, - [3978] = 96, - [3979] = 100, - [3980] = 3883, - [3981] = 3883, - [3982] = 2647, + [3927] = 3674, + [3928] = 3884, + [3929] = 3929, + [3930] = 499, + [3931] = 3897, + [3932] = 517, + [3933] = 3878, + [3934] = 3910, + [3935] = 3915, + [3936] = 502, + [3937] = 708, + [3938] = 2633, + [3939] = 2637, + [3940] = 715, + [3941] = 716, + [3942] = 718, + [3943] = 100, + [3944] = 3916, + [3945] = 3926, + [3946] = 3924, + [3947] = 502, + [3948] = 510, + [3949] = 516, + [3950] = 516, + [3951] = 374, + [3952] = 3921, + [3953] = 514, + [3954] = 344, + [3955] = 3878, + [3956] = 510, + [3957] = 349, + [3958] = 3922, + [3959] = 3878, + [3960] = 518, + [3961] = 3961, + [3962] = 3878, + [3963] = 459, + [3964] = 459, + [3965] = 2634, + [3966] = 3966, + [3967] = 345, + [3968] = 518, + [3969] = 459, + [3970] = 518, + [3971] = 509, + [3972] = 3925, + [3973] = 453, + [3974] = 482, + [3975] = 520, + [3976] = 3883, + [3977] = 453, + [3978] = 3978, + [3979] = 3883, + [3980] = 3929, + [3981] = 633, + [3982] = 1878, [3983] = 3983, [3984] = 3984, - [3985] = 3985, + [3985] = 3984, [3986] = 3986, - [3987] = 3987, + [3987] = 716, [3988] = 3988, [3989] = 3989, [3990] = 3990, - [3991] = 3991, - [3992] = 3992, - [3993] = 730, - [3994] = 3994, - [3995] = 3995, - [3996] = 3996, + [3991] = 708, + [3992] = 2639, + [3993] = 374, + [3994] = 718, + [3995] = 459, + [3996] = 459, [3997] = 3997, - [3998] = 3998, - [3999] = 3999, - [4000] = 4000, - [4001] = 4001, + [3998] = 492, + [3999] = 708, + [4000] = 3961, + [4001] = 3966, [4002] = 4002, [4003] = 4003, - [4004] = 4004, - [4005] = 4005, + [4004] = 353, + [4005] = 354, [4006] = 4006, [4007] = 4007, [4008] = 4008, @@ -9062,1520 +9069,1523 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4013] = 4013, [4014] = 4014, [4015] = 4015, - [4016] = 459, + [4016] = 4016, [4017] = 4017, [4018] = 4018, - [4019] = 696, - [4020] = 1954, - [4021] = 4021, + [4019] = 4019, + [4020] = 4020, + [4021] = 4002, [4022] = 4022, - [4023] = 4023, - [4024] = 489, - [4025] = 730, - [4026] = 4026, - [4027] = 489, - [4028] = 481, - [4029] = 357, - [4030] = 4030, - [4031] = 4031, - [4032] = 360, - [4033] = 351, + [4023] = 1469, + [4024] = 4022, + [4025] = 4025, + [4026] = 348, + [4027] = 4027, + [4028] = 715, + [4029] = 2635, + [4030] = 3988, + [4031] = 356, + [4032] = 349, + [4033] = 4033, [4034] = 4034, - [4035] = 450, + [4035] = 4035, [4036] = 4036, - [4037] = 4037, - [4038] = 4038, - [4039] = 4036, - [4040] = 4040, - [4041] = 4041, - [4042] = 4042, - [4043] = 354, - [4044] = 348, - [4045] = 349, + [4037] = 2639, + [4038] = 3988, + [4039] = 4022, + [4040] = 357, + [4041] = 453, + [4042] = 716, + [4043] = 4043, + [4044] = 4044, + [4045] = 730, [4046] = 4046, - [4047] = 2709, - [4048] = 2710, - [4049] = 489, + [4047] = 4047, + [4048] = 4048, + [4049] = 718, [4050] = 4050, - [4051] = 508, - [4052] = 498, - [4053] = 506, + [4051] = 4051, + [4052] = 453, + [4053] = 4053, [4054] = 4054, [4055] = 4055, - [4056] = 4056, - [4057] = 3987, - [4058] = 481, + [4056] = 3997, + [4057] = 4057, + [4058] = 4002, [4059] = 4059, [4060] = 4060, - [4061] = 4061, + [4061] = 4034, [4062] = 4062, - [4063] = 4063, - [4064] = 364, - [4065] = 3880, - [4066] = 3881, + [4063] = 2709, + [4064] = 4064, + [4065] = 491, + [4066] = 4066, [4067] = 4067, - [4068] = 4068, - [4069] = 2632, - [4070] = 481, - [4071] = 4071, - [4072] = 347, + [4068] = 453, + [4069] = 459, + [4070] = 4070, + [4071] = 2638, + [4072] = 492, [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, + [4074] = 4048, + [4075] = 4022, + [4076] = 492, [4077] = 4077, [4078] = 4078, [4079] = 4079, - [4080] = 4050, + [4080] = 4080, [4081] = 4081, [4082] = 4082, [4083] = 4083, - [4084] = 4084, + [4084] = 115, [4085] = 4085, - [4086] = 4086, - [4087] = 4087, + [4086] = 1967, + [4087] = 3988, [4088] = 4088, - [4089] = 1464, + [4089] = 4089, [4090] = 4090, - [4091] = 4091, + [4091] = 708, [4092] = 4092, - [4093] = 4054, - [4094] = 450, - [4095] = 4055, - [4096] = 4056, + [4093] = 4093, + [4094] = 715, + [4095] = 716, + [4096] = 718, [4097] = 4097, - [4098] = 2632, - [4099] = 3987, - [4100] = 4054, - [4101] = 4055, - [4102] = 4056, + [4098] = 4098, + [4099] = 4099, + [4100] = 113, + [4101] = 453, + [4102] = 459, [4103] = 4103, - [4104] = 3987, - [4105] = 379, - [4106] = 4054, - [4107] = 4055, - [4108] = 4056, - [4109] = 4109, - [4110] = 3987, + [4104] = 4022, + [4105] = 4009, + [4106] = 715, + [4107] = 3989, + [4108] = 4034, + [4109] = 4048, + [4110] = 105, [4111] = 4111, - [4112] = 4112, - [4113] = 4113, + [4112] = 3988, + [4113] = 343, [4114] = 4114, - [4115] = 4054, - [4116] = 724, - [4117] = 725, - [4118] = 4118, - [4119] = 3987, + [4115] = 4022, + [4116] = 4116, + [4117] = 4117, + [4118] = 511, + [4119] = 4119, [4120] = 4120, [4121] = 4121, - [4122] = 4054, + [4122] = 4059, [4123] = 4123, - [4124] = 359, - [4125] = 3987, - [4126] = 459, - [4127] = 727, - [4128] = 696, - [4129] = 4054, - [4130] = 3987, - [4131] = 450, - [4132] = 3987, - [4133] = 4133, + [4124] = 3988, + [4125] = 514, + [4126] = 4022, + [4127] = 4127, + [4128] = 4128, + [4129] = 4129, + [4130] = 3997, + [4131] = 4002, + [4132] = 4132, + [4133] = 3988, [4134] = 4134, [4135] = 4135, - [4136] = 459, - [4137] = 359, - [4138] = 459, - [4139] = 450, + [4136] = 509, + [4137] = 4137, + [4138] = 4138, + [4139] = 4139, [4140] = 4140, - [4141] = 4141, - [4142] = 4142, + [4141] = 3989, + [4142] = 3988, [4143] = 4143, - [4144] = 4026, - [4145] = 4030, - [4146] = 4146, - [4147] = 4041, - [4148] = 1954, - [4149] = 4149, + [4144] = 4144, + [4145] = 4145, + [4146] = 491, + [4147] = 3997, + [4148] = 4148, + [4149] = 352, [4150] = 4150, [4151] = 4151, - [4152] = 4055, - [4153] = 4153, - [4154] = 4154, - [4155] = 4155, - [4156] = 364, - [4157] = 4157, - [4158] = 4158, - [4159] = 4054, - [4160] = 4054, + [4152] = 3989, + [4153] = 4034, + [4154] = 4048, + [4155] = 3988, + [4156] = 4156, + [4157] = 4097, + [4158] = 378, + [4159] = 4159, + [4160] = 4160, [4161] = 4161, - [4162] = 4056, + [4162] = 1967, [4163] = 4163, [4164] = 4164, - [4165] = 4165, - [4166] = 696, - [4167] = 724, - [4168] = 725, - [4169] = 727, - [4170] = 4055, - [4171] = 4171, - [4172] = 4026, - [4173] = 4030, - [4174] = 4041, - [4175] = 4056, - [4176] = 4092, - [4177] = 2576, - [4178] = 489, - [4179] = 364, - [4180] = 481, - [4181] = 459, - [4182] = 4182, - [4183] = 4183, - [4184] = 4026, - [4185] = 4030, - [4186] = 4041, - [4187] = 4062, - [4188] = 4074, - [4189] = 4088, - [4190] = 104, - [4191] = 106, - [4192] = 107, - [4193] = 724, - [4194] = 725, - [4195] = 359, - [4196] = 4196, - [4197] = 727, + [4165] = 4066, + [4166] = 4073, + [4167] = 4077, + [4168] = 4168, + [4169] = 4169, + [4170] = 491, + [4171] = 4002, + [4172] = 4172, + [4173] = 4173, + [4174] = 4174, + [4175] = 4175, + [4176] = 4176, + [4177] = 349, + [4178] = 459, + [4179] = 4179, + [4180] = 4180, + [4181] = 4181, + [4182] = 349, + [4183] = 374, + [4184] = 4022, + [4185] = 4022, + [4186] = 4186, + [4187] = 4187, + [4188] = 492, + [4189] = 491, + [4190] = 4190, + [4191] = 4191, + [4192] = 3997, + [4193] = 4002, + [4194] = 374, + [4195] = 3997, + [4196] = 730, + [4197] = 2708, [4198] = 4198, - [4199] = 2650, + [4199] = 4199, [4200] = 4200, - [4201] = 742, - [4202] = 2520, + [4201] = 4201, + [4202] = 4202, [4203] = 4203, - [4204] = 515, - [4205] = 4200, - [4206] = 4203, - [4207] = 4034, - [4208] = 4208, - [4209] = 4209, - [4210] = 4210, - [4211] = 934, - [4212] = 920, - [4213] = 3339, - [4214] = 4214, - [4215] = 4200, - [4216] = 4203, - [4217] = 4208, - [4218] = 4218, - [4219] = 4219, - [4220] = 4220, - [4221] = 459, - [4222] = 4208, + [4204] = 4204, + [4205] = 378, + [4206] = 4206, + [4207] = 719, + [4208] = 2565, + [4209] = 2519, + [4210] = 459, + [4211] = 4211, + [4212] = 514, + [4213] = 4060, + [4214] = 509, + [4215] = 887, + [4216] = 4216, + [4217] = 952, + [4218] = 517, + [4219] = 960, + [4220] = 961, + [4221] = 502, + [4222] = 987, [4223] = 516, - [4224] = 517, - [4225] = 4059, - [4226] = 4200, - [4227] = 4203, - [4228] = 4228, - [4229] = 459, - [4230] = 920, - [4231] = 4208, - [4232] = 4220, - [4233] = 489, - [4234] = 933, - [4235] = 367, + [4224] = 956, + [4225] = 4225, + [4226] = 2009, + [4227] = 4145, + [4228] = 4150, + [4229] = 4203, + [4230] = 633, + [4231] = 4231, + [4232] = 929, + [4233] = 4233, + [4234] = 4234, + [4235] = 4235, [4236] = 4236, - [4237] = 4200, - [4238] = 4203, - [4239] = 4060, - [4240] = 506, - [4241] = 929, - [4242] = 698, - [4243] = 4208, - [4244] = 498, - [4245] = 934, - [4246] = 4246, - [4247] = 4200, - [4248] = 930, - [4249] = 379, - [4250] = 3363, - [4251] = 4251, - [4252] = 4200, - [4253] = 481, - [4254] = 4200, - [4255] = 920, - [4256] = 935, - [4257] = 4200, - [4258] = 489, - [4259] = 4200, - [4260] = 4251, - [4261] = 4200, - [4262] = 929, - [4263] = 1998, - [4264] = 4200, - [4265] = 516, - [4266] = 4200, - [4267] = 4200, - [4268] = 4200, - [4269] = 4200, - [4270] = 1986, - [4271] = 4200, - [4272] = 4200, - [4273] = 481, - [4274] = 4208, - [4275] = 4086, - [4276] = 4087, - [4277] = 4203, - [4278] = 690, - [4279] = 4279, - [4280] = 2533, - [4281] = 4281, - [4282] = 4282, - [4283] = 350, - [4284] = 344, - [4285] = 528, - [4286] = 936, - [4287] = 936, - [4288] = 937, - [4289] = 4209, - [4290] = 937, - [4291] = 931, - [4292] = 2899, - [4293] = 929, - [4294] = 4200, - [4295] = 933, - [4296] = 3649, - [4297] = 4203, - [4298] = 481, - [4299] = 481, - [4300] = 347, - [4301] = 1998, - [4302] = 515, - [4303] = 4023, - [4304] = 4304, - [4305] = 489, - [4306] = 4306, - [4307] = 515, - [4308] = 4308, - [4309] = 4306, - [4310] = 4209, - [4311] = 517, - [4312] = 930, - [4313] = 931, - [4314] = 4208, - [4315] = 489, - [4316] = 343, - [4317] = 4317, - [4318] = 4281, - [4319] = 920, - [4320] = 935, - [4321] = 927, - [4322] = 935, - [4323] = 4306, - [4324] = 4200, + [4237] = 3867, + [4238] = 3839, + [4239] = 931, + [4240] = 932, + [4241] = 2639, + [4242] = 345, + [4243] = 517, + [4244] = 2009, + [4245] = 1978, + [4246] = 502, + [4247] = 516, + [4248] = 4203, + [4249] = 4236, + [4250] = 4231, + [4251] = 366, + [4252] = 4252, + [4253] = 4253, + [4254] = 368, + [4255] = 3618, + [4256] = 369, + [4257] = 4257, + [4258] = 517, + [4259] = 4259, + [4260] = 4260, + [4261] = 4252, + [4262] = 3344, + [4263] = 4263, + [4264] = 4264, + [4265] = 4121, + [4266] = 3325, + [4267] = 4127, + [4268] = 4268, + [4269] = 4007, + [4270] = 491, + [4271] = 4271, + [4272] = 492, + [4273] = 4078, + [4274] = 4082, + [4275] = 1097, + [4276] = 502, + [4277] = 491, + [4278] = 952, + [4279] = 517, + [4280] = 4236, + [4281] = 502, + [4282] = 4231, + [4283] = 516, + [4284] = 2908, + [4285] = 4252, + [4286] = 4286, + [4287] = 634, + [4288] = 4236, + [4289] = 960, + [4290] = 961, + [4291] = 4252, + [4292] = 492, + [4293] = 4204, + [4294] = 4203, + [4295] = 4236, + [4296] = 491, + [4297] = 987, + [4298] = 516, + [4299] = 492, + [4300] = 4252, + [4301] = 4203, + [4302] = 4236, + [4303] = 956, + [4304] = 4252, + [4305] = 887, + [4306] = 929, + [4307] = 459, + [4308] = 4203, + [4309] = 4236, + [4310] = 491, + [4311] = 949, + [4312] = 4252, + [4313] = 492, + [4314] = 4203, + [4315] = 4236, + [4316] = 4252, + [4317] = 4203, + [4318] = 4203, + [4319] = 952, + [4320] = 931, + [4321] = 932, + [4322] = 4203, + [4323] = 4323, + [4324] = 4203, [4325] = 4203, - [4326] = 3867, - [4327] = 4327, - [4328] = 3830, - [4329] = 515, - [4330] = 4330, - [4331] = 4209, - [4332] = 516, - [4333] = 517, - [4334] = 516, - [4335] = 1045, - [4336] = 4336, - [4337] = 4337, - [4338] = 933, - [4339] = 2632, - [4340] = 4208, - [4341] = 517, - [4342] = 4306, - [4343] = 4282, - [4344] = 4344, - [4345] = 4345, - [4346] = 930, - [4347] = 4200, - [4348] = 4337, - [4349] = 4203, - [4350] = 4037, - [4351] = 934, - [4352] = 4038, - [4353] = 936, - [4354] = 4208, - [4355] = 937, - [4356] = 931, - [4357] = 728, - [4358] = 353, - [4359] = 4359, - [4360] = 4360, - [4361] = 934, + [4326] = 4203, + [4327] = 4203, + [4328] = 4203, + [4329] = 4203, + [4330] = 4234, + [4331] = 4331, + [4332] = 4203, + [4333] = 4203, + [4334] = 4203, + [4335] = 960, + [4336] = 961, + [4337] = 4260, + [4338] = 987, + [4339] = 956, + [4340] = 4253, + [4341] = 746, + [4342] = 887, + [4343] = 929, + [4344] = 4203, + [4345] = 4236, + [4346] = 4286, + [4347] = 4231, + [4348] = 887, + [4349] = 931, + [4350] = 932, + [4351] = 344, + [4352] = 4352, + [4353] = 4252, + [4354] = 717, + [4355] = 4355, + [4356] = 4286, + [4357] = 343, + [4358] = 4358, + [4359] = 4286, + [4360] = 4259, + [4361] = 4203, [4362] = 4362, [4363] = 4363, - [4364] = 4364, - [4365] = 4365, - [4366] = 4366, - [4367] = 4367, - [4368] = 4368, + [4364] = 952, + [4365] = 952, + [4366] = 923, + [4367] = 931, + [4368] = 932, [4369] = 4369, - [4370] = 4370, - [4371] = 3038, - [4372] = 4372, + [4370] = 960, + [4371] = 961, + [4372] = 758, [4373] = 4373, - [4374] = 783, - [4375] = 4375, - [4376] = 357, - [4377] = 4377, - [4378] = 2640, - [4379] = 724, - [4380] = 725, - [4381] = 935, + [4374] = 760, + [4375] = 987, + [4376] = 761, + [4377] = 956, + [4378] = 887, + [4379] = 4379, + [4380] = 762, + [4381] = 763, [4382] = 4382, - [4383] = 727, + [4383] = 4383, [4384] = 4384, - [4385] = 3880, - [4386] = 3881, - [4387] = 515, - [4388] = 359, - [4389] = 2637, + [4385] = 4385, + [4386] = 764, + [4387] = 4387, + [4388] = 4388, + [4389] = 4389, [4390] = 4390, - [4391] = 4391, - [4392] = 2638, - [4393] = 4377, - [4394] = 360, - [4395] = 351, + [4391] = 2948, + [4392] = 4392, + [4393] = 4393, + [4394] = 765, + [4395] = 352, [4396] = 4396, - [4397] = 4397, - [4398] = 4398, - [4399] = 4399, - [4400] = 4400, - [4401] = 4401, + [4397] = 929, + [4398] = 931, + [4399] = 932, + [4400] = 353, + [4401] = 354, [4402] = 4402, [4403] = 4403, - [4404] = 4404, - [4405] = 4405, + [4404] = 931, + [4405] = 932, [4406] = 4406, - [4407] = 3231, - [4408] = 4408, - [4409] = 4409, - [4410] = 3232, - [4411] = 517, + [4407] = 348, + [4408] = 356, + [4409] = 357, + [4410] = 4211, + [4411] = 4411, [4412] = 4412, - [4413] = 4413, - [4414] = 4382, + [4413] = 4268, + [4414] = 925, [4415] = 4415, - [4416] = 936, - [4417] = 937, - [4418] = 936, - [4419] = 937, - [4420] = 920, + [4416] = 747, + [4417] = 4417, + [4418] = 2623, + [4419] = 2624, + [4420] = 4420, [4421] = 4421, - [4422] = 788, + [4422] = 4422, [4423] = 4423, [4424] = 4424, [4425] = 4425, [4426] = 4426, - [4427] = 4427, - [4428] = 4428, - [4429] = 2641, - [4430] = 790, - [4431] = 354, - [4432] = 740, - [4433] = 4433, - [4434] = 348, - [4435] = 364, + [4427] = 3783, + [4428] = 3804, + [4429] = 1866, + [4430] = 1867, + [4431] = 4431, + [4432] = 4432, + [4433] = 517, + [4434] = 4434, + [4435] = 4435, [4436] = 4436, [4437] = 4437, - [4438] = 349, - [4439] = 4382, + [4438] = 4438, + [4439] = 502, [4440] = 4440, - [4441] = 4441, - [4442] = 927, - [4443] = 801, - [4444] = 744, - [4445] = 4445, - [4446] = 516, + [4441] = 516, + [4442] = 4358, + [4443] = 960, + [4444] = 961, + [4445] = 2625, + [4446] = 2626, [4447] = 4447, - [4448] = 4382, - [4449] = 4449, - [4450] = 4450, - [4451] = 935, - [4452] = 1045, - [4453] = 4453, + [4448] = 1409, + [4449] = 2627, + [4450] = 2628, + [4451] = 3062, + [4452] = 2629, + [4453] = 3063, [4454] = 4454, - [4455] = 933, + [4455] = 4455, [4456] = 4456, - [4457] = 4382, - [4458] = 4458, + [4457] = 2605, + [4458] = 949, [4459] = 4459, - [4460] = 920, - [4461] = 974, + [4460] = 4460, + [4461] = 4461, [4462] = 4462, [4463] = 4463, [4464] = 4464, [4465] = 4465, - [4466] = 4466, - [4467] = 762, + [4466] = 517, + [4467] = 918, [4468] = 4468, [4469] = 4469, - [4470] = 935, + [4470] = 4470, [4471] = 4471, - [4472] = 978, - [4473] = 4382, - [4474] = 3753, - [4475] = 4475, - [4476] = 2642, - [4477] = 4477, - [4478] = 3791, - [4479] = 804, - [4480] = 4480, + [4472] = 4472, + [4473] = 4473, + [4474] = 1843, + [4475] = 1845, + [4476] = 4476, + [4477] = 929, + [4478] = 4478, + [4479] = 4479, + [4480] = 4459, [4481] = 4481, - [4482] = 4482, + [4482] = 949, [4483] = 4483, [4484] = 4484, [4485] = 4485, [4486] = 4486, [4487] = 4487, - [4488] = 4382, - [4489] = 4489, + [4488] = 4488, + [4489] = 3728, [4490] = 4490, - [4491] = 1845, - [4492] = 1861, - [4493] = 4493, + [4491] = 987, + [4492] = 887, + [4493] = 502, [4494] = 4494, - [4495] = 4495, - [4496] = 4436, - [4497] = 4497, - [4498] = 4382, + [4495] = 459, + [4496] = 4496, + [4497] = 4459, + [4498] = 949, [4499] = 4499, - [4500] = 4500, - [4501] = 927, - [4502] = 774, - [4503] = 4503, - [4504] = 4504, - [4505] = 4382, - [4506] = 515, + [4500] = 517, + [4501] = 920, + [4502] = 4358, + [4503] = 502, + [4504] = 516, + [4505] = 4490, + [4506] = 516, [4507] = 4507, - [4508] = 4508, - [4509] = 4344, - [4510] = 4382, - [4511] = 4453, + [4508] = 929, + [4509] = 1097, + [4510] = 4459, + [4511] = 4511, [4512] = 4512, - [4513] = 930, - [4514] = 4382, - [4515] = 929, + [4513] = 4513, + [4514] = 4514, + [4515] = 4515, [4516] = 4516, - [4517] = 931, - [4518] = 4382, - [4519] = 900, + [4517] = 4517, + [4518] = 952, + [4519] = 1097, [4520] = 4520, - [4521] = 367, - [4522] = 4522, - [4523] = 929, - [4524] = 4524, - [4525] = 1412, + [4521] = 708, + [4522] = 931, + [4523] = 932, + [4524] = 4459, + [4525] = 383, [4526] = 4526, - [4527] = 515, - [4528] = 4528, - [4529] = 805, - [4530] = 4530, - [4531] = 931, - [4532] = 4532, + [4527] = 517, + [4528] = 989, + [4529] = 4529, + [4530] = 502, + [4531] = 516, + [4532] = 748, [4533] = 4533, - [4534] = 1045, - [4535] = 934, - [4536] = 516, + [4534] = 4534, + [4535] = 1853, + [4536] = 1854, [4537] = 4537, - [4538] = 517, + [4538] = 4538, [4539] = 4539, - [4540] = 516, + [4540] = 4540, [4541] = 4541, [4542] = 4542, [4543] = 4543, [4544] = 4544, - [4545] = 515, - [4546] = 4382, - [4547] = 929, - [4548] = 953, - [4549] = 936, - [4550] = 4550, - [4551] = 937, - [4552] = 517, + [4545] = 4459, + [4546] = 4435, + [4547] = 4547, + [4548] = 922, + [4549] = 4459, + [4550] = 4459, + [4551] = 3052, + [4552] = 3055, [4553] = 4553, - [4554] = 383, - [4555] = 930, - [4556] = 936, - [4557] = 931, - [4558] = 937, - [4559] = 4462, + [4554] = 4459, + [4555] = 4555, + [4556] = 956, + [4557] = 4557, + [4558] = 4459, + [4559] = 4559, [4560] = 4560, - [4561] = 802, - [4562] = 933, + [4561] = 4561, + [4562] = 4459, [4563] = 4563, [4564] = 4564, - [4565] = 934, + [4565] = 4565, [4566] = 4566, - [4567] = 4567, - [4568] = 785, - [4569] = 4344, - [4570] = 516, - [4571] = 4543, - [4572] = 920, + [4567] = 715, + [4568] = 4568, + [4569] = 4569, + [4570] = 716, + [4571] = 4571, + [4572] = 718, [4573] = 4573, - [4574] = 4574, + [4574] = 374, [4575] = 4575, - [4576] = 1370, - [4577] = 4577, + [4576] = 3961, + [4577] = 3966, [4578] = 4578, - [4579] = 772, - [4580] = 4580, + [4579] = 4579, + [4580] = 939, [4581] = 4581, [4582] = 4582, - [4583] = 4382, - [4584] = 4228, + [4583] = 4583, + [4584] = 4584, [4585] = 4585, - [4586] = 4586, - [4587] = 4587, - [4588] = 350, - [4589] = 1868, - [4590] = 459, - [4591] = 4236, - [4592] = 1839, + [4586] = 4447, + [4587] = 752, + [4588] = 4588, + [4589] = 4589, + [4590] = 4590, + [4591] = 4591, + [4592] = 4592, [4593] = 4593, [4594] = 4594, [4595] = 4595, [4596] = 4596, - [4597] = 353, + [4597] = 4597, [4598] = 4598, - [4599] = 4599, + [4599] = 753, [4600] = 4600, - [4601] = 4539, + [4601] = 4601, [4602] = 4602, - [4603] = 786, + [4603] = 4603, [4604] = 4604, - [4605] = 933, - [4606] = 4382, - [4607] = 4440, - [4608] = 935, + [4605] = 4605, + [4606] = 754, + [4607] = 960, + [4608] = 697, [4609] = 4609, - [4610] = 4382, - [4611] = 4382, - [4612] = 4612, - [4613] = 4613, - [4614] = 954, + [4610] = 961, + [4611] = 349, + [4612] = 726, + [4613] = 755, + [4614] = 4614, [4615] = 4615, - [4616] = 517, - [4617] = 927, - [4618] = 4618, - [4619] = 696, - [4620] = 2643, - [4621] = 3659, - [4622] = 730, - [4623] = 4623, - [4624] = 450, - [4625] = 4550, - [4626] = 782, - [4627] = 4279, + [4616] = 4616, + [4617] = 366, + [4618] = 4459, + [4619] = 4494, + [4620] = 4620, + [4621] = 987, + [4622] = 4622, + [4623] = 4235, + [4624] = 4624, + [4625] = 4422, + [4626] = 730, + [4627] = 4627, [4628] = 4628, - [4629] = 917, - [4630] = 4630, - [4631] = 4631, + [4629] = 4629, + [4630] = 888, + [4631] = 944, [4632] = 4632, [4633] = 4633, - [4634] = 4382, + [4634] = 956, [4635] = 4635, - [4636] = 930, - [4637] = 3237, - [4638] = 2639, - [4639] = 4639, - [4640] = 4640, - [4641] = 803, - [4642] = 1829, - [4643] = 4643, - [4644] = 4644, - [4645] = 1846, - [4646] = 3238, - [4647] = 4647, - [4648] = 4503, - [4649] = 4567, - [4650] = 4650, - [4651] = 4544, - [4652] = 4615, - [4653] = 760, - [4654] = 4654, + [4636] = 4636, + [4637] = 889, + [4638] = 4638, + [4639] = 887, + [4640] = 4459, + [4641] = 4641, + [4642] = 4642, + [4643] = 4459, + [4644] = 4459, + [4645] = 4369, + [4646] = 4646, + [4647] = 4459, + [4648] = 4539, + [4649] = 4544, + [4650] = 368, + [4651] = 369, + [4652] = 1316, + [4653] = 929, + [4654] = 4459, [4655] = 4655, - [4656] = 764, - [4657] = 4657, - [4658] = 4658, - [4659] = 4643, - [4660] = 765, - [4661] = 4643, - [4662] = 4503, - [4663] = 4567, - [4664] = 4544, + [4656] = 4656, + [4657] = 1097, + [4658] = 4390, + [4659] = 4659, + [4660] = 4420, + [4661] = 4426, + [4662] = 4638, + [4663] = 4663, + [4664] = 4664, [4665] = 4665, [4666] = 4666, - [4667] = 1045, - [4668] = 4668, - [4669] = 768, - [4670] = 2633, - [4671] = 4671, + [4667] = 959, + [4668] = 4390, + [4669] = 4420, + [4670] = 4426, + [4671] = 4638, [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 4676, + [4673] = 453, + [4674] = 4579, + [4675] = 4459, + [4676] = 749, [4677] = 4677, - [4678] = 4390, - [4679] = 4391, - [4680] = 4437, - [4681] = 4512, - [4682] = 4682, - [4683] = 4516, + [4678] = 4678, + [4679] = 4679, + [4680] = 501, + [4681] = 4681, + [4682] = 4557, + [4683] = 4561, [4684] = 4684, - [4685] = 784, - [4686] = 4686, + [4685] = 4685, + [4686] = 4585, [4687] = 4687, - [4688] = 4688, - [4689] = 4481, - [4690] = 4482, + [4688] = 4461, + [4689] = 4421, + [4690] = 492, [4691] = 4691, - [4692] = 4522, - [4693] = 4693, - [4694] = 4400, - [4695] = 2916, - [4696] = 4524, - [4697] = 4528, - [4698] = 2917, - [4699] = 4673, - [4700] = 745, - [4701] = 4701, - [4702] = 901, - [4703] = 4703, - [4704] = 4704, - [4705] = 4483, - [4706] = 4494, - [4707] = 4450, - [4708] = 4423, - [4709] = 4424, - [4710] = 481, - [4711] = 4711, - [4712] = 4712, - [4713] = 2516, - [4714] = 4714, - [4715] = 4715, - [4716] = 4566, - [4717] = 4717, - [4718] = 4718, - [4719] = 4719, - [4720] = 2793, - [4721] = 4721, - [4722] = 4688, - [4723] = 4485, - [4724] = 4560, - [4725] = 4426, - [4726] = 4487, - [4727] = 4727, - [4728] = 4728, - [4729] = 4729, - [4730] = 4730, - [4731] = 4731, - [4732] = 4674, - [4733] = 4733, - [4734] = 4650, + [4692] = 4423, + [4693] = 4424, + [4694] = 4425, + [4695] = 4695, + [4696] = 4614, + [4697] = 2917, + [4698] = 4463, + [4699] = 4699, + [4700] = 4700, + [4701] = 2196, + [4702] = 2197, + [4703] = 4632, + [4704] = 2199, + [4705] = 4633, + [4706] = 4706, + [4707] = 4707, + [4708] = 768, + [4709] = 3162, + [4710] = 769, + [4711] = 4635, + [4712] = 4656, + [4713] = 4659, + [4714] = 4663, + [4715] = 4636, + [4716] = 4716, + [4717] = 4642, + [4718] = 4431, + [4719] = 4512, + [4720] = 4513, + [4721] = 4514, + [4722] = 4515, + [4723] = 4723, + [4724] = 4517, + [4725] = 4526, + [4726] = 4588, + [4727] = 4589, + [4728] = 4590, + [4729] = 4591, + [4730] = 4592, + [4731] = 4593, + [4732] = 4594, + [4733] = 4595, + [4734] = 3167, [4735] = 4735, [4736] = 4736, - [4737] = 4401, - [4738] = 2219, - [4739] = 4574, - [4740] = 4406, - [4741] = 4408, - [4742] = 4742, - [4743] = 2550, - [4744] = 4412, - [4745] = 4673, - [4746] = 4363, - [4747] = 4582, - [4748] = 4609, - [4749] = 4639, - [4750] = 4413, - [4751] = 4751, - [4752] = 4752, - [4753] = 4688, - [4754] = 2528, - [4755] = 4415, - [4756] = 4756, - [4757] = 459, - [4758] = 4421, - [4759] = 4364, - [4760] = 4575, - [4761] = 4577, - [4762] = 4477, - [4763] = 4763, + [4737] = 4737, + [4738] = 4672, + [4739] = 4739, + [4740] = 4740, + [4741] = 4462, + [4742] = 4432, + [4743] = 4743, + [4744] = 4744, + [4745] = 4745, + [4746] = 4746, + [4747] = 4747, + [4748] = 4748, + [4749] = 4749, + [4750] = 4707, + [4751] = 4740, + [4752] = 4363, + [4753] = 4684, + [4754] = 4754, + [4755] = 378, + [4756] = 2918, + [4757] = 4684, + [4758] = 2730, + [4759] = 4759, + [4760] = 4760, + [4761] = 4438, + [4762] = 4762, + [4763] = 4746, [4764] = 4764, - [4765] = 4673, - [4766] = 4766, - [4767] = 1417, - [4768] = 4751, - [4769] = 379, - [4770] = 1385, - [4771] = 4578, - [4772] = 945, - [4773] = 4580, - [4774] = 4774, - [4775] = 4775, - [4776] = 4402, - [4777] = 4673, + [4765] = 4765, + [4766] = 3192, + [4767] = 4454, + [4768] = 4707, + [4769] = 4575, + [4770] = 759, + [4771] = 4434, + [4772] = 4772, + [4773] = 4455, + [4774] = 785, + [4775] = 786, + [4776] = 4776, + [4777] = 1376, [4778] = 4778, - [4779] = 4751, - [4780] = 4425, - [4781] = 4654, - [4782] = 4587, - [4783] = 4783, - [4784] = 4365, - [4785] = 4397, - [4786] = 4786, - [4787] = 4787, - [4788] = 4673, - [4789] = 2569, - [4790] = 4674, - [4791] = 4791, - [4792] = 4792, - [4793] = 4751, - [4794] = 4751, - [4795] = 4366, - [4796] = 4367, + [4779] = 4746, + [4780] = 4780, + [4781] = 4362, + [4782] = 4782, + [4783] = 4707, + [4784] = 453, + [4785] = 4537, + [4786] = 4538, + [4787] = 4677, + [4788] = 2527, + [4789] = 4540, + [4790] = 4541, + [4791] = 4542, + [4792] = 4746, + [4793] = 4543, + [4794] = 4559, + [4795] = 4707, + [4796] = 2545, [4797] = 4797, - [4798] = 949, - [4799] = 4799, - [4800] = 4368, - [4801] = 4752, - [4802] = 4369, - [4803] = 4803, - [4804] = 4370, - [4805] = 2542, - [4806] = 4398, - [4807] = 4403, - [4808] = 4593, - [4809] = 489, - [4810] = 4372, - [4811] = 4655, - [4812] = 4594, - [4813] = 4596, - [4814] = 4598, - [4815] = 4599, - [4816] = 4404, - [4817] = 4657, - [4818] = 4600, - [4819] = 4819, - [4820] = 4628, - [4821] = 509, - [4822] = 4630, - [4823] = 4373, - [4824] = 4824, - [4825] = 4825, - [4826] = 697, - [4827] = 4631, - [4828] = 4686, - [4829] = 4665, - [4830] = 809, - [4831] = 4602, - [4832] = 4832, - [4833] = 4537, - [4834] = 4632, - [4835] = 4733, - [4836] = 4633, - [4837] = 4837, + [4798] = 4560, + [4799] = 343, + [4800] = 4468, + [4801] = 4801, + [4802] = 4802, + [4803] = 2194, + [4804] = 512, + [4805] = 2919, + [4806] = 4806, + [4807] = 4469, + [4808] = 4808, + [4809] = 2571, + [4810] = 4684, + [4811] = 4436, + [4812] = 4778, + [4813] = 4563, + [4814] = 4578, + [4815] = 4584, + [4816] = 4624, + [4817] = 4564, + [4818] = 4818, + [4819] = 4565, + [4820] = 4820, + [4821] = 4470, + [4822] = 4566, + [4823] = 4568, + [4824] = 4569, + [4825] = 4471, + [4826] = 4746, + [4827] = 4827, + [4828] = 4571, + [4829] = 4382, + [4830] = 4383, + [4831] = 4387, + [4832] = 2517, + [4833] = 2551, + [4834] = 4834, + [4835] = 4573, + [4836] = 459, + [4837] = 944, [4838] = 4838, - [4839] = 4839, + [4839] = 4746, [4840] = 4840, - [4841] = 347, - [4842] = 4635, - [4843] = 1377, - [4844] = 810, - [4845] = 4845, - [4846] = 4674, - [4847] = 737, - [4848] = 4497, - [4849] = 4618, - [4850] = 3338, - [4851] = 511, - [4852] = 4542, - [4853] = 777, - [4854] = 4504, - [4855] = 4666, - [4856] = 4682, - [4857] = 4427, - [4858] = 4564, - [4859] = 4644, - [4860] = 4860, - [4861] = 4673, - [4862] = 4508, - [4863] = 974, - [4864] = 3113, + [4841] = 4841, + [4842] = 4842, + [4843] = 4843, + [4844] = 4844, + [4845] = 2556, + [4846] = 4596, + [4847] = 4597, + [4848] = 4598, + [4849] = 4699, + [4850] = 1374, + [4851] = 4600, + [4852] = 4838, + [4853] = 4700, + [4854] = 969, + [4855] = 4601, + [4856] = 4707, + [4857] = 733, + [4858] = 4456, + [4859] = 4740, + [4860] = 4602, + [4861] = 520, + [4862] = 4484, + [4863] = 1412, + [4864] = 4864, [4865] = 4865, - [4866] = 4824, + [4866] = 4866, [4867] = 4867, - [4868] = 4751, + [4868] = 4868, [4869] = 4869, - [4870] = 953, - [4871] = 4499, + [4870] = 4870, + [4871] = 4871, [4872] = 4872, [4873] = 4873, - [4874] = 503, - [4875] = 4500, - [4876] = 4688, - [4877] = 4877, - [4878] = 4878, - [4879] = 4751, - [4880] = 4752, - [4881] = 4581, + [4874] = 736, + [4875] = 984, + [4876] = 4582, + [4877] = 4583, + [4878] = 491, + [4879] = 4746, + [4880] = 4880, + [4881] = 4881, [4882] = 4882, - [4883] = 450, - [4884] = 795, - [4885] = 903, + [4883] = 4473, + [4884] = 4884, + [4885] = 4885, [4886] = 4886, - [4887] = 4887, - [4888] = 4888, - [4889] = 2915, + [4887] = 2173, + [4888] = 4840, + [4889] = 4889, [4890] = 4890, [4891] = 4891, - [4892] = 4495, + [4892] = 4892, [4893] = 4893, - [4894] = 3212, - [4895] = 2179, - [4896] = 2180, + [4894] = 4894, + [4895] = 4603, + [4896] = 4604, [4897] = 4897, - [4898] = 2215, - [4899] = 4899, + [4898] = 4898, + [4899] = 4478, [4900] = 4900, - [4901] = 4901, - [4902] = 4399, - [4903] = 4903, - [4904] = 4904, - [4905] = 4905, - [4906] = 4752, - [4907] = 4774, - [4908] = 4908, - [4909] = 4428, - [4910] = 4764, - [4911] = 4475, - [4912] = 4480, - [4913] = 4490, + [4901] = 4840, + [4902] = 4479, + [4903] = 4481, + [4904] = 4483, + [4905] = 4871, + [4906] = 4485, + [4907] = 4486, + [4908] = 751, + [4909] = 989, + [4910] = 4605, + [4911] = 4911, + [4912] = 4487, + [4913] = 4707, [4914] = 4914, - [4915] = 814, - [4916] = 815, - [4917] = 2519, - [4918] = 4493, + [4915] = 4740, + [4916] = 4916, + [4917] = 459, + [4918] = 750, [4919] = 4919, - [4920] = 459, - [4921] = 4674, - [4922] = 2168, - [4923] = 4923, - [4924] = 776, - [4925] = 3140, - [4926] = 4586, - [4927] = 775, - [4928] = 4595, - [4929] = 4929, - [4930] = 1045, - [4931] = 4931, + [4920] = 4488, + [4921] = 4921, + [4922] = 916, + [4923] = 917, + [4924] = 4840, + [4925] = 3399, + [4926] = 766, + [4927] = 767, + [4928] = 4928, + [4929] = 4465, + [4930] = 4840, + [4931] = 4437, [4932] = 4932, - [4933] = 937, - [4934] = 930, + [4933] = 949, + [4934] = 502, [4935] = 4935, [4936] = 4936, [4937] = 4937, [4938] = 4938, - [4939] = 4939, - [4940] = 4937, - [4941] = 4941, + [4939] = 2086, + [4940] = 2023, + [4941] = 4802, [4942] = 4942, [4943] = 4943, [4944] = 4944, [4945] = 4945, [4946] = 4946, - [4947] = 4947, + [4947] = 952, [4948] = 4948, [4949] = 4949, [4950] = 4950, - [4951] = 4951, - [4952] = 4952, - [4953] = 4953, - [4954] = 4949, - [4955] = 489, - [4956] = 4956, + [4951] = 931, + [4952] = 932, + [4953] = 1522, + [4954] = 4938, + [4955] = 4945, + [4956] = 986, [4957] = 4957, - [4958] = 4956, - [4959] = 4944, + [4958] = 4958, + [4959] = 4957, [4960] = 4960, [4961] = 4961, [4962] = 4962, [4963] = 4963, - [4964] = 935, - [4965] = 931, - [4966] = 4966, + [4964] = 887, + [4965] = 4965, + [4966] = 3168, [4967] = 4967, - [4968] = 933, - [4969] = 1039, + [4968] = 4968, + [4969] = 4969, [4970] = 4970, - [4971] = 4936, - [4972] = 4951, - [4973] = 4973, + [4971] = 4971, + [4972] = 4972, + [4973] = 1064, [4974] = 4974, [4975] = 4975, [4976] = 4976, [4977] = 4977, - [4978] = 4978, - [4979] = 4979, - [4980] = 2984, - [4981] = 4961, - [4982] = 2693, - [4983] = 4983, - [4984] = 4984, - [4985] = 4975, + [4978] = 366, + [4979] = 4937, + [4980] = 516, + [4981] = 4981, + [4982] = 4982, + [4983] = 4948, + [4984] = 3193, + [4985] = 4985, [4986] = 4986, - [4987] = 4978, - [4988] = 4344, - [4989] = 350, + [4987] = 4987, + [4988] = 4988, + [4989] = 4989, [4990] = 4990, [4991] = 4991, - [4992] = 4992, - [4993] = 4935, - [4994] = 4994, + [4992] = 942, + [4993] = 3783, + [4994] = 3804, [4995] = 4995, - [4996] = 934, - [4997] = 4929, + [4996] = 491, + [4997] = 4997, [4998] = 4998, - [4999] = 3753, + [4999] = 4999, [5000] = 5000, - [5001] = 530, - [5002] = 3791, - [5003] = 5003, - [5004] = 1530, - [5005] = 353, + [5001] = 5001, + [5002] = 5002, + [5003] = 649, + [5004] = 492, + [5005] = 5005, [5006] = 5006, - [5007] = 2985, - [5008] = 979, - [5009] = 2045, - [5010] = 980, - [5011] = 4945, - [5012] = 4718, - [5013] = 4977, - [5014] = 5014, - [5015] = 4957, + [5007] = 5007, + [5008] = 5008, + [5009] = 4997, + [5010] = 5010, + [5011] = 5011, + [5012] = 5012, + [5013] = 5013, + [5014] = 4981, + [5015] = 5015, [5016] = 5016, [5017] = 5017, - [5018] = 5018, + [5018] = 4935, [5019] = 5019, - [5020] = 5020, - [5021] = 4931, - [5022] = 517, - [5023] = 929, - [5024] = 936, - [5025] = 4983, - [5026] = 516, - [5027] = 5027, - [5028] = 5028, + [5020] = 955, + [5021] = 5021, + [5022] = 5022, + [5023] = 5023, + [5024] = 5024, + [5025] = 4985, + [5026] = 4977, + [5027] = 5002, + [5028] = 4988, [5029] = 5029, [5030] = 5030, - [5031] = 5031, - [5032] = 5032, - [5033] = 4941, - [5034] = 5034, + [5031] = 4991, + [5032] = 4982, + [5033] = 5033, + [5034] = 956, [5035] = 5035, - [5036] = 4979, + [5036] = 5036, [5037] = 5037, - [5038] = 515, + [5038] = 953, [5039] = 5039, [5040] = 5040, - [5041] = 5041, + [5041] = 5039, [5042] = 5042, - [5043] = 4938, - [5044] = 4986, - [5045] = 4944, - [5046] = 5046, - [5047] = 3225, - [5048] = 4929, - [5049] = 4975, + [5043] = 5043, + [5044] = 4974, + [5045] = 5001, + [5046] = 5042, + [5047] = 5047, + [5048] = 5048, + [5049] = 5049, [5050] = 5050, - [5051] = 5051, - [5052] = 4962, - [5053] = 4929, - [5054] = 4970, - [5055] = 481, - [5056] = 4991, - [5057] = 920, - [5058] = 4990, - [5059] = 927, - [5060] = 5041, - [5061] = 5061, - [5062] = 5062, - [5063] = 5061, - [5064] = 5064, - [5065] = 4929, - [5066] = 5032, - [5067] = 2165, - [5068] = 4992, - [5069] = 2019, - [5070] = 4962, - [5071] = 4970, - [5072] = 5003, - [5073] = 5073, - [5074] = 4944, - [5075] = 4962, - [5076] = 4970, - [5077] = 4939, - [5078] = 4947, - [5079] = 4975, - [5080] = 5042, - [5081] = 4953, - [5082] = 5082, - [5083] = 5083, - [5084] = 4932, - [5085] = 4952, - [5086] = 5086, - [5087] = 924, - [5088] = 367, - [5089] = 5089, - [5090] = 3141, - [5091] = 5091, - [5092] = 972, - [5093] = 5083, + [5051] = 4976, + [5052] = 4942, + [5053] = 5002, + [5054] = 5054, + [5055] = 4995, + [5056] = 4950, + [5057] = 5007, + [5058] = 5002, + [5059] = 5059, + [5060] = 5019, + [5061] = 5002, + [5062] = 4358, + [5063] = 5030, + [5064] = 4974, + [5065] = 5065, + [5066] = 5047, + [5067] = 929, + [5068] = 4987, + [5069] = 5005, + [5070] = 368, + [5071] = 5071, + [5072] = 4958, + [5073] = 369, + [5074] = 5074, + [5075] = 4960, + [5076] = 4963, + [5077] = 4972, + [5078] = 3001, + [5079] = 4987, + [5080] = 5005, + [5081] = 4987, + [5082] = 5005, + [5083] = 4976, + [5084] = 2679, + [5085] = 4932, + [5086] = 983, + [5087] = 4974, + [5088] = 2103, + [5089] = 3010, + [5090] = 960, + [5091] = 5015, + [5092] = 4976, + [5093] = 517, [5094] = 5094, - [5095] = 951, - [5096] = 5096, - [5097] = 5086, - [5098] = 5098, - [5099] = 5099, - [5100] = 5100, + [5095] = 987, + [5096] = 961, + [5097] = 1097, + [5098] = 4943, + [5099] = 5000, + [5100] = 5054, [5101] = 5101, [5102] = 5102, - [5103] = 5103, + [5103] = 5101, [5104] = 5104, - [5105] = 5105, + [5105] = 2517, [5106] = 5106, - [5107] = 5101, - [5108] = 5108, + [5107] = 5107, + [5108] = 5107, [5109] = 5109, - [5110] = 2550, + [5110] = 5110, [5111] = 5111, [5112] = 5112, [5113] = 5113, [5114] = 5114, [5115] = 5115, - [5116] = 5100, - [5117] = 2542, + [5116] = 5116, + [5117] = 5117, [5118] = 5118, - [5119] = 5109, - [5120] = 5105, - [5121] = 5121, + [5119] = 5101, + [5120] = 5120, + [5121] = 5107, [5122] = 5122, - [5123] = 5123, - [5124] = 5109, - [5125] = 5111, - [5126] = 5126, - [5127] = 5113, - [5128] = 5114, - [5129] = 5115, - [5130] = 5100, - [5131] = 5131, - [5132] = 5126, - [5133] = 5102, - [5134] = 5105, + [5123] = 5107, + [5124] = 2551, + [5125] = 5125, + [5126] = 5107, + [5127] = 5112, + [5128] = 5128, + [5129] = 5114, + [5130] = 512, + [5131] = 5116, + [5132] = 5117, + [5133] = 5118, + [5134] = 5101, [5135] = 5135, - [5136] = 5136, - [5137] = 5111, - [5138] = 5109, - [5139] = 517, - [5140] = 5113, - [5141] = 5114, - [5142] = 5115, + [5136] = 887, + [5137] = 5112, + [5138] = 5107, + [5139] = 5139, + [5140] = 5120, + [5141] = 5141, + [5142] = 5112, [5143] = 5143, - [5144] = 5144, - [5145] = 5105, - [5146] = 5146, - [5147] = 5113, - [5148] = 5114, - [5149] = 5109, + [5144] = 5116, + [5145] = 5117, + [5146] = 5118, + [5147] = 5147, + [5148] = 5148, + [5149] = 5107, [5150] = 5150, - [5151] = 5113, - [5152] = 5114, - [5153] = 5115, - [5154] = 5115, - [5155] = 5105, - [5156] = 5105, - [5157] = 5114, - [5158] = 5158, + [5151] = 5148, + [5152] = 5115, + [5153] = 5112, + [5154] = 5114, + [5155] = 5116, + [5156] = 5117, + [5157] = 5118, + [5158] = 520, [5159] = 5159, - [5160] = 5104, - [5161] = 5113, - [5162] = 5114, - [5163] = 5115, - [5164] = 5164, - [5165] = 5165, - [5166] = 5105, - [5167] = 5167, - [5168] = 5113, - [5169] = 5114, - [5170] = 5115, - [5171] = 5171, - [5172] = 5099, - [5173] = 5105, - [5174] = 5174, - [5175] = 5113, - [5176] = 5114, - [5177] = 5115, - [5178] = 5109, - [5179] = 5179, - [5180] = 5105, - [5181] = 5100, - [5182] = 5113, - [5183] = 5114, - [5184] = 5115, - [5185] = 5185, - [5186] = 5102, - [5187] = 5105, - [5188] = 5106, - [5189] = 5113, + [5160] = 5107, + [5161] = 5161, + [5162] = 5162, + [5163] = 5112, + [5164] = 5116, + [5165] = 5116, + [5166] = 5117, + [5167] = 5118, + [5168] = 5141, + [5169] = 5169, + [5170] = 5107, + [5171] = 5117, + [5172] = 5116, + [5173] = 5117, + [5174] = 5118, + [5175] = 5118, + [5176] = 5176, + [5177] = 5107, + [5178] = 5150, + [5179] = 5116, + [5180] = 5117, + [5181] = 5118, + [5182] = 512, + [5183] = 5183, + [5184] = 5107, + [5185] = 5183, + [5186] = 5116, + [5187] = 5117, + [5188] = 5118, + [5189] = 5189, [5190] = 5114, - [5191] = 5115, + [5191] = 5107, [5192] = 5192, - [5193] = 5193, - [5194] = 5105, - [5195] = 5195, - [5196] = 5113, - [5197] = 5114, - [5198] = 5115, - [5199] = 5199, - [5200] = 5105, - [5201] = 2519, - [5202] = 5113, - [5203] = 5114, - [5204] = 5115, + [5193] = 5116, + [5194] = 5117, + [5195] = 5118, + [5196] = 5122, + [5197] = 5116, + [5198] = 5107, + [5199] = 5117, + [5200] = 5116, + [5201] = 5117, + [5202] = 5118, + [5203] = 5118, + [5204] = 5107, [5205] = 5205, - [5206] = 5105, - [5207] = 5104, - [5208] = 5113, - [5209] = 5114, - [5210] = 5115, - [5211] = 5104, - [5212] = 5212, - [5213] = 5118, - [5214] = 5214, - [5215] = 5215, + [5206] = 5116, + [5207] = 5117, + [5208] = 5118, + [5209] = 5209, + [5210] = 5107, + [5211] = 5211, + [5212] = 5116, + [5213] = 5117, + [5214] = 5118, + [5215] = 5189, [5216] = 5216, - [5217] = 5185, - [5218] = 5165, - [5219] = 5109, - [5220] = 5158, - [5221] = 5100, - [5222] = 5222, - [5223] = 5215, - [5224] = 5123, - [5225] = 5225, - [5226] = 5122, + [5217] = 5217, + [5218] = 5102, + [5219] = 5219, + [5220] = 5220, + [5221] = 5113, + [5222] = 5128, + [5223] = 2527, + [5224] = 5224, + [5225] = 5101, + [5226] = 5226, [5227] = 5227, - [5228] = 5105, - [5229] = 5109, - [5230] = 5105, - [5231] = 511, + [5228] = 5228, + [5229] = 5229, + [5230] = 5230, + [5231] = 5209, [5232] = 5232, - [5233] = 5123, + [5233] = 5112, [5234] = 5234, [5235] = 5235, - [5236] = 5111, - [5237] = 5237, - [5238] = 5238, - [5239] = 5106, - [5240] = 5111, - [5241] = 5105, - [5242] = 5126, - [5243] = 5171, - [5244] = 5158, - [5245] = 5199, - [5246] = 5246, - [5247] = 5099, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, - [5251] = 5225, - [5252] = 5111, - [5253] = 974, - [5254] = 5106, - [5255] = 5109, - [5256] = 5174, + [5236] = 5234, + [5237] = 5141, + [5238] = 5102, + [5239] = 5239, + [5240] = 5114, + [5241] = 5241, + [5242] = 5111, + [5243] = 5107, + [5244] = 5143, + [5245] = 5135, + [5246] = 5169, + [5247] = 5189, + [5248] = 5143, + [5249] = 520, + [5250] = 5125, + [5251] = 5102, + [5252] = 5252, + [5253] = 5217, + [5254] = 5120, + [5255] = 5161, + [5256] = 5256, [5257] = 5257, - [5258] = 5123, - [5259] = 5135, + [5258] = 5107, + [5259] = 944, [5260] = 5260, - [5261] = 5103, - [5262] = 5106, - [5263] = 5126, - [5264] = 5179, - [5265] = 5265, - [5266] = 5111, - [5267] = 5109, - [5268] = 5268, - [5269] = 5111, - [5270] = 5159, - [5271] = 5123, - [5272] = 511, - [5273] = 5214, - [5274] = 5274, - [5275] = 5113, - [5276] = 5114, - [5277] = 5277, - [5278] = 5126, - [5279] = 5115, - [5280] = 509, - [5281] = 5281, - [5282] = 5282, - [5283] = 5111, - [5284] = 5113, - [5285] = 5159, - [5286] = 5286, - [5287] = 5126, - [5288] = 5114, - [5289] = 5113, - [5290] = 5114, - [5291] = 5099, - [5292] = 5115, - [5293] = 5250, - [5294] = 5174, - [5295] = 5295, - [5296] = 5159, - [5297] = 5297, - [5298] = 5212, - [5299] = 5115, - [5300] = 5300, - [5301] = 5179, - [5302] = 5100, - [5303] = 5195, - [5304] = 5102, - [5305] = 5305, - [5306] = 509, - [5307] = 5307, - [5308] = 5100, - [5309] = 5215, - [5310] = 5192, - [5311] = 2516, - [5312] = 5225, - [5313] = 5313, - [5314] = 5286, - [5315] = 5159, - [5316] = 5113, - [5317] = 5216, - [5318] = 5318, - [5319] = 5099, - [5320] = 5297, - [5321] = 5104, - [5322] = 5313, - [5323] = 5323, - [5324] = 5305, - [5325] = 5227, + [5261] = 5261, + [5262] = 5262, + [5263] = 5139, + [5264] = 5264, + [5265] = 5106, + [5266] = 5120, + [5267] = 5227, + [5268] = 2556, + [5269] = 5114, + [5270] = 5219, + [5271] = 5271, + [5272] = 5272, + [5273] = 5112, + [5274] = 5219, + [5275] = 5275, + [5276] = 5141, + [5277] = 5224, + [5278] = 5143, + [5279] = 5232, + [5280] = 5101, + [5281] = 5150, + [5282] = 5112, + [5283] = 5283, + [5284] = 5114, + [5285] = 5285, + [5286] = 5141, + [5287] = 5116, + [5288] = 5102, + [5289] = 5117, + [5290] = 5227, + [5291] = 5291, + [5292] = 5118, + [5293] = 5232, + [5294] = 2545, + [5295] = 5107, + [5296] = 5189, + [5297] = 5262, + [5298] = 5298, + [5299] = 5135, + [5300] = 5150, + [5301] = 5102, + [5302] = 5219, + [5303] = 5120, + [5304] = 5304, + [5305] = 5224, + [5306] = 5306, + [5307] = 5101, + [5308] = 5308, + [5309] = 5116, + [5310] = 5227, + [5311] = 5101, + [5312] = 5114, + [5313] = 5232, + [5314] = 5117, + [5315] = 5109, + [5316] = 5071, + [5317] = 5261, + [5318] = 5161, + [5319] = 517, + [5320] = 5112, + [5321] = 5143, + [5322] = 5141, + [5323] = 5116, + [5324] = 5117, + [5325] = 5118, [5326] = 5326, [5327] = 5327, [5328] = 5328, - [5329] = 5238, - [5330] = 5330, - [5331] = 5105, - [5332] = 2569, - [5333] = 5333, - [5334] = 5327, - [5335] = 5335, - [5336] = 5336, - [5337] = 5106, - [5338] = 5338, - [5339] = 5174, - [5340] = 5174, + [5329] = 5150, + [5330] = 5230, + [5331] = 502, + [5332] = 5107, + [5333] = 5114, + [5334] = 5118, + [5335] = 5189, + [5336] = 5217, + [5337] = 5337, + [5338] = 5116, + [5339] = 5117, + [5340] = 5118, [5341] = 5341, - [5342] = 5105, - [5343] = 5109, - [5344] = 5179, - [5345] = 5100, - [5346] = 5346, - [5347] = 5123, - [5348] = 5109, - [5349] = 511, - [5350] = 5111, - [5351] = 5351, - [5352] = 5099, - [5353] = 5126, - [5354] = 5354, - [5355] = 5123, - [5356] = 4960, - [5357] = 5102, - [5358] = 5150, - [5359] = 5212, - [5360] = 5216, - [5361] = 5185, - [5362] = 5165, - [5363] = 5257, - [5364] = 5364, - [5365] = 5179, - [5366] = 5238, - [5367] = 5111, - [5368] = 5099, - [5369] = 5100, - [5370] = 5192, - [5371] = 5193, - [5372] = 920, - [5373] = 5144, - [5374] = 5374, - [5375] = 515, - [5376] = 5113, - [5377] = 5114, - [5378] = 5115, - [5379] = 5379, - [5380] = 5232, - [5381] = 5158, - [5382] = 5159, - [5383] = 5179, - [5384] = 5102, - [5385] = 5099, - [5386] = 5174, - [5387] = 5150, - [5388] = 5330, - [5389] = 5179, - [5390] = 5100, - [5391] = 5099, - [5392] = 5102, - [5393] = 5192, - [5394] = 5248, - [5395] = 5192, - [5396] = 5286, - [5397] = 5397, - [5398] = 5106, - [5399] = 5123, - [5400] = 5112, - [5401] = 5104, - [5402] = 5212, - [5403] = 5216, - [5404] = 5185, - [5405] = 5165, - [5406] = 5327, - [5407] = 5238, - [5408] = 5249, - [5409] = 5330, - [5410] = 5354, - [5411] = 5305, - [5412] = 5212, - [5413] = 5216, - [5414] = 5185, - [5415] = 5165, - [5416] = 5212, - [5417] = 5216, - [5418] = 5185, - [5419] = 5165, - [5420] = 5212, - [5421] = 5216, - [5422] = 5185, - [5423] = 5165, - [5424] = 5212, - [5425] = 5185, - [5426] = 5165, - [5427] = 5212, - [5428] = 5185, - [5429] = 5165, - [5430] = 5212, - [5431] = 5185, - [5432] = 5165, - [5433] = 5212, - [5434] = 5185, - [5435] = 5165, - [5436] = 5212, - [5437] = 5185, - [5438] = 5165, - [5439] = 5212, - [5440] = 5185, - [5441] = 5165, - [5442] = 5212, - [5443] = 5185, - [5444] = 5165, - [5445] = 5212, - [5446] = 5185, - [5447] = 5165, - [5448] = 5212, - [5449] = 5185, - [5450] = 5165, - [5451] = 5212, - [5452] = 5185, - [5453] = 5165, - [5454] = 5212, - [5455] = 5185, - [5456] = 5165, - [5457] = 5212, - [5458] = 5185, - [5459] = 5165, - [5460] = 5212, - [5461] = 5185, - [5462] = 5165, - [5463] = 5212, - [5464] = 5185, - [5465] = 5165, - [5466] = 5174, - [5467] = 5105, - [5468] = 5468, - [5469] = 953, + [5342] = 516, + [5343] = 5252, + [5344] = 5264, + [5345] = 5112, + [5346] = 5229, + [5347] = 5141, + [5348] = 5120, + [5349] = 5150, + [5350] = 5264, + [5351] = 5102, + [5352] = 5112, + [5353] = 5114, + [5354] = 5114, + [5355] = 5355, + [5356] = 5102, + [5357] = 5219, + [5358] = 5358, + [5359] = 5141, + [5360] = 5116, + [5361] = 5135, + [5362] = 5117, + [5363] = 5216, + [5364] = 5220, + [5365] = 5113, + [5366] = 5128, + [5367] = 5118, + [5368] = 5224, + [5369] = 5189, + [5370] = 5111, + [5371] = 5217, + [5372] = 5101, + [5373] = 5189, + [5374] = 5150, + [5375] = 989, + [5376] = 5229, + [5377] = 5377, + [5378] = 5102, + [5379] = 5219, + [5380] = 5380, + [5381] = 5341, + [5382] = 5382, + [5383] = 5226, + [5384] = 5224, + [5385] = 5101, + [5386] = 5386, + [5387] = 5387, + [5388] = 5234, + [5389] = 5235, + [5390] = 5390, + [5391] = 5271, + [5392] = 5382, + [5393] = 5102, + [5394] = 5394, + [5395] = 5227, + [5396] = 5227, + [5397] = 5232, + [5398] = 5291, + [5399] = 5399, + [5400] = 5400, + [5401] = 5216, + [5402] = 5176, + [5403] = 5143, + [5404] = 5232, + [5405] = 5141, + [5406] = 5216, + [5407] = 5220, + [5408] = 5113, + [5409] = 5128, + [5410] = 5410, + [5411] = 5111, + [5412] = 5109, + [5413] = 5413, + [5414] = 5235, + [5415] = 5107, + [5416] = 5216, + [5417] = 5220, + [5418] = 5113, + [5419] = 5128, + [5420] = 5216, + [5421] = 5220, + [5422] = 5113, + [5423] = 5128, + [5424] = 5216, + [5425] = 5220, + [5426] = 5113, + [5427] = 5128, + [5428] = 5216, + [5429] = 5113, + [5430] = 5128, + [5431] = 5216, + [5432] = 5113, + [5433] = 5128, + [5434] = 5216, + [5435] = 5113, + [5436] = 5128, + [5437] = 5216, + [5438] = 5113, + [5439] = 5128, + [5440] = 5216, + [5441] = 5113, + [5442] = 5128, + [5443] = 5216, + [5444] = 5113, + [5445] = 5128, + [5446] = 5216, + [5447] = 5113, + [5448] = 5128, + [5449] = 5216, + [5450] = 5113, + [5451] = 5128, + [5452] = 5216, + [5453] = 5113, + [5454] = 5128, + [5455] = 5216, + [5456] = 5113, + [5457] = 5128, + [5458] = 5216, + [5459] = 5113, + [5460] = 5128, + [5461] = 5216, + [5462] = 5113, + [5463] = 5128, + [5464] = 5216, + [5465] = 5113, + [5466] = 5128, + [5467] = 5216, + [5468] = 5113, + [5469] = 5128, [5470] = 5470, - [5471] = 5286, - [5472] = 5282, - [5473] = 5260, - [5474] = 5150, - [5475] = 5109, - [5476] = 5476, - [5477] = 516, - [5478] = 5327, - [5479] = 5123, - [5480] = 5330, - [5481] = 5111, - [5482] = 5265, - [5483] = 5113, - [5484] = 5114, - [5485] = 5115, - [5486] = 5199, - [5487] = 5297, - [5488] = 5098, - [5489] = 5192, - [5490] = 5159, - [5491] = 5159, - [5492] = 5265, - [5493] = 5099, - [5494] = 5192, - [5495] = 5100, + [5471] = 5471, + [5472] = 5298, + [5473] = 520, + [5474] = 5112, + [5475] = 5272, + [5476] = 5104, + [5477] = 5219, + [5478] = 5115, + [5479] = 5224, + [5480] = 5141, + [5481] = 5481, + [5482] = 5232, + [5483] = 5114, + [5484] = 5109, + [5485] = 5116, + [5486] = 5117, + [5487] = 5118, + [5488] = 5147, + [5489] = 5112, + [5490] = 5115, + [5491] = 5189, + [5492] = 5492, + [5493] = 5122, + [5494] = 5494, + [5495] = 5410, [5496] = 5496, [5497] = 5102, - [5498] = 2528, - [5499] = 5113, - [5500] = 5297, - [5501] = 5205, - [5502] = 5104, - [5503] = 509, - [5504] = 5104, - [5505] = 5118, - [5506] = 5114, - [5507] = 5115, - [5508] = 5105, - [5509] = 5313, - [5510] = 5098, - [5511] = 5511, - [5512] = 5468, - [5513] = 5115, - [5514] = 5496, - [5515] = 5199, - [5516] = 5109, - [5517] = 5109, - [5518] = 5098, - [5519] = 5519, - [5520] = 5351, - [5521] = 5111, - [5522] = 5105, - [5523] = 5113, + [5498] = 5101, + [5499] = 5227, + [5500] = 5264, + [5501] = 5122, + [5502] = 5328, + [5503] = 5503, + [5504] = 5504, + [5505] = 5496, + [5506] = 5229, + [5507] = 5507, + [5508] = 5110, + [5509] = 5328, + [5510] = 5510, + [5511] = 5227, + [5512] = 5291, + [5513] = 5143, + [5514] = 5492, + [5515] = 5107, + [5516] = 5492, + [5517] = 5504, + [5518] = 5112, + [5519] = 5492, + [5520] = 5224, + [5521] = 5220, + [5522] = 5291, + [5523] = 5496, [5524] = 5114, - [5525] = 5115, - [5526] = 5305, - [5527] = 5123, - [5528] = 5099, - [5529] = 5529, + [5525] = 512, + [5526] = 5143, + [5527] = 5116, + [5528] = 5117, + [5529] = 5118, + [5530] = 2571, + [5531] = 5120, + [5532] = 5532, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -11238,1803 +11248,1811 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '"', 1712, - '#', 2215, - '$', 1537, - '&', 838, - '\'', 1715, - '(', 1588, - ')', 1643, - '*', 1134, - '+', 1139, - ',', 1496, - '-', 1140, - '.', 1748, - '/', 1136, - ':', 1740, - ';', 1478, - '<', 1163, - '=', 682, - '>', 1166, - '?', 1744, - '@', 1508, - '[', 1692, - ']', 1493, - '^', 1758, - '_', 1529, - '`', 1719, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1741, + '"', 1708, + '#', 2213, + '$', 1533, + '%', 1756, + '&', 834, + '\'', 1711, + '(', 1584, + ')', 1639, + '*', 1130, + '+', 1135, + ',', 1492, + '-', 1136, + '.', 1744, + '/', 1132, + ':', 1736, + ';', 1474, + '<', 1159, + '=', 678, + '>', 1162, + '?', 1740, + '@', 1504, + '[', 1688, + ']', 1489, + '^', 1754, + '_', 1525, + '`', 1715, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(575); + lookahead == ' ') SKIP(571); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1395); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1391); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '$', 1497, - '(', 1494, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1752, - ':', 1490, - '<', 1163, - '=', 682, - '>', 1506, - '?', 1744, - '@', 1508, - '[', 1492, - ']', 1493, - '|', 1479, + '!', 1741, + '#', 2213, + '$', 1493, + '(', 1490, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1748, + ':', 1486, + '<', 1159, + '=', 678, + '>', 1502, + '?', 1740, + '@', 1504, + '[', 1488, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '$', 1497, - '(', 1494, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1751, - ':', 1490, - '=', 682, - '>', 1506, - '?', 1744, - '[', 1492, - ']', 1493, - '|', 1479, + '!', 1741, + '#', 2213, + '$', 1493, + '(', 1490, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1747, + ':', 1486, + '=', 678, + '>', 1502, + '?', 1740, + '[', 1488, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '(', 1494, - ')', 1495, + '!', 1741, + '#', 2213, + '(', 1490, + ')', 1491, '-', 296, - '.', 1747, - ':', 1740, - ';', 1478, - '=', 684, - '>', 1506, - '?', 1744, - '[', 1492, - 'a', 423, + '.', 1743, + ':', 1736, + ';', 1474, + '=', 680, + '>', 1502, + '?', 1740, + '[', 1488, + 'a', 420, 'e', 287, - 'i', 386, + 'i', 383, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '(', 1494, - ')', 1495, + '!', 1741, + '#', 2213, + '(', 1490, + ')', 1491, '-', 296, - '.', 1749, - ':', 1740, - ';', 1478, - '=', 684, - '>', 1506, - '?', 1744, - '[', 1492, - 'a', 423, + '.', 1745, + ':', 1736, + ';', 1474, + '=', 680, + '>', 1502, + '?', 1740, + '[', 1488, + 'a', 420, 'e', 287, - 'i', 386, + 'i', 383, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - ')', 1495, - '.', 1747, - ':', 1740, - ';', 1478, + '!', 1741, + '#', 2213, + ')', 1491, + '.', 1743, + ':', 1736, + ';', 1474, '=', 322, - '?', 1744, - 'a', 423, + '?', 1740, + 'a', 420, 'e', 287, - 'i', 386, + 'i', 383, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - ')', 1495, - '.', 1749, - ':', 1740, - ';', 1478, + '!', 1741, + '#', 2213, + ')', 1491, + '.', 1745, + ':', 1736, + ';', 1474, '=', 322, - '?', 1744, - 'a', 423, + '?', 1740, + 'a', 420, 'e', 287, - 'i', 386, + 'i', 383, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1631, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1627, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1842, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1840, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1832, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '{', 1525, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1830, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1832, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '{', 1525, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1830, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1832, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '{', 1525, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1830, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1835, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '{', 1525, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1833, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1621, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1617, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, - '=', 1822, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, - '{', 1525, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, + '=', 1820, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '$', 1497, - '*', 1539, - '+', 1604, - '-', 1521, - '.', 336, - '/', 1594, - '<', 1577, + '#', 2213, + '$', 1493, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 335, + '/', 1590, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, - 'e', 427, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, - 'o', 455, - 's', 489, - 'x', 434, - '{', 1525, + '>', 1503, + 'a', 420, + 'b', 396, + 'e', 424, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, + 'o', 451, + 's', 485, + 'x', 431, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, + 's', 485, + 'x', 431, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 286, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 288, - 's', 489, - 'x', 434, - '|', 1479, + 's', 485, + 'x', 431, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ':', 1740, - ';', 1478, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ':', 1736, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 286, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 288, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, + 's', 485, + 'x', 431, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 286, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 288, - 's', 489, - 'x', 434, - '|', 1479, + 's', 485, + 'x', 431, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, - 'e', 427, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, - 'o', 455, - 's', 489, - 'x', 434, - '{', 1525, + '>', 1503, + 'a', 420, + 'b', 396, + 'e', 424, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, + 'o', 451, + 's', 485, + 'x', 431, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ':', 1740, - ';', 1478, - '=', 1756, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ':', 1736, + ';', 1474, + '=', 1752, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ':', 1740, - ';', 1478, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ':', 1736, + ';', 1474, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 1607, - '-', 1518, - '.', 707, - '0', 1650, - ':', 1490, - ';', 1478, - '<', 1163, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 1603, + '-', 1514, + '.', 703, + '0', 1646, + ':', 1486, + ';', 1474, + '<', 1159, '=', 322, - '>', 1506, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - ']', 1493, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '|', 1479, - '}', 1526, + '>', 1502, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + ']', 1489, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(838); + (lookahead < '+' || '.' < lookahead)) ADVANCE(834); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 1607, - '-', 1518, - '.', 707, - '0', 1650, - ':', 1490, - ';', 1478, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 1603, + '-', 1514, + '.', 703, + '0', 1646, + ':', 1486, + ';', 1474, '=', 322, - '>', 1506, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - ']', 1493, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '|', 1479, - '}', 1526, + '>', 1502, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + ']', 1489, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(838); + (lookahead < '0' || '>' < lookahead)) ADVANCE(834); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ';', 1478, - '=', 1756, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 761, - '{', 1525, - '\t', 1477, - ' ', 1477, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ';', 1474, + '=', 1752, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 757, + '{', 1521, + '\t', 1473, + ' ', 1473, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - '=', 682, - '>', 1506, - '@', 1508, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 761, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + '=', 678, + '>', 1502, + '@', 1504, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 757, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - '=', 682, - '>', 1506, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 761, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + '=', 678, + '>', 1502, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 757, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 711, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 707, '-', 298, - '.', 727, - '=', 1756, - 'I', 823, - 'N', 819, - '[', 1492, - ']', 1493, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '{', 1525, + '.', 723, + '=', 1752, + 'I', 819, + 'N', 815, + '[', 1488, + ']', 1489, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 711, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 707, '-', 298, - '.', 727, - 'I', 823, - 'N', 819, - '[', 1492, - ']', 1493, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '{', 1525, + '.', 723, + 'I', 819, + 'N', 815, + '[', 1488, + ']', 1489, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, '+', 308, - '-', 1518, + '-', 1514, '.', 309, - '0', 1653, - ':', 1740, - 'N', 537, - '[', 1492, - '_', 338, - '`', 1719, - 'f', 347, - 'n', 445, - 't', 460, - '{', 1525, + '0', 1649, + ':', 1736, + 'N', 533, + '[', 1488, + '_', 337, + '`', 1715, + 'f', 345, + 'n', 442, + 't', 456, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); + lookahead == 'i') ADVANCE(542); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1665); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 1607, - '-', 1518, - '.', 710, - '0', 1655, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 1603, + '-', 1514, + '.', 706, + '0', 1651, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, - '-', 1518, - '.', 2025, - '0', 1651, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2054, - 't', 2057, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, + '-', 1514, + '.', 2023, + '0', 1647, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2052, + 't', 2055, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, - '-', 1515, - '.', 2026, - '0', 1651, - ':', 1740, - ';', 1478, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'e', 2016, - 'f', 2042, - 'n', 2070, - 'o', 2017, - 't', 2057, - '{', 1525, - '|', 1479, - '}', 1526, - '\t', 1476, - ' ', 1476, - 'I', 2078, - 'i', 2078, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, + '-', 1511, + '.', 2024, + '0', 1647, + ':', 1736, + ';', 1474, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'e', 2014, + 'f', 2040, + 'n', 2068, + 'o', 2015, + 't', 2055, + '{', 1521, + '|', 1475, + '}', 1522, + '\t', 1472, + ' ', 1472, + 'I', 2076, + 'i', 2076, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2097); + lookahead != ']') ADVANCE(2095); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, - '-', 1515, - '.', 2026, - '0', 1651, - ';', 1478, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'e', 2020, - 'f', 2042, - 'n', 2070, - 'o', 2021, - 't', 2057, - '{', 1525, - '\t', 1477, - ' ', 1477, - 'I', 2078, - 'i', 2078, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, + '-', 1511, + '.', 2024, + '0', 1647, + ';', 1474, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'e', 2018, + 'f', 2040, + 'n', 2068, + 'o', 2019, + 't', 2055, + '{', 1521, + '\t', 1473, + ' ', 1473, + 'I', 2076, + 'i', 2076, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2109, - ',', 1496, - '-', 2108, - '.', 2110, - '0', 1652, - 'N', 2127, - '[', 1492, - ']', 1493, - '_', 2114, - '`', 1719, - 'f', 2117, - 'n', 2126, - 't', 2123, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2107, + ',', 1492, + '-', 2106, + '.', 2108, + '0', 1648, + 'N', 2125, + '[', 1488, + ']', 1489, + '_', 2112, + '`', 1715, + 'f', 2115, + 'n', 2124, + 't', 2121, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2133); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2131); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2166, - '-', 2165, - '.', 2164, - '0', 1654, - 'N', 2181, - '[', 1492, - '_', 2168, - '`', 1719, - 'f', 2171, - 'n', 2180, - 't', 2177, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2164, + '-', 2163, + '.', 2162, + '0', 1650, + 'N', 2179, + '[', 1488, + '_', 2166, + '`', 1715, + 'f', 2169, + 'n', 2178, + 't', 2175, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2187); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2201); + lookahead == 'i') ADVANCE(2185); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2199); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1497, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1493, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 297, - '.', 2025, - '0', 1651, - 'N', 2074, - '[', 1492, - '_', 1528, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, - '}', 1526, + '.', 2023, + '0', 1647, + 'N', 2072, + '[', 1488, + '_', 1524, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1497, - '\'', 1715, - '(', 1494, - '+', 2109, - ',', 1496, - '-', 2108, - '.', 2107, - '0', 1652, - 'N', 2127, - '[', 1492, - ']', 1493, - '_', 2114, - '`', 1719, - 'f', 2117, - 'n', 2126, - 't', 2123, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1493, + '\'', 1711, + '(', 1490, + '+', 2107, + ',', 1492, + '-', 2106, + '.', 2105, + '0', 1648, + 'N', 2125, + '[', 1488, + ']', 1489, + '_', 2112, + '`', 1715, + 'f', 2115, + 'n', 2124, + 't', 2121, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2133); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2131); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1497, - '\'', 1715, - '(', 1494, - '-', 1513, - '`', 1719, - 'f', 1542, - 'n', 1546, - 't', 1547, - '{', 1525, + '"', 1708, + '#', 2213, + '$', 1493, + '\'', 1711, + '(', 1490, + '-', 1509, + '`', 1715, + 'f', 1538, + 'n', 1542, + 't', 1543, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(49); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 2166, - '-', 2165, - '.', 2164, - '>', 1506, - 'N', 2181, - '_', 2168, - '`', 1719, - 'f', 2171, - 'n', 2180, - 't', 2177, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 2164, + '-', 2163, + '.', 2162, + '>', 1502, + 'N', 2179, + '_', 2166, + '`', 1715, + 'f', 2169, + 'n', 2178, + 't', 2175, ); if (lookahead == '\t' || lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2187); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2201); + lookahead == 'i') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2199); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2218, - '$', 1499, - '\'', 1715, - '(', 1494, - '+', 862, - '-', 1519, - '.', 863, - '0', 878, - ':', 1740, - 'N', 1039, - '[', 1492, - '_', 880, - '`', 1719, - 'f', 888, - 'n', 962, - 't', 977, - '{', 1525, + '"', 1708, + '#', 2216, + '$', 1495, + '\'', 1711, + '(', 1490, + '+', 858, + '-', 1515, + '.', 859, + '0', 874, + ':', 1736, + 'N', 1035, + '[', 1488, + '_', 876, + '`', 1715, + 'f', 884, + 'n', 958, + 't', 973, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(883); + lookahead == 'i') ADVANCE(1040); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(879); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '+', 1988, - ',', 1496, - '-', 1516, - '.', 1627, - ':', 1490, - '=', 682, - ']', 1493, - '_', 1367, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '+', 1986, + ',', 1492, + '-', 1512, + '.', 1623, + ':', 1486, + '=', 678, + ']', 1489, + '_', 1363, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -13044,27 +13062,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '+', 1988, - ',', 1496, - '-', 1516, - '.', 1989, - ':', 1490, - '=', 682, - ']', 1493, - '_', 1367, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '+', 1986, + ',', 1492, + '-', 1512, + '.', 1987, + ':', 1486, + '=', 678, + ']', 1489, + '_', 1363, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -13074,49 +13092,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1628, - ':', 1490, - '=', 682, - 'E', 1357, - 'G', 1365, - 'K', 1365, - 'M', 1365, - 'P', 1365, - 'T', 1365, - ']', 1493, - 'd', 1370, - 'e', 1356, - 'g', 1364, - 'h', 1388, - 'k', 1364, - 'm', 1366, - 'n', 1390, - 'p', 1364, - 's', 1375, - 't', 1364, - 'u', 1390, - 'w', 1376, - '|', 1479, - 0xb5, 1390, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1624, + ':', 1486, + '=', 678, + 'E', 1353, + 'G', 1361, + 'K', 1361, + 'M', 1361, + 'P', 1361, + 'T', 1361, + ']', 1489, + 'd', 1366, + 'e', 1352, + 'g', 1360, + 'h', 1384, + 'k', 1360, + 'm', 1362, + 'n', 1386, + 'p', 1360, + 's', 1371, + 't', 1360, + 'u', 1386, + 'w', 1372, + '|', 1475, + 0xb5, 1386, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); + lookahead == 'b') ADVANCE(1680); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13124,29 +13142,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1628, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1624, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1354); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13154,49 +13172,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1992, - ':', 1490, - '=', 682, - 'E', 1357, - 'G', 1365, - 'K', 1365, - 'M', 1365, - 'P', 1365, - 'T', 1365, - ']', 1493, - '_', 1367, - 'd', 1370, - 'e', 1356, - 'g', 1364, - 'h', 1388, - 'k', 1364, - 'm', 1366, - 'n', 1390, - 'p', 1364, - 's', 1375, - 't', 1364, - 'u', 1390, - 'w', 1376, - '|', 1479, - 0xb5, 1390, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1990, + ':', 1486, + '=', 678, + 'E', 1353, + 'G', 1361, + 'K', 1361, + 'M', 1361, + 'P', 1361, + 'T', 1361, + ']', 1489, + '_', 1363, + 'd', 1366, + 'e', 1352, + 'g', 1360, + 'h', 1384, + 'k', 1360, + 'm', 1362, + 'n', 1386, + 'p', 1360, + 's', 1371, + 't', 1360, + 'u', 1386, + 'w', 1372, + '|', 1475, + 0xb5, 1386, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); + lookahead == 'b') ADVANCE(1680); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13204,49 +13222,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1992, - ':', 1490, - '=', 682, - 'E', 1357, - 'G', 1365, - 'K', 1365, - 'M', 1365, - 'P', 1365, - 'T', 1365, - ']', 1493, - 'd', 1370, - 'e', 1356, - 'g', 1364, - 'h', 1388, - 'k', 1364, - 'm', 1366, - 'n', 1390, - 'p', 1364, - 's', 1375, - 't', 1364, - 'u', 1390, - 'w', 1376, - '|', 1479, - 0xb5, 1390, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1990, + ':', 1486, + '=', 678, + 'E', 1353, + 'G', 1361, + 'K', 1361, + 'M', 1361, + 'P', 1361, + 'T', 1361, + ']', 1489, + 'd', 1366, + 'e', 1352, + 'g', 1360, + 'h', 1384, + 'k', 1360, + 'm', 1362, + 'n', 1386, + 'p', 1360, + 's', 1371, + 't', 1360, + 'u', 1386, + 'w', 1372, + '|', 1475, + 0xb5, 1386, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); + lookahead == 'b') ADVANCE(1680); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13254,48 +13272,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1992, - ':', 1490, - '=', 682, - 'E', 1365, - 'G', 1365, - 'K', 1365, - 'M', 1365, - 'P', 1365, - 'T', 1365, - ']', 1493, - 'd', 1370, - 'e', 1364, - 'g', 1364, - 'h', 1388, - 'k', 1364, - 'm', 1366, - 'n', 1390, - 'p', 1364, - 's', 1375, - 't', 1364, - 'u', 1390, - 'w', 1376, - '|', 1479, - 0xb5, 1390, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1990, + ':', 1486, + '=', 678, + 'E', 1361, + 'G', 1361, + 'K', 1361, + 'M', 1361, + 'P', 1361, + 'T', 1361, + ']', 1489, + 'd', 1366, + 'e', 1360, + 'g', 1360, + 'h', 1384, + 'k', 1360, + 'm', 1362, + 'n', 1386, + 'p', 1360, + 's', 1371, + 't', 1360, + 'u', 1386, + 'w', 1372, + '|', 1475, + 0xb5, 1386, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); + lookahead == 'b') ADVANCE(1680); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13303,30 +13321,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1992, - ':', 1490, - '=', 682, - ']', 1493, - '_', 1367, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1990, + ':', 1486, + '=', 678, + ']', 1489, + '_', 1363, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1354); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13334,30 +13352,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1992, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1990, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1354); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13365,24 +13383,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1992, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1990, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); @@ -13393,29 +13411,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1626, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1622, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1354); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13423,30 +13441,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1990, - ':', 1490, - '=', 682, - ']', 1493, - '_', 1367, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1988, + ':', 1486, + '=', 678, + ']', 1489, + '_', 1363, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1354); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13454,30 +13472,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1990, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1988, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1354); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13485,24 +13503,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - ',', 1496, - '-', 1514, - '.', 1990, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + ',', 1492, + '-', 1510, + '.', 1988, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); @@ -13513,215 +13531,215 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2013); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); + lookahead == '^') ADVANCE(2011); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1631, - ';', 1478, - '_', 1840, - '\t', 1477, - ' ', 1477, - '+', 1818, - '-', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1627, + ';', 1474, + '_', 1838, + '\t', 1473, + ' ', 1473, + '+', 1816, + '-', 1816, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1631, - '=', 1823, - '_', 1840, - 'i', 1872, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1627, + '=', 1821, + '_', 1838, + 'i', 1870, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1631, - '=', 1823, - '_', 1840, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1627, + '=', 1821, + '_', 1838, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1842, - ';', 1478, - '_', 1840, - '\t', 1477, - ' ', 1477, - '+', 1818, - '-', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1840, + ';', 1474, + '_', 1838, + '\t', 1473, + ' ', 1473, + '+', 1816, + '-', 1816, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1842, - '=', 1823, - '_', 1840, - 'i', 1872, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1840, + '=', 1821, + '_', 1838, + 'i', 1870, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1842, - '=', 1823, - '_', 1840, - '|', 1479, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1840, + '=', 1821, + '_', 1838, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1494, - ')', 1495, - ',', 1496, - '-', 1514, + '#', 2213, + '$', 1493, + '(', 1490, + ')', 1491, + ',', 1492, + '-', 1510, '.', 311, - ':', 1490, - '=', 682, - '?', 1510, - '[', 1692, - ']', 1493, - '|', 1479, + ':', 1486, + '=', 678, + '?', 1506, + '[', 1688, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1494, - ')', 1495, - ',', 1496, - '-', 1514, + '#', 2213, + '$', 1493, + '(', 1490, + ')', 1491, + ',', 1492, + '-', 1510, '.', 311, - ':', 1490, - '=', 682, - '[', 1492, - ']', 1493, - '|', 1479, + ':', 1486, + '=', 678, + '[', 1488, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - ')', 1495, + '#', 2213, + '$', 1493, + ')', 1491, '+', 313, - ',', 1496, - '-', 1517, + ',', 1492, + '-', 1513, '.', 312, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - ')', 1495, - ',', 1496, - '-', 1514, + '#', 2213, + '$', 1493, + ')', 1491, + ',', 1492, + '-', 1510, '.', 311, - ':', 1490, - '=', 682, - ']', 1493, - '|', 1479, + ':', 1486, + '=', 678, + ']', 1489, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '.', 336, + '#', 2213, + '$', 1493, + '.', 335, '=', 322, - 'i', 385, - '|', 1479, + 'i', 382, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); @@ -13729,13 +13747,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(313); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '.') ADVANCE(335); if (lookahead == '=') ADVANCE(322); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || @@ -13743,922 +13761,922 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1622, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1618, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1622, - ';', 1478, - '\t', 1477, - ' ', 1477, - 'E', 1846, - 'e', 1846, + '#', 2213, + '(', 1584, + '.', 1618, + ';', 1474, + '\t', 1473, + ' ', 1473, + 'E', 1844, + 'e', 1844, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1817, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1815, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1817, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1815, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1817, - ';', 1478, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1836, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1815, + ';', 1474, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1834, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1817, - ';', 1478, - '_', 1840, - '\t', 1477, - ' ', 1477, - 'E', 1846, - 'e', 1846, + '#', 2213, + '(', 1584, + '.', 1815, + ';', 1474, + '_', 1838, + '\t', 1473, + ' ', 1473, + 'E', 1844, + 'e', 1844, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1817, - ';', 1478, - '\t', 1477, - ' ', 1477, - 'E', 1846, - 'e', 1846, + '#', 2213, + '(', 1584, + '.', 1815, + ';', 1474, + '\t', 1473, + ' ', 1473, + 'E', 1844, + 'e', 1844, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1817, - ';', 1478, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + '.', 1815, + ';', 1474, + '\t', 1473, + ' ', 1473, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - '.', 1621, - ';', 1478, - '\t', 1477, - ' ', 1477, - 'E', 1846, - 'e', 1846, + '#', 2213, + '(', 1584, + '.', 1617, + ';', 1474, + '\t', 1473, + ' ', 1473, + 'E', 1844, + 'e', 1844, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ';', 1478, - '_', 1840, - '\t', 1477, - ' ', 1477, - 'E', 1846, - 'e', 1846, + '#', 2213, + '(', 1584, + ';', 1474, + '_', 1838, + '\t', 1473, + ' ', 1473, + 'E', 1844, + 'e', 1844, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 88: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ';', 1478, - '\t', 1477, - ' ', 1477, - 'E', 1846, - 'e', 1846, + '#', 2213, + '(', 1584, + ';', 1474, + '\t', 1473, + ' ', 1473, + 'E', 1844, + 'e', 1844, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 89: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == ';') ADVANCE(1478); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == ';') ADVANCE(1474); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1477); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') ADVANCE(1473); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1494, - ')', 1495, - ',', 1496, + '#', 2213, + '(', 1490, + ')', 1491, + ',', 1492, '-', 296, - '.', 1750, - ':', 1490, - ';', 1478, - '=', 682, - '>', 1506, - '@', 1508, - '[', 1492, - ']', 1493, - 'c', 1373, - 'f', 1392, - 'i', 1381, - 'o', 1384, - 'v', 1369, - '{', 1525, - '}', 1526, + '.', 1746, + ':', 1486, + ';', 1474, + '=', 678, + '>', 1502, + '@', 1504, + '[', 1488, + ']', 1489, + 'c', 1369, + 'f', 1388, + 'i', 1377, + 'o', 1380, + 'v', 1365, + '{', 1521, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(91); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1494, - ')', 1495, - ',', 1496, + '#', 2213, + '(', 1490, + ')', 1491, + ',', 1492, '-', 296, - '.', 1750, - ':', 1490, - ';', 1478, - '=', 682, - '>', 1506, - '[', 1492, - ']', 1493, - 'c', 1373, - 'f', 1392, - 'i', 1381, - 'o', 1384, - 'v', 1369, - '{', 1525, - '}', 1526, + '.', 1746, + ':', 1486, + ';', 1474, + '=', 678, + '>', 1502, + '[', 1488, + ']', 1489, + 'c', 1369, + 'f', 1388, + 'i', 1377, + 'o', 1380, + 'v', 1365, + '{', 1521, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(91); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1622, - '=', 1823, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'i', 1872, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1618, + '=', 1821, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'i', 1870, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1622, - '=', 1823, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1618, + '=', 1821, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1622); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1618); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1622); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1618); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 96: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'i', 1872, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1815, + '=', 1821, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'i', 1870, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1815, + '=', 1821, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'i', 1872, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1815, + '=', 1821, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'i', 1870, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1815, + '=', 1821, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1836, - 'g', 1836, - 'h', 1905, - 'i', 1872, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1815, + '=', 1821, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1834, + 'g', 1834, + 'h', 1903, + 'i', 1870, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1836, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - 0xb5, 1918, + '#', 2213, + '.', 1815, + '=', 1821, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1834, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '.', 1817, - '=', 1823, - '_', 1840, - 'i', 1872, - '|', 1479, + '#', 2213, + '.', 1815, + '=', 1821, + '_', 1838, + 'i', 1870, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1621); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1617); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1621); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1617); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 110: ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - ':', 1740, - ';', 1478, - '=', 1756, + '#', 2213, + ':', 1736, + ';', 1474, + '=', 1752, 'e', 287, 'o', 289, - '|', 1479, - '}', 1526, - '\t', 1476, - ' ', 1476, + '|', 1475, + '}', 1522, + '\t', 1472, + ' ', 1472, ); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == ':') ADVANCE(1740); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == ':') ADVANCE(1736); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(111); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == ';') ADVANCE(1478); - if (lookahead == '=') ADVANCE(1756); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == ';') ADVANCE(1474); + if (lookahead == '=') ADVANCE(1752); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1477); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1474); + lookahead == ' ') ADVANCE(1473); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1470); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '=') ADVANCE(322); - if (lookahead == 'i') ADVANCE(385); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == 'i') ADVANCE(382); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '=') ADVANCE(322); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == 'i') ADVANCE(1872); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(1870); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '=') ADVANCE(1823); - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '=') ADVANCE(1821); + if (lookahead == '|') ADVANCE(1475); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\n') ADVANCE(1471); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2218); - if (lookahead == ':') ADVANCE(1740); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == ':') ADVANCE(1736); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 122: ADVANCE_MAP( - '\n', 1734, - '\r', 1734, - '!', 1746, - '#', 2215, - '(', 1588, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 1749, - '/', 1595, - ':', 1740, - ';', 1478, - '<', 1577, - '=', 683, - '>', 1507, - '?', 1744, - '@', 1508, - '[', 1492, - ']', 1493, - 'a', 423, - 'b', 399, + '\n', 1730, + '\r', 1730, + '!', 1742, + '#', 2213, + '(', 1584, + '*', 1536, + '+', 1601, + '-', 1518, + '.', 1745, + '/', 1591, + ':', 1736, + ';', 1474, + '<', 1573, + '=', 679, + '>', 1503, + '?', 1740, + '@', 1504, + '[', 1488, + ']', 1489, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, - '\t', 1735, - ' ', 1735, - 0x0b, 1734, - '\f', 1734, - ',', 1734, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, + '\t', 1731, + ' ', 1731, + 0x0b, 1730, + '\f', 1730, + ',', 1730, ); END_STATE(); case 123: ADVANCE_MAP( - '!', 1745, - '"', 1712, - '#', 2215, + '!', 1741, + '"', 1708, + '#', 2213, '$', 179, - '\'', 1715, - '.', 1747, - ';', 1743, - '?', 1744, - '`', 1719, + '\'', 1711, + '.', 1743, + ';', 1739, + '?', 1740, + '`', 1715, '\t', 123, ' ', 123, ); @@ -14666,15 +14684,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 124: ADVANCE_MAP( - '!', 1745, - '"', 1712, - '#', 2215, + '!', 1741, + '"', 1708, + '#', 2213, '$', 179, - '\'', 1715, - '.', 1747, - ';', 1743, - '?', 1744, - '`', 1719, + '\'', 1711, + '.', 1743, + ';', 1739, + '?', 1740, + '`', 1715, '\t', 123, ' ', 123, ); @@ -14685,643 +14703,622 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1757); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1753); END_STATE(); case 125: ADVANCE_MAP( - '!', 1745, - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '!', 1741, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 1753, - '?', 1744, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 1749, + '?', 1740, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(125); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 126: ADVANCE_MAP( - '!', 1745, - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '!', 1741, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 1753, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 1749, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 127: ADVANCE_MAP( - '!', 1745, - '#', 2215, - ',', 1734, - '.', 1750, - ';', 1743, - '?', 1744, - ']', 1493, - '\t', 1737, - ' ', 1737, + '!', 1741, + '#', 2213, + ',', 1730, + '.', 1746, + ';', 1739, + '?', 1740, + ']', 1489, + '\t', 1733, + ' ', 1733, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1738); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); END_STATE(); case 128: ADVANCE_MAP( - '!', 1745, - '#', 2215, - '.', 1749, - ':', 1740, - '>', 1506, - '?', 1744, - 'E', 332, - 'G', 332, - 'K', 332, - 'M', 332, - 'P', 332, - 'T', 332, - ']', 1493, - 'd', 343, - 'e', 331, - 'g', 331, - 'h', 454, - 'k', 331, - 'm', 334, - 'n', 472, - 'p', 331, - 's', 375, - 't', 331, - 'u', 472, - 'w', 408, - '}', 1526, - 0xb5, 472, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '!', 1741, + '#', 2213, + '.', 1745, + ':', 1736, + '>', 1502, + '?', 1740, + ']', 1489, + '}', 1522, + '\t', 1735, + ' ', 1735, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); END_STATE(); case 129: ADVANCE_MAP( - '!', 1745, - '#', 2215, - '.', 1750, - ':', 1490, - '>', 1506, - '?', 1744, - ']', 1493, - '}', 1526, - '\t', 1739, - ' ', 1739, + '!', 1741, + '#', 2213, + '.', 1746, + ':', 1486, + '>', 1502, + '?', 1740, + ']', 1489, + '}', 1522, + '\t', 1735, + ' ', 1735, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); END_STATE(); case 130: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1631, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1627, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 131: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1842, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1840, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 132: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1832, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1830, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 133: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 134: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1832, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1830, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 135: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1832, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1830, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 136: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'B', 1680, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1835, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1906, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'B', 1676, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1833, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1904, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 137: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 138: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 139: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 140: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1621, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1617, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 141: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 142: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1843, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1841, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 143: ADVANCE_MAP( - '!', 1820, - '#', 2215, - '(', 1588, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, - '=', 1821, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1893, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1906, - 's', 1926, - 'x', 1898, + '!', 1818, + '#', 2213, + '(', 1584, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, + '=', 1819, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1891, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1904, + 's', 1924, + 'x', 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 144: ADVANCE_MAP( '!', 319, - '#', 2215, - '$', 1497, - '*', 1539, - '+', 1604, - '-', 1521, - '.', 336, - '/', 1594, - '<', 1577, + '#', 2213, + '$', 1493, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 335, + '/', 1590, + '<', 1573, '=', 320, - '>', 1507, - 'a', 423, - 'b', 399, - 'e', 427, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, - 'o', 455, - 's', 489, - 'x', 434, + '>', 1503, + 'a', 420, + 'b', 396, + 'e', 424, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, + 'o', 451, + 's', 485, + 'x', 431, ); if (lookahead == '\t' || lookahead == ' ') SKIP(144); @@ -15329,715 +15326,715 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 145: ADVANCE_MAP( '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + '<', 1573, '=', 320, - '>', 1507, - 'a', 423, - 'b', 399, - 'e', 427, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, - 'o', 455, - 's', 489, - 'x', 434, + '>', 1503, + 'a', 420, + 'b', 396, + 'e', 424, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, + 'o', 451, + 's', 485, + 'x', 431, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); END_STATE(); case 146: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1588, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1584, + '+', 2025, '-', 307, - '.', 2025, - '0', 1651, - ';', 1743, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, + '.', 2023, + '0', 1647, + ';', 1739, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, '\t', 149, ' ', 149, - 'I', 2078, - 'i', 2078, + 'I', 2076, + 'i', 2076, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 147: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 1607, - '-', 1518, - '.', 710, - '0', 1655, - ':', 1490, - '<', 1163, - '>', 1506, - '@', 1508, - 'I', 823, - 'N', 819, - ']', 1493, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, - '\t', 1739, - ' ', 1739, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 1603, + '-', 1514, + '.', 706, + '0', 1651, + ':', 1486, + '<', 1159, + '>', 1502, + '@', 1504, + 'I', 819, + 'N', 815, + ']', 1489, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, + '\t', 1735, + ' ', 1735, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == ',') ADVANCE(1730); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 148: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 307, - '.', 2025, - '0', 1651, - ':', 1740, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, + '.', 2023, + '0', 1647, + ':', 1736, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 149: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 307, - '.', 2025, - '0', 1651, - ';', 1743, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, + '.', 2023, + '0', 1647, + ';', 1739, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, '\t', 149, ' ', 149, - 'I', 2078, - 'i', 2078, + 'I', 2076, + 'i', 2076, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 150: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 307, - '.', 2025, - '0', 1651, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, + '.', 2023, + '0', 1647, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 151: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 307, - '.', 2025, - ':', 1740, - 'N', 2074, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, + '.', 2023, + ':', 1736, + 'N', 2072, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 152: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 307, - '.', 2025, - 'N', 2074, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, + '.', 2023, + 'N', 2072, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 153: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 2109, - '-', 2108, - '.', 2110, - '0', 1652, - 'N', 2127, - '[', 1492, - ']', 1493, - '_', 2114, - '`', 1719, - 'f', 2117, - 'n', 2126, - 't', 2123, - '{', 1525, - '\t', 1739, - ' ', 1739, - 'I', 2133, - 'i', 2133, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + '+', 2107, + '-', 2106, + '.', 2108, + '0', 1648, + 'N', 2125, + '[', 1488, + ']', 1489, + '_', 2112, + '`', 1715, + 'f', 2115, + 'n', 2124, + 't', 2121, + '{', 1521, + '\t', 1735, + ' ', 1735, + 'I', 2131, + 'i', 2131, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == ',') ADVANCE(1730); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); END_STATE(); case 154: - if (lookahead == '"') ADVANCE(1712); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '\'') ADVANCE(1715); - if (lookahead == '(') ADVANCE(1494); - if (lookahead == '`') ADVANCE(1719); + if (lookahead == '"') ADVANCE(1708); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1494); + if (lookahead == '\'') ADVANCE(1711); + if (lookahead == '(') ADVANCE(1490); + if (lookahead == '`') ADVANCE(1715); if (lookahead == '\t' || lookahead == ' ') SKIP(154); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2014); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2012); END_STATE(); case 155: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1497, - '\'', 1715, - '(', 1494, - '+', 2027, - ',', 1734, + '"', 1708, + '#', 2213, + '$', 1493, + '\'', 1711, + '(', 1490, + '+', 2025, + ',', 1730, '-', 307, - '.', 2025, - '0', 1651, - 'N', 2074, - '[', 1492, - '_', 1528, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, - '}', 1526, - '\t', 1736, - ' ', 1736, - 'I', 2078, - 'i', 2078, + '.', 2023, + '0', 1647, + 'N', 2072, + '[', 1488, + '_', 1524, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, + '}', 1522, + '\t', 1732, + ' ', 1732, + 'I', 2076, + 'i', 2076, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1730); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 156: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1497, - '\'', 1715, - '(', 1494, - '+', 2027, + '"', 1708, + '#', 2213, + '$', 1493, + '\'', 1711, + '(', 1490, + '+', 2025, '-', 307, - '.', 2025, - '0', 1651, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'f', 2042, - 'n', 2070, - 't', 2057, - '{', 1525, + '.', 2023, + '0', 1647, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'f', 2040, + 'n', 2068, + 't', 2055, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(156); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == 'i') ADVANCE(2076); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); END_STATE(); case 157: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '$', 1497, - '\'', 1715, - '(', 1494, - '+', 2109, - '-', 2108, - '.', 2107, - '0', 1652, - 'N', 2127, - '[', 1492, - ']', 1493, - '_', 2114, - '`', 1719, - 'f', 2117, - 'n', 2126, - 't', 2123, - '{', 1525, - '\t', 1739, - ' ', 1739, - 'I', 2133, - 'i', 2133, + '"', 1708, + '#', 2213, + '$', 1493, + '\'', 1711, + '(', 1490, + '+', 2107, + '-', 2106, + '.', 2105, + '0', 1648, + 'N', 2125, + '[', 1488, + ']', 1489, + '_', 2112, + '`', 1715, + 'f', 2115, + 'n', 2124, + 't', 2121, + '{', 1521, + '\t', 1735, + ' ', 1735, + 'I', 2131, + 'i', 2131, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == ',') ADVANCE(1730); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); END_STATE(); case 158: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '(', 1588, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '(', 1584, + '+', 707, '-', 307, - '.', 727, - ':', 1490, - '>', 1506, - 'I', 823, - 'N', 819, - ']', 1493, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, - '\t', 1739, - ' ', 1739, + '.', 723, + ':', 1486, + '>', 1502, + 'I', 819, + 'N', 815, + ']', 1489, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, + '\t', 1735, + ' ', 1735, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 159: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 307, - '.', 727, - ':', 1740, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 723, + ':', 1736, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 160: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 1753, - '?', 1744, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 1749, + '?', 1740, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 161: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 1753, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 1749, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 162: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 727, - ':', 1740, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 723, + ':', 1736, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 163: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 727, - '=', 1756, - 'I', 1470, - 'N', 1465, - '_', 1401, - '`', 1719, - 'a', 1426, - 'c', 1402, - 'd', 1410, - 'e', 1433, - 'f', 1403, - 'i', 1400, - 'l', 1417, - 'm', 1406, - 'n', 1460, - 't', 1443, - 'u', 1449, - 'w', 1423, + '.', 723, + '=', 1752, + 'I', 1466, + 'N', 1461, + '_', 1397, + '`', 1715, + 'a', 1422, + 'c', 1398, + 'd', 1406, + 'e', 1429, + 'f', 1399, + 'i', 1396, + 'l', 1413, + 'm', 1402, + 'n', 1456, + 't', 1439, + 'u', 1445, + 'w', 1419, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1401); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1474); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1397); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 164: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, '-', 298, - '.', 727, - 'I', 823, - 'N', 819, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '.', 723, + 'I', 819, + 'N', 815, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 165: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, - '-', 1809, - '.', 1623, - 'E', 718, - 'G', 723, - 'I', 823, - 'K', 723, - 'M', 723, - 'N', 819, - 'P', 723, - 'T', 723, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 732, - 'e', 717, - 'f', 731, - 'g', 722, - 'h', 787, - 'i', 724, - 'k', 722, - 'l', 749, - 'm', 719, - 'n', 795, - 'p', 722, - 's', 750, - 't', 721, - 'u', 797, - 'w', 760, - 0xb5, 796, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, + '-', 1807, + '.', 1619, + 'E', 714, + 'G', 719, + 'I', 819, + 'K', 719, + 'M', 719, + 'N', 815, + 'P', 719, + 'T', 719, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 728, + 'e', 713, + 'f', 727, + 'g', 718, + 'h', 783, + 'i', 720, + 'k', 718, + 'l', 745, + 'm', 715, + 'n', 791, + 'p', 718, + 's', 746, + 't', 717, + 'u', 793, + 'w', 756, + 0xb5, 792, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == '^') ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 166: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, - '-', 1809, - '.', 727, - 'I', 823, - 'N', 819, - '[', 1692, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, + '-', 1807, + '.', 723, + 'I', 819, + 'N', 815, + '[', 1688, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); @@ -16046,478 +16043,478 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == '^') ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 167: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, - '-', 1809, - '.', 709, - 'E', 718, - 'G', 723, - 'I', 823, - 'K', 723, - 'M', 723, - 'N', 819, - 'P', 723, - 'T', 723, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 732, - 'e', 717, - 'f', 731, - 'g', 722, - 'h', 787, - 'i', 724, - 'k', 722, - 'l', 749, - 'm', 719, - 'n', 795, - 'p', 722, - 's', 750, - 't', 721, - 'u', 797, - 'w', 760, - 0xb5, 796, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, + '-', 1807, + '.', 705, + 'E', 714, + 'G', 719, + 'I', 819, + 'K', 719, + 'M', 719, + 'N', 815, + 'P', 719, + 'T', 719, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 728, + 'e', 713, + 'f', 727, + 'g', 718, + 'h', 783, + 'i', 720, + 'k', 718, + 'l', 745, + 'm', 715, + 'n', 791, + 'p', 718, + 's', 746, + 't', 717, + 'u', 793, + 'w', 756, + 0xb5, 792, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == '^') ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 168: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, - '-', 1809, - '.', 709, - 'E', 718, - 'G', 723, - 'I', 823, - 'K', 723, - 'M', 723, - 'N', 819, - 'P', 723, - 'T', 723, - '_', 729, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 732, - 'e', 717, - 'f', 731, - 'g', 722, - 'h', 787, - 'i', 724, - 'k', 722, - 'l', 749, - 'm', 719, - 'n', 795, - 'p', 722, - 's', 750, - 't', 721, - 'u', 797, - 'w', 760, - 0xb5, 796, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, + '-', 1807, + '.', 705, + 'E', 714, + 'G', 719, + 'I', 819, + 'K', 719, + 'M', 719, + 'N', 815, + 'P', 719, + 'T', 719, + '_', 725, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 728, + 'e', 713, + 'f', 727, + 'g', 718, + 'h', 783, + 'i', 720, + 'k', 718, + 'l', 745, + 'm', 715, + 'n', 791, + 'p', 718, + 's', 746, + 't', 717, + 'u', 793, + 'w', 756, + 0xb5, 792, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == '^') ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 169: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 711, - '-', 1809, - '.', 709, - 'E', 723, - 'G', 723, - 'I', 823, - 'K', 723, - 'M', 723, - 'N', 819, - 'P', 723, - 'T', 723, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 732, - 'e', 720, - 'f', 731, - 'g', 722, - 'h', 787, - 'i', 724, - 'k', 722, - 'l', 749, - 'm', 719, - 'n', 795, - 'p', 722, - 's', 750, - 't', 721, - 'u', 797, - 'w', 760, - 0xb5, 796, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 707, + '-', 1807, + '.', 705, + 'E', 719, + 'G', 719, + 'I', 819, + 'K', 719, + 'M', 719, + 'N', 815, + 'P', 719, + 'T', 719, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 728, + 'e', 716, + 'f', 727, + 'g', 718, + 'h', 783, + 'i', 720, + 'k', 718, + 'l', 745, + 'm', 715, + 'n', 791, + 'p', 718, + 's', 746, + 't', 717, + 'u', 793, + 'w', 756, + 0xb5, 792, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == '^') ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); case 170: ADVANCE_MAP( - '"', 1712, - '#', 2215, - '\'', 1715, - '+', 2166, - '-', 2165, - '.', 2164, - '>', 1506, - 'N', 2181, - '_', 2168, - '`', 1719, - 'f', 2171, - 'n', 2180, - 't', 2177, - '\t', 1739, - ' ', 1739, - 'I', 2187, - 'i', 2187, + '"', 1708, + '#', 2213, + '\'', 1711, + '+', 2164, + '-', 2163, + '.', 2162, + '>', 1502, + 'N', 2179, + '_', 2166, + '`', 1715, + 'f', 2169, + 'n', 2178, + 't', 2175, + '\t', 1735, + ' ', 1735, + 'I', 2185, + 'i', 2185, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2201); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2199); END_STATE(); case 171: - if (lookahead == '"') ADVANCE(1712); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '\'') ADVANCE(1715); - if (lookahead == '`') ADVANCE(1719); + if (lookahead == '"') ADVANCE(1708); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '\'') ADVANCE(1711); + if (lookahead == '`') ADVANCE(1715); if (lookahead == '\t' || lookahead == ' ') SKIP(171); END_STATE(); case 172: ADVANCE_MAP( - '"', 1712, - '#', 2218, - '$', 1499, - '\'', 1715, - '(', 1494, - '+', 862, - '-', 861, - '.', 863, - '0', 879, - ':', 1740, - 'N', 1039, - '[', 1492, - '_', 880, - '`', 1719, - 'f', 888, - 'n', 1028, - 't', 977, - '{', 1525, + '"', 1708, + '#', 2216, + '$', 1495, + '\'', 1711, + '(', 1490, + '+', 858, + '-', 857, + '.', 859, + '0', 875, + ':', 1736, + 'N', 1035, + '[', 1488, + '_', 876, + '`', 1715, + 'f', 884, + 'n', 1024, + 't', 973, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); + lookahead == 'i') ADVANCE(1040); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(886); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(882); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); END_STATE(); case 173: ADVANCE_MAP( - '"', 1712, - '#', 2218, - '$', 1499, - '\'', 1715, - '(', 1494, - '+', 862, - '-', 861, - '.', 863, - '0', 879, - 'N', 1039, - '[', 1492, - '_', 880, - '`', 1719, - 'f', 888, - 'n', 1028, - 't', 977, - '{', 1525, + '"', 1708, + '#', 2216, + '$', 1495, + '\'', 1711, + '(', 1490, + '+', 858, + '-', 857, + '.', 859, + '0', 875, + 'N', 1035, + '[', 1488, + '_', 876, + '`', 1715, + 'f', 884, + 'n', 1024, + 't', 973, + '{', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); + lookahead == 'i') ADVANCE(1040); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(886); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(882); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); END_STATE(); case 174: ADVANCE_MAP( - '"', 1712, - '#', 2218, - '$', 1499, - '\'', 1715, - '(', 1494, - '+', 862, - '-', 861, - '.', 863, - ':', 1740, - 'N', 1039, - '_', 880, - '`', 1719, - 'f', 888, - 'n', 1028, - 't', 977, + '"', 1708, + '#', 2216, + '$', 1495, + '\'', 1711, + '(', 1490, + '+', 858, + '-', 857, + '.', 859, + ':', 1736, + 'N', 1035, + '_', 876, + '`', 1715, + 'f', 884, + 'n', 1024, + 't', 973, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); + lookahead == 'i') ADVANCE(1040); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); END_STATE(); case 175: ADVANCE_MAP( - '"', 1712, - '#', 2218, - '$', 1499, - '\'', 1715, - '(', 1494, - '+', 862, - '-', 861, - '.', 863, - 'N', 1039, - '_', 880, - '`', 1719, - 'f', 888, - 'n', 1028, - 't', 977, + '"', 1708, + '#', 2216, + '$', 1495, + '\'', 1711, + '(', 1490, + '+', 858, + '-', 857, + '.', 859, + 'N', 1035, + '_', 876, + '`', 1715, + 'f', 884, + 'n', 1024, + 't', 973, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); + lookahead == 'i') ADVANCE(1040); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); END_STATE(); case 176: ADVANCE_MAP( - '"', 1712, - '#', 2218, - '\'', 1715, - '+', 862, - '-', 861, - '.', 880, - ':', 1740, - 'I', 1044, - 'N', 1039, - '_', 880, - '`', 1719, - 'a', 948, - 'c', 893, - 'd', 910, - 'e', 952, - 'f', 887, - 'i', 875, - 'l', 920, - 'm', 896, - 'n', 1028, - 't', 982, - 'u', 998, - 'w', 931, + '"', 1708, + '#', 2216, + '\'', 1711, + '+', 858, + '-', 857, + '.', 876, + ':', 1736, + 'I', 1040, + 'N', 1035, + '_', 876, + '`', 1715, + 'a', 944, + 'c', 889, + 'd', 906, + 'e', 948, + 'f', 883, + 'i', 871, + 'l', 916, + 'm', 892, + 'n', 1024, + 't', 978, + 'u', 994, + 'w', 927, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + lookahead == '^') ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 177: ADVANCE_MAP( - '"', 1712, - '#', 2218, - '\'', 1715, - '+', 862, - '-', 854, - '.', 880, - ':', 1740, - 'I', 1044, - 'N', 1039, - '_', 880, - '`', 1719, - 'a', 948, - 'c', 893, - 'd', 910, - 'e', 952, - 'f', 887, - 'i', 875, - 'l', 920, - 'm', 896, - 'n', 1028, - 't', 982, - 'u', 998, - 'w', 931, + '"', 1708, + '#', 2216, + '\'', 1711, + '+', 858, + '-', 850, + '.', 876, + ':', 1736, + 'I', 1040, + 'N', 1035, + '_', 876, + '`', 1715, + 'a', 944, + 'c', 889, + 'd', 906, + 'e', 948, + 'f', 883, + 'i', 871, + 'l', 916, + 'm', 892, + 'n', 1024, + 't', 978, + 'u', 994, + 'w', 927, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + lookahead == '^') ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 178: - if (lookahead == '"') ADVANCE(1712); - if (lookahead == '#') ADVANCE(1714); - if (lookahead == '\\') ADVANCE(515); + if (lookahead == '"') ADVANCE(1708); + if (lookahead == '#') ADVANCE(1710); + if (lookahead == '\\') ADVANCE(511); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1713); - if (lookahead != 0) ADVANCE(1714); + lookahead == ' ') ADVANCE(1709); + if (lookahead != 0) ADVANCE(1710); END_STATE(); case 179: - if (lookahead == '"') ADVANCE(1729); - if (lookahead == '\'') ADVANCE(1728); + if (lookahead == '"') ADVANCE(1725); + if (lookahead == '\'') ADVANCE(1724); END_STATE(); case 180: - if (lookahead == '"') ADVANCE(1730); - if (lookahead == '#') ADVANCE(1725); - if (lookahead == '(') ADVANCE(1494); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == '"') ADVANCE(1726); + if (lookahead == '#') ADVANCE(1721); + if (lookahead == '(') ADVANCE(1490); + if (lookahead == '\\') ADVANCE(506); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1724); - if (lookahead != 0) ADVANCE(1725); + lookahead == ' ') ADVANCE(1720); + if (lookahead != 0) ADVANCE(1721); END_STATE(); case 181: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(1631); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(1627); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 182: ADVANCE_MAP( - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1630, - ']', 1493, - '_', 1971, - '}', 1526, - '\t', 1739, - ' ', 1739, - '+', 1965, - '-', 1965, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1626, + ']', 1489, + '_', 1969, + '}', 1522, + '\t', 1735, + ' ', 1735, + '+', 1963, + '-', 1963, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16525,42 +16522,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 183: ADVANCE_MAP( - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1999, - '_', 2002, - '}', 1526, - '\t', 1739, - ' ', 1739, - '+', 1988, - '-', 1988, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1997, + '_', 2000, + '}', 1522, + '\t', 1735, + ' ', 1735, + '+', 1986, + '-', 1986, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2011); END_STATE(); case 184: ADVANCE_MAP( - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1972, - ']', 1493, - '_', 1971, - '\t', 1739, - ' ', 1739, - '+', 1965, - '-', 1965, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1970, + ']', 1489, + '_', 1969, + '\t', 1735, + ' ', 1735, + '+', 1963, + '-', 1963, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16568,24 +16565,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 185: ADVANCE_MAP( - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1963, - ']', 1493, - '_', 1971, - '\t', 1739, - ' ', 1739, - '+', 1965, - '-', 1965, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1961, + ']', 1489, + '_', 1969, + '\t', 1735, + ' ', 1735, + '+', 1963, + '-', 1963, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16593,136 +16590,136 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 186: ADVANCE_MAP( - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1629, - '_', 2002, - '}', 1526, - '\t', 1739, - ' ', 1739, - '+', 1988, - '-', 1988, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1625, + '_', 2000, + '}', 1522, + '\t', 1735, + ' ', 1735, + '+', 1986, + '-', 1986, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2011); END_STATE(); case 187: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(1842); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(1840); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); case 188: ADVANCE_MAP( - '#', 2215, - '$', 1497, - '(', 1588, - '.', 1625, - '[', 1692, - ']', 1493, - '_', 1971, - '}', 1526, - '\t', 1739, - ' ', 1739, - '+', 1965, - '-', 1965, + '#', 2213, + '$', 1493, + '(', 1584, + '.', 1621, + '[', 1688, + ']', 1489, + '_', 1969, + '}', 1522, + '\t', 1735, + ' ', 1735, + '+', 1963, + '-', 1963, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 189: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '.') ADVANCE(336); - if (lookahead == ']') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '.') ADVANCE(335); + if (lookahead == ']') ADVANCE(1489); if (lookahead == '\t' || lookahead == ' ') SKIP(189); if (lookahead == '+' || lookahead == '-') ADVANCE(313); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || lookahead == '-') ADVANCE(313); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '.') ADVANCE(335); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || lookahead == '-') ADVANCE(313); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == ':') ADVANCE(1740); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == ':') ADVANCE(1736); if (lookahead == '\t' || lookahead == ' ') SKIP(192); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 193: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1622, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1526, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1618, + 'E', 1965, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + 'd', 1974, + 'e', 1964, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + '}', 1522, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16730,40 +16727,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 194: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1622, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1618, + 'E', 1965, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + 'd', 1974, + 'e', 1964, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16771,56 +16768,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 195: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1622, - 'E', 1994, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - 'd', 2003, - 'e', 1993, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - '}', 1526, - 0xb5, 2010, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1618, + 'E', 1992, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + 'd', 2001, + 'e', 1991, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + '}', 1522, + 0xb5, 2008, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 196: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1622, - ']', 1493, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1618, + ']', 1489, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16828,21 +16825,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 197: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1622, - ']', 1493, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1618, + ']', 1489, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16850,37 +16847,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 198: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1622, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 2000, - 'e', 2000, + '#', 2213, + '(', 1584, + '.', 1618, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1998, + 'e', 1998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 199: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1621, - ']', 1493, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1617, + ']', 1489, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16888,58 +16885,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 200: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1621, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 2000, - 'e', 2000, + '#', 2213, + '(', 1584, + '.', 1617, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1998, + 'e', 1998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 201: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - '_', 1971, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1526, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1960, + 'E', 1965, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + '_', 1969, + 'd', 1974, + 'e', 1964, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + '}', 1522, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16948,42 +16945,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 202: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - '_', 1971, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1960, + 'E', 1965, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + '_', 1969, + 'd', 1974, + 'e', 1964, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16992,41 +16989,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 203: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1526, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1960, + 'E', 1965, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + 'd', 1974, + 'e', 1964, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + '}', 1522, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17034,40 +17031,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 204: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1960, + 'E', 1965, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + 'd', 1974, + 'e', 1964, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17075,41 +17072,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 205: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1526, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1960, + 'E', 1967, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + 'd', 1974, + 'e', 1966, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + '}', 1522, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17117,40 +17114,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 206: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 1493, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1960, + 'E', 1967, + 'G', 1967, + 'K', 1967, + 'M', 1967, + 'P', 1967, + 'T', 1967, + ']', 1489, + 'd', 1974, + 'e', 1966, + 'g', 1966, + 'h', 1980, + 'k', 1966, + 'm', 1968, + 'n', 1981, + 'p', 1966, + 's', 1977, + 't', 1966, + 'u', 1981, + 'w', 1978, + 0xb5, 1981, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17158,24 +17155,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 207: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - ']', 1493, - '_', 1971, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1960, + ']', 1489, + '_', 1969, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17184,23 +17181,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 208: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - ']', 1493, - '_', 1971, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1960, + ']', 1489, + '_', 1969, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17209,22 +17206,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 209: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - ']', 1493, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1960, + ']', 1489, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17232,18 +17229,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 210: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == ']') ADVANCE(1493); - if (lookahead == '}') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(1960); + if (lookahead == ']') ADVANCE(1489); + if (lookahead == '}') ADVANCE(1522); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17251,21 +17248,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 211: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1962, - ']', 1493, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1960, + ']', 1489, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17273,17 +17270,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 212: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == ']') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(1960); + if (lookahead == ']') ADVANCE(1489); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17291,23 +17288,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 213: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1964, - ']', 1493, - '_', 1971, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1962, + ']', 1489, + '_', 1969, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17316,21 +17313,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 214: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1964, - ']', 1493, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1962, + ']', 1489, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17338,17 +17335,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 215: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(1964); - if (lookahead == ']') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(1962); + if (lookahead == ']') ADVANCE(1489); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17356,21 +17353,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 216: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1624, - ']', 1493, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + '.', 1620, + ']', 1489, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17378,169 +17375,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 217: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1987, - 'E', 1994, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - '_', 2002, - 'd', 2003, - 'e', 1993, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - '}', 1526, - 0xb5, 2010, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1985, + 'E', 1992, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + '_', 2000, + 'd', 2001, + 'e', 1991, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + '}', 1522, + 0xb5, 2008, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 218: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1987, - 'E', 1994, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - 'd', 2003, - 'e', 1993, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - '}', 1526, - 0xb5, 2010, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1985, + 'E', 1992, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + 'd', 2001, + 'e', 1991, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + '}', 1522, + 0xb5, 2008, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 219: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1987, - 'E', 1996, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - 'd', 2003, - 'e', 1995, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - '}', 1526, - 0xb5, 2010, - '\t', 1739, - ' ', 1739, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + '.', 1985, + 'E', 1994, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + 'd', 2001, + 'e', 1993, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + '}', 1522, + 0xb5, 2008, + '\t', 1735, + ' ', 1735, + 'B', 1676, + 'b', 1676, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 220: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1987, - '_', 2002, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 2000, - 'e', 2000, + '#', 2213, + '(', 1584, + '.', 1985, + '_', 2000, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1998, + 'e', 1998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 221: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '.', 1987, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 2000, - 'e', 2000, + '#', 2213, + '(', 1584, + '.', 1985, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1998, + 'e', 1998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 222: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(1987); - if (lookahead == '}') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(1985); + if (lookahead == '}') ADVANCE(1522); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 223: ADVANCE_MAP( - '#', 2215, - '(', 1588, - ']', 1493, - '_', 1971, - '\t', 1739, - ' ', 1739, - 'E', 1974, - 'e', 1974, + '#', 2213, + '(', 1584, + ']', 1489, + '_', 1969, + '\t', 1735, + ' ', 1735, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17549,17 +17546,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 224: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == ']') ADVANCE(1493); - if (lookahead == '}') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == ']') ADVANCE(1489); + if (lookahead == '}') ADVANCE(1522); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17567,18 +17564,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 225: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == ']') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == ']') ADVANCE(1489); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1974); + lookahead == 'e') ADVANCE(1972); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17586,678 +17583,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 226: ADVANCE_MAP( - '#', 2215, - '(', 1588, - '_', 2002, - '}', 1526, - '\t', 1739, - ' ', 1739, - 'E', 2000, - 'e', 2000, + '#', 2213, + '(', 1584, + '_', 2000, + '}', 1522, + '\t', 1735, + ' ', 1735, + 'E', 1998, + 'e', 1998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 227: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 228: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '}') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '}') ADVANCE(1522); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); + lookahead == 'e') ADVANCE(1998); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 229: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '}') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '}') ADVANCE(1522); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == ',') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 230: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 231: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1588); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1584); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 232: ADVANCE_MAP( - '#', 2215, - '(', 1494, - '-', 1810, - '.', 1622, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '[', 1492, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, + '#', 2213, + '(', 1490, + '-', 1808, + '.', 1618, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '[', 1488, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 233: ADVANCE_MAP( - '#', 2215, - '(', 1494, - '-', 1810, - '.', 1817, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '[', 1492, - '_', 1840, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, + '#', 2213, + '(', 1490, + '-', 1808, + '.', 1815, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '[', 1488, + '_', 1838, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 234: ADVANCE_MAP( - '#', 2215, - '(', 1494, - '-', 1810, - '.', 1817, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '[', 1492, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, + '#', 2213, + '(', 1490, + '-', 1808, + '.', 1815, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '[', 1488, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 235: ADVANCE_MAP( - '#', 2215, - '(', 1494, - '-', 1810, - '.', 1817, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '[', 1492, - 'd', 1851, - 'e', 1836, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 0xb5, 1918, + '#', 2213, + '(', 1490, + '-', 1808, + '.', 1815, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '[', 1488, + 'd', 1849, + 'e', 1834, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 236: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1494); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '[') ADVANCE(1492); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1490); + if (lookahead == '-') ADVANCE(1808); + if (lookahead == '[') ADVANCE(1488); if (lookahead == '\t' || lookahead == ' ') SKIP(238); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 237: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1494); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1490); if (lookahead == '-') ADVANCE(296); - if (lookahead == '=') ADVANCE(1756); - if (lookahead == '[') ADVANCE(1492); + if (lookahead == '=') ADVANCE(1752); + if (lookahead == '[') ADVANCE(1488); if (lookahead == '\t' || lookahead == ' ') SKIP(238); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1470); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '(') ADVANCE(1494); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '(') ADVANCE(1490); if (lookahead == '-') ADVANCE(296); - if (lookahead == '[') ADVANCE(1492); + if (lookahead == '[') ADVANCE(1488); if (lookahead == '\t' || lookahead == ' ') SKIP(238); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == ',') ADVANCE(1496); - if (lookahead == ']') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == ',') ADVANCE(1492); + if (lookahead == ']') ADVANCE(1489); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1693); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1689); END_STATE(); case 240: ADVANCE_MAP( - '#', 2215, - '.', 1622, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '{', 1525, - 0xb5, 1918, + '#', 2213, + '.', 1618, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 241: ADVANCE_MAP( - '#', 2215, - '.', 1622, - 'E', 1994, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - 'd', 2003, - 'e', 1993, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - 0xb5, 2010, + '#', 2213, + '.', 1618, + 'E', 1992, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + 'd', 2001, + 'e', 1991, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + 0xb5, 2008, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 242: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1622); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1618); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1622); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1618); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'e') ADVANCE(1998); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1747); - if (lookahead == 'i') ADVANCE(1383); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1743); + if (lookahead == 'i') ADVANCE(1379); if (lookahead == '\t' || lookahead == ' ') SKIP(244); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1631); - if (lookahead == '_') ADVANCE(1840); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1627); + if (lookahead == '_') ADVANCE(1838); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 246: ADVANCE_MAP( - '#', 2215, - '.', 1817, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '{', 1525, - 0xb5, 1918, + '#', 2213, + '.', 1815, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 247: ADVANCE_MAP( - '#', 2215, - '.', 1817, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1833, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '{', 1525, - 0xb5, 1918, + '#', 2213, + '.', 1815, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1831, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 248: ADVANCE_MAP( - '#', 2215, - '.', 1817, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1836, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '{', 1525, - 0xb5, 1918, + '#', 2213, + '.', 1815, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1834, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '{', 1521, + 0xb5, 1916, ); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 249: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1815); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1621); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1617); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1621); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1617); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'e') ADVANCE(1998); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(335); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || lookahead == '-') ADVANCE(313); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1999); - if (lookahead == '_') ADVANCE(2002); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1997); + if (lookahead == '_') ADVANCE(2000); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == '-') ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1629); - if (lookahead == '_') ADVANCE(2002); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1625); + if (lookahead == '_') ADVANCE(2000); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == '-') ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1842); - if (lookahead == '_') ADVANCE(1840); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1840); + if (lookahead == '_') ADVANCE(1838); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 258: ADVANCE_MAP( - '#', 2215, - '.', 1987, - 'E', 1994, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - '_', 2002, - 'd', 2003, - 'e', 1993, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - 0xb5, 2010, + '#', 2213, + '.', 1985, + 'E', 1992, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + '_', 2000, + 'd', 2001, + 'e', 1991, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + 0xb5, 2008, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 259: ADVANCE_MAP( - '#', 2215, - '.', 1987, - 'E', 1994, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - 'd', 2003, - 'e', 1993, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - 0xb5, 2010, + '#', 2213, + '.', 1985, + 'E', 1992, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + 'd', 2001, + 'e', 1991, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + 0xb5, 2008, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 260: ADVANCE_MAP( - '#', 2215, - '.', 1987, - 'E', 1996, - 'G', 1996, - 'K', 1996, - 'M', 1996, - 'P', 1996, - 'T', 1996, - 'd', 2003, - 'e', 1995, - 'g', 1995, - 'h', 2009, - 'k', 1995, - 'm', 1997, - 'n', 2010, - 'p', 1995, - 's', 2006, - 't', 1995, - 'u', 2010, - 'w', 2007, - 0xb5, 2010, + '#', 2213, + '.', 1985, + 'E', 1994, + 'G', 1994, + 'K', 1994, + 'M', 1994, + 'P', 1994, + 'T', 1994, + 'd', 2001, + 'e', 1993, + 'g', 1993, + 'h', 2007, + 'k', 1993, + 'm', 1995, + 'n', 2008, + 'p', 1993, + 's', 2004, + 't', 1993, + 'u', 2008, + 'w', 2005, + 0xb5, 2008, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 261: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1987); - if (lookahead == '_') ADVANCE(2002); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1985); + if (lookahead == '_') ADVANCE(2000); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'e') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1987); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1985); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'e') ADVANCE(1998); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(1987); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(1985); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 264: ADVANCE_MAP( - '#', 2215, - ':', 1740, - 'a', 415, - 'c', 443, - 'd', 373, - 'e', 521, - 'm', 440, - 'u', 478, + '#', 2213, + ':', 1736, + 'a', 412, + 'c', 440, + 'd', 371, + 'e', 517, + 'm', 437, + 'u', 474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(264); END_STATE(); case 265: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == ':') ADVANCE(1740); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == ':') ADVANCE(1736); if (lookahead == '\t' || lookahead == ' ') SKIP(265); END_STATE(); case 266: ADVANCE_MAP( - '#', 2215, - '>', 1506, - '[', 1492, - ']', 1493, - 'c', 1373, - 'f', 1392, - 'i', 1381, - 'o', 1384, - 'v', 1369, - '\t', 1739, - ' ', 1739, + '#', 2213, + '>', 1502, + '[', 1488, + ']', 1489, + 'c', 1369, + 'f', 1388, + 'i', 1377, + 'o', 1380, + 'v', 1365, + '\t', 1735, + ' ', 1735, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -18265,73 +18262,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1395); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1391); END_STATE(); case 267: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '_') ADVANCE(1840); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '_') ADVANCE(1838); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '_') ADVANCE(2002); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '_') ADVANCE(2000); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'e') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '{') ADVANCE(1525); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '{') ADVANCE(1521); if (lookahead == '\t' || lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '\t' || lookahead == ' ') SKIP(271); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '\t' || lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2000); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'e') ADVANCE(1998); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1488); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1484); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1524); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1520); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2218); - if (lookahead == '$') ADVANCE(1500); - if (lookahead == ':') ADVANCE(1740); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1496); + if (lookahead == ':') ADVANCE(1736); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '!' || @@ -18342,3704 +18339,3694 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1065); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == '^') ADVANCE(1061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 276: ADVANCE_MAP( - '#', 2218, - ':', 1740, - 'a', 948, - 'c', 969, - 'd', 910, - 'e', 1037, - 'm', 970, - 'u', 998, + '#', 2216, + ':', 1736, + 'a', 944, + 'c', 965, + 'd', 906, + 'e', 1033, + 'm', 966, + 'u', 994, ); if (lookahead == '\t' || lookahead == ' ') SKIP(264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 277: - if (lookahead == '#') ADVANCE(1727); - if (lookahead == '\'') ADVANCE(1718); - if (lookahead == '(') ADVANCE(1494); + if (lookahead == '#') ADVANCE(1723); + if (lookahead == '\'') ADVANCE(1714); + if (lookahead == '(') ADVANCE(1490); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1726); - if (lookahead != 0) ADVANCE(1727); + lookahead == ' ') ADVANCE(1722); + if (lookahead != 0) ADVANCE(1723); END_STATE(); case 278: - if (lookahead == '+') ADVANCE(377); - if (lookahead == '>') ADVANCE(1766); - if (lookahead == 'r') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(491); + if (lookahead == '+') ADVANCE(374); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'u') ADVANCE(487); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1762); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(1760); END_STATE(); case 280: ADVANCE_MAP( - '+', 433, - '>', 1764, - 'I', 538, - 'i', 538, - 'n', 363, - 'r', 456, - 'x', 448, - 'B', 1680, - 'b', 1680, + '+', 430, + '>', 1762, + 'I', 534, + 'i', 534, + 'n', 361, + 'r', 452, + 'x', 445, + 'B', 1676, + 'b', 1676, ); END_STATE(); case 281: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'l') ADVANCE(476); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(456); + if (lookahead == '+') ADVANCE(430); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'l') ADVANCE(472); + if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 282: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'l') ADVANCE(476); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(456); - if (lookahead == 'x') ADVANCE(448); + if (lookahead == '+') ADVANCE(430); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'l') ADVANCE(472); + if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'r') ADVANCE(452); + if (lookahead == 'x') ADVANCE(445); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(456); + if (lookahead == '+') ADVANCE(430); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(456); - if (lookahead == 'x') ADVANCE(448); + if (lookahead == '+') ADVANCE(430); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'r') ADVANCE(452); + if (lookahead == 'x') ADVANCE(445); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '>') ADVANCE(1760); + if (lookahead == '+') ADVANCE(429); + if (lookahead == '>') ADVANCE(1758); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(441); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(461); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(441); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'r') ADVANCE(461); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'r') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(496); + if (lookahead == '+') ADVANCE(376); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'u') ADVANCE(492); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'u') ADVANCE(496); + if (lookahead == '+') ADVANCE(376); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'u') ADVANCE(492); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(446); - if (lookahead == '>') ADVANCE(530); + if (lookahead == '+') ADVANCE(443); + if (lookahead == '>') ADVANCE(526); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(382); - if (lookahead == '>') ADVANCE(532); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(528); END_STATE(); case 292: - if (lookahead == '-') ADVANCE(354); + if (lookahead == '-') ADVANCE(352); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(383); + if (lookahead == '-') ADVANCE(380); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(383); + if (lookahead == '-') ADVANCE(380); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1587); + lookahead == ' ') ADVANCE(1583); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '-') ADVANCE(512); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(1511); + if (lookahead == '-') ADVANCE(1507); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '>') ADVANCE(1491); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '>') ADVANCE(1487); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == 'i') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '.') ADVANCE(335); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(334); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == 'i') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '>') ADVANCE(1491); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '>') ADVANCE(1487); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(436); + if (lookahead == '-') ADVANCE(433); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(494); + if (lookahead == '-') ADVANCE(490); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(564); + if (lookahead == '-') ADVANCE(560); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(517); + if (lookahead == '-') ADVANCE(513); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(518); + if (lookahead == '-') ADVANCE(514); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(453); + if (lookahead == '-') ADVANCE(450); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(519); + if (lookahead == '-') ADVANCE(515); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(335); + if (lookahead == '.') ADVANCE(334); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == 'i') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(335); + if (lookahead == '.') ADVANCE(334); if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1534); - if (lookahead == '_') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1509); + if (lookahead == '.') ADVANCE(1505); END_STATE(); case 311: if (lookahead == '.') ADVANCE(310); END_STATE(); case 312: if (lookahead == '.') ADVANCE(310); - if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '_') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(337); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 314: - if (lookahead == '2') ADVANCE(552); + if (lookahead == '2') ADVANCE(548); if (lookahead == '0' || - lookahead == '1') ADVANCE(558); + lookahead == '1') ADVANCE(554); END_STATE(); case 315: - if (lookahead == ':') ADVANCE(559); + if (lookahead == ':') ADVANCE(555); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(560); + if (lookahead == ':') ADVANCE(556); END_STATE(); case 317: - if (lookahead == ';') ADVANCE(1743); + if (lookahead == ';') ADVANCE(1739); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(317); END_STATE(); case 318: - if (lookahead == '=') ADVANCE(1161); - if (lookahead == '~') ADVANCE(1143); + if (lookahead == '=') ADVANCE(1157); + if (lookahead == '~') ADVANCE(1139); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1581); + if (lookahead == '=') ADVANCE(1571); + if (lookahead == '~') ADVANCE(1577); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1574); - if (lookahead == '>') ADVANCE(1527); - if (lookahead == '~') ADVANCE(1580); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '>') ADVANCE(1523); + if (lookahead == '~') ADVANCE(1576); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1574); - if (lookahead == '~') ADVANCE(1580); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1576); END_STATE(); case 322: - if (lookahead == '>') ADVANCE(1527); + if (lookahead == '>') ADVANCE(1523); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1774); + if (lookahead == '>') ADVANCE(1772); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1772); + if (lookahead == '>') ADVANCE(1770); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1768); + if (lookahead == '>') ADVANCE(1766); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1770); + if (lookahead == '>') ADVANCE(1768); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '>') ADVANCE(525); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(531); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(533); + if (lookahead == '>') ADVANCE(529); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(534); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 331: - if (lookahead == 'I') ADVANCE(538); - if (lookahead == 'i') ADVANCE(538); + if (lookahead == 'I') ADVANCE(534); + if (lookahead == 'i') ADVANCE(534); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(538); - if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'I') ADVANCE(534); + if (lookahead == 'i') ADVANCE(354); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(538); - if (lookahead == 'i') ADVANCE(422); - if (lookahead == 'o') ADVANCE(361); - if (lookahead == 's') ADVANCE(1685); + if (lookahead == 'I') ADVANCE(534); + if (lookahead == 'i') ADVANCE(419); + if (lookahead == 'o') ADVANCE(359); + if (lookahead == 's') ADVANCE(1681); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1676); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(538); - if (lookahead == 'i') ADVANCE(422); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + if (lookahead == '_') ADVANCE(334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); case 335: if (lookahead == '_') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 338: if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 340: - if (lookahead == 'a') ADVANCE(473); + if (lookahead == 'a') ADVANCE(469); + if (lookahead == 'r') ADVANCE(1681); END_STATE(); case 341: - if (lookahead == 'a') ADVANCE(473); - if (lookahead == 'r') ADVANCE(1685); + if (lookahead == 'a') ADVANCE(411); END_STATE(); case 342: - if (lookahead == 'a') ADVANCE(414); + if (lookahead == 'a') ADVANCE(519); + if (lookahead == 'e') ADVANCE(384); END_STATE(); case 343: - if (lookahead == 'a') ADVANCE(523); + if (lookahead == 'a') ADVANCE(460); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(523); - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'a') ADVANCE(470); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(464); + if (lookahead == 'a') ADVANCE(417); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(474); + if (lookahead == 'a') ADVANCE(417); + if (lookahead == 'i') ADVANCE(425); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'a') ADVANCE(467); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(420); - if (lookahead == 'i') ADVANCE(428); + if (lookahead == 'a') ADVANCE(481); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'a') ADVANCE(498); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(485); + if (lookahead == 'a') ADVANCE(500); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(502); + if (lookahead == 'a') ADVANCE(499); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'a') ADVANCE(426); + if (lookahead == 'o') ADVANCE(454); + if (lookahead == 's') ADVANCE(387); + if (lookahead == 'x') ADVANCE(439); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(503); + if (lookahead == 'a') ADVANCE(466); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(429); - if (lookahead == 'o') ADVANCE(458); - if (lookahead == 's') ADVANCE(390); - if (lookahead == 'x') ADVANCE(442); + if (lookahead == 'b') ADVANCE(1676); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'c') ADVANCE(1681); END_STATE(); case 356: - if (lookahead == 'b') ADVANCE(1680); + if (lookahead == 'c') ADVANCE(386); END_STATE(); case 357: - if (lookahead == 'c') ADVANCE(1685); + if (lookahead == 'c') ADVANCE(381); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(1550); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(384); + if (lookahead == 'd') ADVANCE(1594); END_STATE(); case 360: - if (lookahead == 'd') ADVANCE(1554); + if (lookahead == 'd') ADVANCE(1608); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1598); + if (lookahead == 'd') ADVANCE(471); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1612); + if (lookahead == 'd') ADVANCE(509); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(475); + if (lookahead == 'd') ADVANCE(477); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(513); + if (lookahead == 'e') ADVANCE(1062); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(481); + if (lookahead == 'e') ADVANCE(1086); END_STATE(); case 366: - if (lookahead == 'e') ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1107); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1090); + if (lookahead == 'e') ADVANCE(1110); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1111); + if (lookahead == 'e') ADVANCE(1071); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1114); + if (lookahead == 'e') ADVANCE(1579); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1075); + if (lookahead == 'e') ADVANCE(1581); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1583); + if (lookahead == 'e') ADVANCE(384); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1501); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'e') ADVANCE(355); + if (lookahead == 't') ADVANCE(343); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(1505); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(357); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(357); - if (lookahead == 't') ADVANCE(345); + if (lookahead == 'e') ADVANCE(328); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'e') ADVANCE(459); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(466); + if (lookahead == 'e') ADVANCE(461); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(428); + if (lookahead == 'h') ADVANCE(344); + if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'l') ADVANCE(403); + if (lookahead == 's') ADVANCE(505); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(465); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(467); + if (lookahead == 'f') ADVANCE(1083); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(431); - if (lookahead == 'h') ADVANCE(346); - if (lookahead == 'i') ADVANCE(425); - if (lookahead == 'l') ADVANCE(406); - if (lookahead == 's') ADVANCE(509); + if (lookahead == 'f') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1101); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'f') ADVANCE(835); END_STATE(); case 385: - if (lookahead == 'f') ADVANCE(1087); + if (lookahead == 'f') ADVANCE(1500); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1087); - if (lookahead == 'n') ADVANCE(1105); + if (lookahead == 'h') ADVANCE(1092); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(839); + if (lookahead == 'h') ADVANCE(409); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(1504); + if (lookahead == 'h') ADVANCE(1566); END_STATE(); case 389: - if (lookahead == 'h') ADVANCE(1096); + if (lookahead == 'h') ADVANCE(1562); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'h') ADVANCE(1568); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(1570); + if (lookahead == 'h') ADVANCE(1564); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1566); + if (lookahead == 'h') ADVANCE(1497); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1572); + if (lookahead == 'h') ADVANCE(1498); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1568); + if (lookahead == 'h') ADVANCE(300); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1501); + if (lookahead == 'i') ADVANCE(406); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1502); + if (lookahead == 'i') ADVANCE(480); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'i') ADVANCE(425); END_STATE(); case 398: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'i') ADVANCE(488); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(484); + if (lookahead == 'i') ADVANCE(489); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(428); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(492); + if (lookahead == 'i') ADVANCE(494); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(493); + if (lookahead == 'i') ADVANCE(495); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(497); + if (lookahead == 'i') ADVANCE(407); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(498); + if (lookahead == 'i') ADVANCE(347); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(499); + if (lookahead == 'k') ADVANCE(1681); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'k') ADVANCE(369); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(349); + if (lookahead == 'k') ADVANCE(370); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1685); + if (lookahead == 'l') ADVANCE(1113); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(371); + if (lookahead == 'l') ADVANCE(1604); + if (lookahead == 'r') ADVANCE(1606); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'l') ADVANCE(518); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1117); + if (lookahead == 'l') ADVANCE(410); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1608); - if (lookahead == 'r') ADVANCE(1610); + if (lookahead == 'l') ADVANCE(404); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(522); + if (lookahead == 'l') ADVANCE(408); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(413); + if (lookahead == 'l') ADVANCE(415); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'l') ADVANCE(305); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'l') ADVANCE(368); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(418); + if (lookahead == 'l') ADVANCE(473); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'n') ADVANCE(1068); END_STATE(); case 419: - if (lookahead == 'l') ADVANCE(370); + if (lookahead == 'n') ADVANCE(1681); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); END_STATE(); case 420: - if (lookahead == 'l') ADVANCE(477); + if (lookahead == 'n') ADVANCE(358); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1101); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + if (lookahead == 'n') ADVANCE(1556); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'n') ADVANCE(1499); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1105); + if (lookahead == 'n') ADVANCE(361); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(341); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(1503); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'n') ADVANCE(475); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(342); + if (lookahead == 'n') ADVANCE(363); END_STATE(); case 429: - if (lookahead == 'n') ADVANCE(362); + if (lookahead == 'o') ADVANCE(507); END_STATE(); case 430: - if (lookahead == 'n') ADVANCE(479); + if (lookahead == 'o') ADVANCE(323); END_STATE(); case 431: - if (lookahead == 'n') ADVANCE(365); + if (lookahead == 'o') ADVANCE(453); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'o') ADVANCE(385); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(323); + if (lookahead == 'o') ADVANCE(447); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(457); + if (lookahead == 'o') ADVANCE(486); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(388); + if (lookahead == 'o') ADVANCE(486); + if (lookahead == 's') ADVANCE(1681); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'o') ADVANCE(359); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(490); + if (lookahead == 'o') ADVANCE(362); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(490); - if (lookahead == 's') ADVANCE(1685); + if (lookahead == 'o') ADVANCE(327); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'o') ADVANCE(427); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(327); + if (lookahead == 'o') ADVANCE(483); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(459); + if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'u') ADVANCE(413); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(540); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(430); + if (lookahead == 'o') ADVANCE(510); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'o') ADVANCE(465); END_STATE(); case 445: - if (lookahead == 'o') ADVANCE(488); - if (lookahead == 'u') ADVANCE(416); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(544); + if (lookahead == 'p') ADVANCE(444); + if (lookahead == 't') ADVANCE(377); END_STATE(); case 446: - if (lookahead == 'o') ADVANCE(514); + if (lookahead == 'p') ADVANCE(372); END_STATE(); case 447: - if (lookahead == 'o') ADVANCE(469); + if (lookahead == 'p') ADVANCE(497); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(447); - if (lookahead == 't') ADVANCE(380); + if (lookahead == 'p') ADVANCE(349); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(374); + if (lookahead == 'p') ADVANCE(350); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(501); + if (lookahead == 'p') ADVANCE(351); END_STATE(); case 451: - if (lookahead == 'p') ADVANCE(351); + if (lookahead == 'r') ADVANCE(1554); END_STATE(); case 452: - if (lookahead == 'p') ADVANCE(352); + if (lookahead == 'r') ADVANCE(285); END_STATE(); case 453: - if (lookahead == 'p') ADVANCE(353); + if (lookahead == 'r') ADVANCE(1552); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1685); + if (lookahead == 'r') ADVANCE(1612); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1610); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(285); + if (lookahead == 'r') ADVANCE(508); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(1556); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(1616); + if (lookahead == 'r') ADVANCE(326); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(1614); + if (lookahead == 'r') ADVANCE(418); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(512); + if (lookahead == 'r') ADVANCE(503); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'r') ADVANCE(423); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(326); + if (lookahead == 'r') ADVANCE(458); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(421); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(507); + if (lookahead == 'r') ADVANCE(330); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(426); + if (lookahead == 'r') ADVANCE(482); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(462); + if (lookahead == 'r') ADVANCE(504); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(468); + if (lookahead == 's') ADVANCE(675); END_STATE(); case 468: - if (lookahead == 'r') ADVANCE(330); + if (lookahead == 's') ADVANCE(1681); END_STATE(); case 469: - if (lookahead == 'r') ADVANCE(486); + if (lookahead == 's') ADVANCE(1558); END_STATE(); case 470: - if (lookahead == 'r') ADVANCE(508); + if (lookahead == 's') ADVANCE(1560); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(679); + if (lookahead == 's') ADVANCE(295); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(1685); + if (lookahead == 's') ADVANCE(365); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(1562); + if (lookahead == 's') ADVANCE(367); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(1564); + if (lookahead == 's') ADVANCE(364); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(295); + if (lookahead == 's') ADVANCE(479); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(303); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(369); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(366); + if (lookahead == 's') ADVANCE(306); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(483); + if (lookahead == 't') ADVANCE(687); END_STATE(); case 480: - if (lookahead == 's') ADVANCE(303); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 481: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 482: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 't') ADVANCE(671); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(691); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(549); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(358); + if (lookahead == 't') ADVANCE(343); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(675); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(279); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(553); + if (lookahead == 't') ADVANCE(388); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(345); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(520); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(279); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(524); + if (lookahead == 't') ADVANCE(391); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(325); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(291); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(301); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(329); + if (lookahead == 't') ADVANCE(502); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(377); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(378); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(476); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(506); + if (lookahead == 't') ADVANCE(478); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(380); + if (lookahead == 't') ADVANCE(353); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'u') ADVANCE(521); + if (lookahead == 'x') ADVANCE(568); + if (lookahead != 0) ADVANCE(1727); END_STATE(); case 507: - if (lookahead == 't') ADVANCE(480); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 508: - if (lookahead == 't') ADVANCE(482); + if (lookahead == 'u') ADVANCE(366); END_STATE(); case 509: - if (lookahead == 't') ADVANCE(355); + if (lookahead == 'u') ADVANCE(416); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(525); - if (lookahead == 'x') ADVANCE(572); - if (lookahead != 0) ADVANCE(1731); + if (lookahead == 'u') ADVANCE(496); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(495); + if (lookahead == 'u') ADVANCE(522); + if (lookahead == 'x') ADVANCE(569); + if (lookahead != 0) ADVANCE(1719); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(368); + if (lookahead == 'w') ADVANCE(398); END_STATE(); case 513: - if (lookahead == 'u') ADVANCE(419); + if (lookahead == 'w') ADVANCE(399); END_STATE(); case 514: - if (lookahead == 'u') ADVANCE(500); + if (lookahead == 'w') ADVANCE(400); END_STATE(); case 515: - if (lookahead == 'u') ADVANCE(526); - if (lookahead == 'x') ADVANCE(573); - if (lookahead != 0) ADVANCE(1723); + if (lookahead == 'w') ADVANCE(401); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(401); + if (lookahead == 'w') ADVANCE(402); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 'x') ADVANCE(501); END_STATE(); case 518: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == 'y') ADVANCE(1095); END_STATE(); case 519: - if (lookahead == 'w') ADVANCE(404); + if (lookahead == 'y') ADVANCE(1681); END_STATE(); case 520: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 'y') ADVANCE(446); END_STATE(); case 521: - if (lookahead == 'x') ADVANCE(505); + if (lookahead == '{') ADVANCE(565); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); END_STATE(); case 522: - if (lookahead == 'y') ADVANCE(1099); + if (lookahead == '{') ADVANCE(567); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); END_STATE(); case 523: - if (lookahead == 'y') ADVANCE(1685); + if (lookahead == '|') ADVANCE(1478); END_STATE(); case 524: - if (lookahead == 'y') ADVANCE(449); + if (lookahead == '|') ADVANCE(1479); END_STATE(); case 525: - if (lookahead == '{') ADVANCE(569); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); + if (lookahead == '|') ADVANCE(1483); END_STATE(); case 526: - if (lookahead == '{') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(574); + if (lookahead == '|') ADVANCE(1476); END_STATE(); case 527: if (lookahead == '|') ADVANCE(1482); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1483); + if (lookahead == '|') ADVANCE(1477); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1487); + if (lookahead == '|') ADVANCE(1480); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '|') ADVANCE(1481); END_STATE(); case 531: - if (lookahead == '|') ADVANCE(1486); + if (lookahead == '}') ADVANCE(1727); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); END_STATE(); case 532: - if (lookahead == '|') ADVANCE(1481); + if (lookahead == '}') ADVANCE(1719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); END_STATE(); case 533: - if (lookahead == '|') ADVANCE(1484); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(540); END_STATE(); case 534: - if (lookahead == '|') ADVANCE(1485); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); END_STATE(); case 535: - if (lookahead == '}') ADVANCE(1731); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(535); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1123); END_STATE(); case 536: - if (lookahead == '}') ADVANCE(1723); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1121); END_STATE(); case 537: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(544); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(544); END_STATE(); case 538: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(545); END_STATE(); case 539: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1127); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(535); END_STATE(); case 540: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1125); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1127); END_STATE(); case 541: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(548); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(537); END_STATE(); case 542: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(549); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(536); END_STATE(); case 543: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(539); + lookahead == 'n') ADVANCE(538); END_STATE(); case 544: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1131); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(547); END_STATE(); case 545: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(541); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(546); END_STATE(); case 546: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(540); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1116); END_STATE(); case 547: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(542); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1122); END_STATE(); case 548: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(551); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1694); END_STATE(); case 549: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(550); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1583); END_STATE(); case 550: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 551: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1691); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); END_STATE(); case 553: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(554); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1705); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); - END_STATE(); - case 563: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); - END_STATE(); - case 564: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); END_STATE(); - case 565: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); - END_STATE(); - case 566: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - END_STATE(); - case 567: + case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(572); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); - case 568: + case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1731); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1727); END_STATE(); - case 569: + case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(535); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); END_STATE(); - case 570: + case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1723); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1719); END_STATE(); - case 571: + case 567: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); END_STATE(); - case 572: + case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); END_STATE(); - case 573: + case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); END_STATE(); - case 574: + case 570: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); END_STATE(); - case 575: - if (eof) ADVANCE(670); + case 571: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '"', 1712, - '#', 2215, - '$', 1498, - '&', 838, - '\'', 1715, - '(', 1494, - ')', 1495, - '*', 1539, - '+', 1602, - ',', 1496, - '-', 1513, - '.', 1748, - '/', 1597, - ':', 1740, - ';', 1478, - '<', 1576, - '=', 682, - '>', 1507, - '?', 1744, - '@', 1489, - '[', 1492, - ']', 1493, - '^', 1758, - '_', 1529, - '`', 1719, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1741, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1756, + '&', 834, + '\'', 1711, + '(', 1490, + ')', 1491, + '*', 1535, + '+', 1598, + ',', 1492, + '-', 1509, + '.', 1744, + '/', 1593, + ':', 1736, + ';', 1474, + '<', 1572, + '=', 678, + '>', 1503, + '?', 1740, + '@', 1485, + '[', 1488, + ']', 1489, + '^', 1754, + '_', 1525, + '`', 1715, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(575); + lookahead == ' ') SKIP(571); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1395); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1391); END_STATE(); - case 576: - if (eof) ADVANCE(670); + case 572: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '"', 1712, - '#', 2215, - '\'', 1715, - ')', 1495, - '*', 1538, - '+', 711, + '!', 1741, + '"', 1708, + '#', 2213, + '\'', 1711, + ')', 1491, + '*', 1534, + '+', 707, '-', 307, - '.', 1753, - ';', 1478, - '?', 1744, - 'I', 823, - 'N', 819, - '[', 1492, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, + '.', 1749, + ';', 1474, + '?', 1740, + 'I', 819, + 'N', 815, + '[', 1488, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(576); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == ' ') SKIP(572); + if (('0' <= 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(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); - case 577: - if (eof) ADVANCE(670); + case 573: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '"', 1712, - '#', 2215, - '\'', 1715, - ')', 1495, - '*', 1538, - '+', 711, + '!', 1741, + '"', 1708, + '#', 2213, + '\'', 1711, + ')', 1491, + '*', 1534, + '+', 707, '-', 307, - '.', 1753, - ';', 1478, - 'I', 823, - 'N', 819, - '[', 1492, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, + '.', 1749, + ';', 1474, + 'I', 819, + 'N', 815, + '[', 1488, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(577); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + lookahead == ' ') SKIP(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); - case 578: - if (eof) ADVANCE(670); + case 574: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '(', 1494, - ')', 1495, + '!', 1741, + '#', 2213, + '(', 1490, + ')', 1491, '-', 299, - '.', 1747, - ':', 1490, - ';', 1478, - '=', 682, - '>', 1506, - '?', 1744, - '[', 1492, - 'a', 423, + '.', 1743, + ':', 1486, + ';', 1474, + '=', 678, + '>', 1502, + '?', 1740, + '[', 1488, + 'a', 420, 'e', 287, - 'i', 424, + 'i', 421, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(578); + lookahead == ' ') SKIP(574); END_STATE(); - case 579: - if (eof) ADVANCE(670); + case 575: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '(', 1494, - ')', 1495, + '!', 1741, + '#', 2213, + '(', 1490, + ')', 1491, '-', 299, - '.', 1749, - ':', 1490, - ';', 1478, - '<', 1163, - '=', 682, - '>', 1506, - '?', 1744, - '@', 1508, - '[', 1492, - 'a', 423, + '.', 1745, + ':', 1486, + ';', 1474, + '<', 1159, + '=', 678, + '>', 1502, + '?', 1740, + '@', 1504, + '[', 1488, + 'a', 420, 'e', 287, - 'i', 424, + 'i', 421, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(578); + lookahead == ' ') SKIP(574); END_STATE(); - case 580: - if (eof) ADVANCE(670); + case 576: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '(', 1494, - ')', 1495, + '!', 1741, + '#', 2213, + '(', 1490, + ')', 1491, '-', 296, - '.', 1747, - ':', 1490, - ';', 1478, - '=', 684, - '>', 1506, - '?', 1744, - '[', 1492, - 'a', 423, + '.', 1743, + ':', 1486, + ';', 1474, + '=', 680, + '>', 1502, + '?', 1740, + '[', 1488, + 'a', 420, 'e', 287, - 'i', 386, + 'i', 383, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(576); END_STATE(); - case 581: - if (eof) ADVANCE(670); + case 577: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - '(', 1494, - ')', 1495, + '!', 1741, + '#', 2213, + '(', 1490, + ')', 1491, '-', 296, - '.', 1749, - ':', 1490, - ';', 1478, - '=', 684, - '>', 1506, - '?', 1744, - '[', 1492, - 'a', 423, + '.', 1745, + ':', 1486, + ';', 1474, + '=', 680, + '>', 1502, + '?', 1740, + '[', 1488, + 'a', 420, 'e', 287, - 'i', 386, + 'i', 383, 'o', 288, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(576); END_STATE(); - case 582: - if (eof) ADVANCE(670); + case 578: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1745, - '#', 2215, - ')', 1495, - '.', 1749, - ';', 1478, - '=', 1756, - '?', 1744, - 'e', 1396, - 'o', 1397, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '!', 1741, + '#', 2213, + ')', 1491, + '.', 1745, + ';', 1474, + '=', 1752, + '?', 1740, + 'e', 1392, + 'o', 1393, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1470); END_STATE(); - case 583: - if (eof) ADVANCE(670); + case 579: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1746, - '#', 2215, - '$', 1536, - '\'', 1718, - '(', 1588, - ')', 1495, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 1749, - '/', 1595, - ':', 1740, - ';', 1478, - '<', 1577, - '=', 683, - '>', 1507, - '?', 1744, - '@', 1508, - ']', 1493, - '`', 1722, - 'a', 423, - 'b', 399, - 'c', 350, - 'd', 373, + '!', 1742, + '#', 2213, + '$', 1532, + '\'', 1714, + '(', 1584, + ')', 1491, + '*', 1536, + '+', 1601, + '-', 1518, + '.', 1745, + '/', 1591, + ':', 1736, + ';', 1474, + '<', 1573, + '=', 679, + '>', 1503, + '?', 1740, + '@', 1504, + ']', 1489, + '`', 1718, + 'a', 420, + 'b', 396, + 'c', 348, + 'd', 371, 'e', 282, - 'f', 400, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'f', 397, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(586); + lookahead == ' ') SKIP(582); END_STATE(); - case 584: - if (eof) ADVANCE(670); + case 580: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1746, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1749, - '/', 1594, - ':', 1740, - ';', 1478, - '<', 1577, + '!', 1742, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1745, + '/', 1590, + ':', 1736, + ';', 1474, + '<', 1573, '=', 320, - '>', 1507, - '?', 1744, - '@', 1489, - 'B', 1680, + '>', 1503, + '?', 1740, + '@', 1485, + 'B', 1676, 'E', 332, 'G', 332, 'K', 332, 'M', 332, 'P', 332, 'T', 332, - '[', 1692, - 'a', 423, - 'b', 1682, - 'd', 344, + '[', 1688, + 'a', 420, + 'b', 1678, + 'd', 342, 'e', 280, - 'f', 400, + 'f', 397, 'g', 331, - 'h', 341, - 'i', 386, + 'h', 340, + 'i', 383, 'k', 331, - 'l', 398, + 'l', 395, 'm', 333, - 'n', 438, + 'n', 435, 'o', 278, 'p', 331, - 's', 376, + 's', 373, 't', 331, - 'u', 472, - 'w', 408, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, - 0xb5, 472, + 'u', 468, + 'w', 405, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, + 0xb5, 468, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(585); + lookahead == ' ') SKIP(581); END_STATE(); - case 585: - if (eof) ADVANCE(670); + case 581: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1746, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1747, - '/', 1594, - ':', 1740, - ';', 1478, - '<', 1577, + '!', 1742, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1743, + '/', 1590, + ':', 1736, + ';', 1474, + '<', 1573, '=', 320, - '>', 1507, - '?', 1744, - '@', 1489, - 'a', 423, - 'b', 399, - 'd', 373, + '>', 1503, + '?', 1740, + '@', 1485, + 'a', 420, + 'b', 396, + 'd', 371, 'e', 284, - 'f', 400, - 'h', 340, - 'i', 386, - 'l', 398, - 'm', 439, - 'n', 437, + 'f', 397, + 'h', 339, + 'i', 383, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(585); + lookahead == ' ') SKIP(581); END_STATE(); - case 586: - if (eof) ADVANCE(670); + case 582: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1746, - '#', 2215, - ')', 1495, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 1747, - '/', 1595, - ':', 1740, - ';', 1478, - '<', 1577, - '=', 683, - '>', 1507, - '?', 1744, - ']', 1493, - 'a', 423, - 'b', 399, - 'c', 350, - 'd', 373, + '!', 1742, + '#', 2213, + ')', 1491, + '*', 1536, + '+', 1601, + '-', 1518, + '.', 1743, + '/', 1591, + ':', 1736, + ';', 1474, + '<', 1573, + '=', 679, + '>', 1503, + '?', 1740, + ']', 1489, + 'a', 420, + 'b', 396, + 'c', 348, + 'd', 371, 'e', 282, - 'f', 400, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'f', 397, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(586); + lookahead == ' ') SKIP(582); END_STATE(); - case 587: - if (eof) ADVANCE(670); + case 583: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1631, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1799, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1627, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1797, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 588: - if (eof) ADVANCE(670); + case 584: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1631, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1803, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1627, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1801, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); - case 589: - if (eof) ADVANCE(670); + case 585: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1842, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1799, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1840, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1797, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); - case 590: - if (eof) ADVANCE(670); + case 586: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1603, - '-', 1520, - '.', 1842, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1803, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1599, + '-', 1516, + '.', 1840, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1801, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); - case 591: - if (eof) ADVANCE(670); + case 587: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1791, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1790, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1789, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1788, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 592: - if (eof) ADVANCE(670); + case 588: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1793, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1805, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1791, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1803, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 593: - if (eof) ADVANCE(670); + case 589: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1792, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1790, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 594: - if (eof) ADVANCE(670); + case 590: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1622, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1795, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1618, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1793, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 595: - if (eof) ADVANCE(670); + case 591: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1791, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1790, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1789, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1788, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 596: - if (eof) ADVANCE(670); + case 592: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1793, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1805, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1791, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1803, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 597: - if (eof) ADVANCE(670); + case 593: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1791, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1790, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1789, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1788, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 598: - if (eof) ADVANCE(670); + case 594: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1793, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1805, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1791, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1803, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 599: - if (eof) ADVANCE(670); + case 595: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1798, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1790, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1796, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1788, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 600: - if (eof) ADVANCE(670); + case 596: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'B', 1680, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'b', 1683, - 'd', 1851, - 'e', 1801, - 'g', 1836, - 'h', 1849, - 'i', 1890, - 'k', 1836, - 'l', 1878, - 'm', 1838, - 'n', 1899, - 'o', 1805, - 'p', 1836, - 's', 1865, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'B', 1676, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'b', 1679, + 'd', 1849, + 'e', 1799, + 'g', 1834, + 'h', 1847, + 'i', 1888, + 'k', 1834, + 'l', 1876, + 'm', 1836, + 'n', 1897, + 'o', 1803, + 'p', 1834, + 's', 1863, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 601: - if (eof) ADVANCE(670); + case 597: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1792, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1790, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 602: - if (eof) ADVANCE(670); + case 598: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1795, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1793, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 603: - if (eof) ADVANCE(670); + case 599: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1792, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1790, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 604: - if (eof) ADVANCE(670); + case 600: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1795, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1793, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 605: - if (eof) ADVANCE(670); + case 601: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1799, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1797, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 606: - if (eof) ADVANCE(670); + case 602: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1817, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1803, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1815, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1801, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 607: - if (eof) ADVANCE(670); + case 603: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1621, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1792, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1617, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1790, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 608: - if (eof) ADVANCE(670); + case 604: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1621, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1795, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1617, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1793, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 609: - if (eof) ADVANCE(670); + case 605: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1792, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1790, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 610: - if (eof) ADVANCE(670); + case 606: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'b', 1879, - 'e', 1795, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'b', 1877, + 'e', 1793, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 611: - if (eof) ADVANCE(670); + case 607: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1792, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1790, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 612: - if (eof) ADVANCE(670); + case 608: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'E', 1846, - 'a', 1892, - 'b', 1879, - 'e', 1795, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'E', 1844, + 'a', 1890, + 'b', 1877, + 'e', 1793, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 613: - if (eof) ADVANCE(670); + case 609: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1799, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1790, - 's', 1926, - 'x', 1898, - '{', 1525, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1797, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1788, + 's', 1924, + 'x', 1896, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); END_STATE(); - case 614: - if (eof) ADVANCE(670); + case 610: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1820, - '#', 2215, - '(', 1588, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, - '=', 1822, - '>', 1507, - 'a', 1892, - 'b', 1879, - 'e', 1803, - 'h', 1850, - 'i', 1890, - 'l', 1878, - 'm', 1901, - 'n', 1900, - 'o', 1805, - 's', 1926, - 'x', 1898, - '|', 1479, - '}', 1526, + '!', 1818, + '#', 2213, + '(', 1584, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, + '=', 1820, + '>', 1503, + 'a', 1890, + 'b', 1877, + 'e', 1801, + 'h', 1848, + 'i', 1888, + 'l', 1876, + 'm', 1899, + 'n', 1898, + 'o', 1803, + 's', 1924, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 615: - if (eof) ADVANCE(670); + case 611: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 866, - '#', 2218, - ')', 1495, - '*', 1541, - '+', 1606, - '-', 1523, - '/', 1596, - ':', 1740, - ';', 1478, - '<', 1577, + '!', 862, + '#', 2216, + ')', 1491, + '*', 1537, + '+', 1602, + '-', 1519, + '/', 1592, + ':', 1736, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 953, - 'b', 933, - 'e', 843, - 'h', 889, - 'i', 954, - 'l', 932, - 'm', 967, - 'n', 968, - 'o', 842, - 's', 1013, - 'x', 966, - '|', 1479, - '}', 1526, + '>', 1503, + 'a', 949, + 'b', 929, + 'e', 839, + 'h', 885, + 'i', 950, + 'l', 928, + 'm', 963, + 'n', 964, + 'o', 838, + 's', 1009, + 'x', 962, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1065); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1061); END_STATE(); - case 616: - if (eof) ADVANCE(670); + case 612: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 866, - '#', 2218, - ')', 1495, - '*', 1541, - '+', 1606, - '-', 1523, - '/', 1596, - ';', 1478, - '<', 1577, + '!', 862, + '#', 2216, + ')', 1491, + '*', 1537, + '+', 1602, + '-', 1519, + '/', 1592, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 953, - 'b', 933, - 'e', 847, - 'h', 889, - 'i', 954, - 'l', 932, - 'm', 967, - 'n', 968, - 'o', 846, - 's', 1013, - 'x', 966, - '|', 1479, - '}', 1526, + '>', 1503, + 'a', 949, + 'b', 929, + 'e', 842, + 'h', 885, + 'i', 950, + 'l', 928, + 'm', 963, + 'n', 964, + 'o', 843, + 's', 1009, + 'x', 962, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1065); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1061); END_STATE(); - case 617: - if (eof) ADVANCE(670); + case 613: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '$', 1497, - '(', 1494, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1747, - '/', 1594, - ':', 1490, - ';', 1478, - '<', 1577, + '#', 2213, + '$', 1493, + '(', 1490, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1743, + '/', 1590, + ':', 1486, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - '?', 1744, - '[', 1492, - 'a', 423, - 'b', 399, - 'c', 350, + '>', 1503, + '?', 1740, + '[', 1488, + 'a', 420, + 'b', 396, + 'c', 348, 'e', 281, - 'f', 348, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 444, + 'f', 346, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 441, 'o', 278, - 's', 489, - 't', 460, - 'x', 434, - '{', 1525, - '|', 1479, + 's', 485, + 't', 456, + 'x', 431, + '{', 1521, + '|', 1475, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(613); END_STATE(); - case 618: - if (eof) ADVANCE(670); + case 614: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '$', 1497, - '(', 1494, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '.', 1749, - '/', 1594, - ':', 1490, - ';', 1478, - '<', 1577, + '#', 2213, + '$', 1493, + '(', 1490, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '.', 1745, + '/', 1590, + ':', 1486, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - '?', 1744, - '[', 1492, - 'a', 423, - 'b', 399, - 'c', 350, + '>', 1503, + '?', 1740, + '[', 1488, + 'a', 420, + 'b', 396, + 'c', 348, 'e', 281, - 'f', 348, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 444, + 'f', 346, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 441, 'o', 278, - 's', 489, - 't', 460, - 'x', 434, - '{', 1525, - '|', 1479, + 's', 485, + 't', 456, + 'x', 431, + '{', 1521, + '|', 1475, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(613); END_STATE(); - case 619: - if (eof) ADVANCE(670); + case 615: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '$', 1497, - ')', 1495, - '*', 1539, - '+', 1604, - '-', 1521, - '.', 336, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '$', 1493, + ')', 1491, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 335, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(615); END_STATE(); - case 620: - if (eof) ADVANCE(670); + case 616: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '$', 1497, - ')', 1495, - '*', 1539, - '+', 1604, - '-', 1521, - '.', 336, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '$', 1493, + ')', 1491, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 335, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); + lookahead == ' ') SKIP(616); END_STATE(); - case 621: - if (eof) ADVANCE(670); + case 617: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '$', 1497, - ')', 1495, - '*', 1539, - '+', 1604, - '-', 1521, - '.', 336, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '$', 1493, + ')', 1491, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 335, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 286, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 288, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); + lookahead == ' ') SKIP(617); END_STATE(); - case 622: - if (eof) ADVANCE(670); + case 618: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ':', 1740, - ';', 1478, - '<', 1577, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ':', 1736, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); + lookahead == ' ') SKIP(618); END_STATE(); - case 623: - if (eof) ADVANCE(670); + case 619: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '{', 1525, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); + lookahead == ' ') SKIP(619); END_STATE(); - case 624: - if (eof) ADVANCE(670); + case 620: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); + lookahead == ' ') SKIP(620); END_STATE(); - case 625: - if (eof) ADVANCE(670); + case 621: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + ')', 1491, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 286, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 288, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); + lookahead == ' ') SKIP(621); END_STATE(); - case 626: - if (eof) ADVANCE(670); + case 622: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 1747, - '/', 1595, - ':', 1490, - ';', 1478, - '<', 1577, - '=', 683, - '>', 1507, - 'a', 423, - 'b', 399, + '#', 2213, + ')', 1491, + '*', 1536, + '+', 1601, + '-', 1518, + '.', 1743, + '/', 1591, + ':', 1486, + ';', 1474, + '<', 1573, + '=', 679, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); + lookahead == ' ') SKIP(622); END_STATE(); - case 627: - if (eof) ADVANCE(670); + case 623: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - ')', 1495, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 1749, - '/', 1595, - ':', 1490, - ';', 1478, - '<', 1577, - '=', 683, - '>', 1507, - 'a', 423, - 'b', 399, + '#', 2213, + ')', 1491, + '*', 1536, + '+', 1601, + '-', 1518, + '.', 1745, + '/', 1591, + ':', 1486, + ';', 1474, + '<', 1573, + '=', 679, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, - '}', 1526, + 's', 485, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); + lookahead == ' ') SKIP(622); END_STATE(); - case 628: - if (eof) ADVANCE(670); + case 624: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 283, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 278, - 's', 489, - 'x', 434, - '|', 1479, + 's', 485, + 'x', 431, + '|', 1475, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); + lookahead == ' ') SKIP(624); END_STATE(); - case 629: - if (eof) ADVANCE(670); + case 625: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, '!', 319, - '#', 2215, - '*', 1539, - '+', 1602, - '-', 1513, - '/', 1594, - ';', 1478, - '<', 1577, + '#', 2213, + '*', 1535, + '+', 1598, + '-', 1509, + '/', 1590, + ';', 1474, + '<', 1573, '=', 321, - '>', 1507, - 'a', 423, - 'b', 399, + '>', 1503, + 'a', 420, + 'b', 396, 'e', 286, - 'h', 340, - 'i', 424, - 'l', 398, - 'm', 439, - 'n', 437, + 'h', 339, + 'i', 421, + 'l', 395, + 'm', 436, + 'n', 434, 'o', 288, - 's', 489, - 'x', 434, - '|', 1479, + 's', 485, + 'x', 431, + '|', 1475, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); + lookahead == ' ') SKIP(625); END_STATE(); - case 630: - if (eof) ADVANCE(670); + case 626: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1643, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ':', 1490, - ';', 1478, - '=', 682, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '|', 1479, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1639, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ':', 1486, + ';', 1474, + '=', 678, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + lookahead == ' ') SKIP(629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); END_STATE(); - case 631: - if (eof) ADVANCE(670); + case 627: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ':', 1490, - ';', 1478, - '<', 1163, - '=', 682, - '>', 1506, - '@', 1508, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 700, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 'o', 702, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '|', 1479, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ':', 1486, + ';', 1474, + '<', 1159, + '=', 678, + '>', 1502, + '@', 1504, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 696, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 'o', 698, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(632); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + lookahead == ' ') SKIP(628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); END_STATE(); - case 632: - if (eof) ADVANCE(670); + case 628: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ':', 1490, - ';', 1478, - '=', 682, - '>', 1506, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 700, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 'o', 702, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '|', 1479, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ':', 1486, + ';', 1474, + '=', 678, + '>', 1502, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 696, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 'o', 698, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(632); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + lookahead == ' ') SKIP(628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '@' && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); END_STATE(); - case 633: - if (eof) ADVANCE(670); + case 629: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ':', 1490, - ';', 1478, - '=', 682, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, - '|', 1479, - '}', 1526, + '"', 1708, + '#', 2213, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ':', 1486, + ';', 1474, + '=', 678, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + lookahead == ' ') SKIP(629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); END_STATE(); - case 634: - if (eof) ADVANCE(670); + case 630: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '$', 1498, - '\'', 1715, - '(', 1494, - ')', 1495, - '+', 2027, - '-', 1515, - '.', 2026, - '0', 1651, - ';', 1478, - 'N', 2074, - '[', 1492, - '_', 2039, - '`', 1719, - 'e', 2016, - 'f', 2042, - 'n', 2070, - 'o', 2017, - 't', 2057, - '{', 1525, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, - 'I', 2078, - 'i', 2078, + '"', 1708, + '#', 2213, + '$', 1494, + '\'', 1711, + '(', 1490, + ')', 1491, + '+', 2025, + '-', 1511, + '.', 2024, + '0', 1647, + ';', 1474, + 'N', 2072, + '[', 1488, + '_', 2037, + '`', 1715, + 'e', 2014, + 'f', 2040, + 'n', 2068, + 'o', 2015, + 't', 2055, + '{', 1521, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, + 'I', 2076, + 'i', 2076, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2097); + lookahead != ']') ADVANCE(2095); END_STATE(); - case 635: - if (eof) ADVANCE(670); + case 631: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '\'', 1715, - '(', 1494, - ')', 1495, - '*', 1538, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + '(', 1490, + ')', 1491, + '*', 1534, + '+', 707, '-', 298, - '.', 727, - ';', 1478, - '=', 682, - 'I', 823, - 'N', 819, - '[', 1492, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '{', 1525, - '}', 1526, + '.', 723, + ';', 1474, + '=', 678, + 'I', 819, + 'N', 815, + '[', 1488, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '{', 1521, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + lookahead == ' ') SKIP(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); - case 636: - if (eof) ADVANCE(670); + case 632: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '\'', 1715, - ')', 1495, - '*', 1538, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + ')', 1491, + '*', 1534, + '+', 707, '-', 307, - '.', 1753, - ';', 1478, - '?', 1744, - 'I', 823, - 'N', 819, - '[', 1492, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, + '.', 1749, + ';', 1474, + '?', 1740, + 'I', 819, + 'N', 815, + '[', 1488, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == ' ') SKIP(632); + if (('0' <= 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(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); - case 637: - if (eof) ADVANCE(670); + case 633: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2215, - '\'', 1715, - ')', 1495, - '*', 1538, - '+', 711, + '"', 1708, + '#', 2213, + '\'', 1711, + ')', 1491, + '*', 1534, + '+', 707, '-', 307, - '.', 1753, - ';', 1478, - 'I', 823, - 'N', 819, - '[', 1492, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 811, - 't', 785, - 'u', 798, - 'w', 761, - '}', 1526, + '.', 1749, + ';', 1474, + 'I', 819, + 'N', 815, + '[', 1488, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 807, + 't', 781, + 'u', 794, + 'w', 757, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + lookahead == ' ') SKIP(633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); - case 638: - if (eof) ADVANCE(670); + case 634: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '"', 1712, - '#', 2217, - '$', 1498, - '\'', 1715, - '(', 1494, - '+', 711, - '-', 1518, - '.', 706, - '0', 1650, - ';', 1478, - '@', 1489, - 'I', 823, - 'N', 819, - '[', 1492, - '^', 1758, - '_', 725, - '`', 1719, - 'a', 764, - 'c', 730, - 'd', 741, - 'e', 771, - 'f', 731, - 'i', 724, - 'l', 749, - 'm', 735, - 'n', 782, - 't', 785, - 'u', 798, - 'w', 757, - '{', 1525, + '"', 1708, + '#', 2215, + '$', 1494, + '%', 1755, + '\'', 1711, + '(', 1490, + '+', 707, + '-', 1514, + '.', 702, + '0', 1646, + ';', 1474, + '@', 1485, + 'I', 819, + 'N', 815, + '[', 1488, + '^', 1754, + '_', 721, + '`', 1715, + 'a', 760, + 'c', 726, + 'd', 737, + 'e', 767, + 'f', 727, + 'i', 720, + 'l', 745, + 'm', 731, + 'n', 778, + 't', 781, + 'u', 794, + 'w', 753, + '{', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(638); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + lookahead == ' ') SKIP(634); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(834); END_STATE(); - case 639: - if (eof) ADVANCE(670); + case 635: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '.', 1631, - ';', 1478, - '[', 1692, - '_', 1840, - 'e', 1804, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, - '+', 1818, - '-', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '.', 1627, + ';', 1474, + '[', 1688, + '_', 1838, + 'e', 1802, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, + '+', 1816, + '-', 1816, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -22047,9969 +22034,9976 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); END_STATE(); - case 640: - if (eof) ADVANCE(670); + case 636: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '.', 1631, - ';', 1478, - '_', 1840, - 'a', 1892, - 'e', 1804, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '.', 1627, + ';', 1474, + '_', 1838, + 'a', 1890, + 'e', 1802, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(643); + lookahead == ' ') SKIP(639); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); - case 641: - if (eof) ADVANCE(670); + case 637: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '.', 1842, - ';', 1478, - '_', 1840, - 'a', 1892, - 'e', 1804, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '.', 1840, + ';', 1474, + '_', 1838, + 'a', 1890, + 'e', 1802, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(643); + lookahead == ' ') SKIP(639); if (lookahead == '+' || - lookahead == '-') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + lookahead == '-') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); - case 642: - if (eof) ADVANCE(670); + case 638: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - '(', 1588, - ')', 1495, - '.', 1842, - ';', 1478, - '_', 1840, - 'e', 1804, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, - '+', 1818, - '-', 1818, + '#', 2213, + '$', 1493, + '(', 1584, + ')', 1491, + '.', 1840, + ';', 1474, + '_', 1838, + 'e', 1802, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, + '+', 1816, + '-', 1816, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); END_STATE(); - case 643: - if (eof) ADVANCE(670); + case 639: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '$', 1497, - ')', 1495, - '.', 336, - ';', 1478, - 'a', 423, + '#', 2213, + '$', 1493, + ')', 1491, + '.', 335, + ';', 1474, + 'a', 420, 'e', 287, 'o', 288, - 'x', 434, - '|', 1479, - '}', 1526, + 'x', 431, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(643); + lookahead == ' ') SKIP(639); if (lookahead == '+' || lookahead == '-') ADVANCE(313); END_STATE(); - case 644: - if (eof) ADVANCE(670); + case 640: + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1622, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'd', 1851, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1618, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'd', 1849, + 'e', 1792, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1803, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(665); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + END_STATE(); + case 641: + if (eof) ADVANCE(666); + ADVANCE_MAP( + '\n', 1471, + '\r', 1, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1618, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1792, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1804, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + '}', 1522, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + END_STATE(); + case 642: + if (eof) ADVANCE(666); + ADVANCE_MAP( + '\n', 1471, + '\r', 1, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1618, + ';', 1474, + 'E', 1844, + 'a', 1890, + 'e', 1794, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + END_STATE(); + case 643: + if (eof) ADVANCE(666); + ADVANCE_MAP( + '\n', 1471, + '\r', 1, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1618, + ';', 1474, + 'E', 1844, 'e', 1794, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1805, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + END_STATE(); + case 644: + if (eof) ADVANCE(666); + ADVANCE_MAP( + '\n', 1471, + '\r', 1, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'a', 1890, + 'd', 1849, + 'e', 1792, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1803, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); + lookahead == ' ') SKIP(665); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 645: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1622, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1794, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1806, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - '}', 1526, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + '_', 1838, + 'd', 1849, + 'e', 1792, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1804, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + '}', 1522, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 646: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1622, - ';', 1478, - 'E', 1846, - 'a', 1892, - 'e', 1796, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'd', 1849, + 'e', 1792, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1803, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 647: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1622, - ';', 1478, - 'E', 1846, - 'e', 1796, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1832, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1792, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1804, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + '}', 1522, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 648: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'a', 1892, - 'd', 1851, - 'e', 1794, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1805, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'a', 1890, + 'd', 1849, + 'e', 1800, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1803, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + 'x', 1896, + '|', 1475, + '}', 1522, + 0xb5, 1916, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); + lookahead == ' ') SKIP(665); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 649: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - '_', 1840, - 'd', 1851, - 'e', 1794, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1806, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - '}', 1526, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1835, + 'G', 1835, + 'K', 1835, + 'M', 1835, + 'P', 1835, + 'T', 1835, + 'd', 1849, + 'e', 1800, + 'g', 1834, + 'h', 1903, + 'k', 1834, + 'm', 1837, + 'n', 1916, + 'o', 1804, + 'p', 1834, + 's', 1864, + 't', 1834, + 'u', 1916, + 'w', 1883, + '|', 1475, + '}', 1522, + 0xb5, 1916, + '\t', 1473, + ' ', 1473, + 'B', 1676, + 'b', 1676, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 650: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'd', 1851, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1844, + '_', 1838, + 'a', 1890, 'e', 1794, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1805, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 651: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1834, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1844, + '_', 1838, 'e', 1794, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1806, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - '}', 1526, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 652: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'a', 1892, - 'd', 1851, - 'e', 1802, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1805, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - 'x', 1898, - '|', 1479, - '}', 1526, - 0xb5, 1918, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1844, + 'a', 1890, + 'e', 1794, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 653: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1837, - 'G', 1837, - 'K', 1837, - 'M', 1837, - 'P', 1837, - 'T', 1837, - 'd', 1851, - 'e', 1802, - 'g', 1836, - 'h', 1905, - 'k', 1836, - 'm', 1839, - 'n', 1918, - 'o', 1806, - 'p', 1836, - 's', 1866, - 't', 1836, - 'u', 1918, - 'w', 1885, - '|', 1479, - '}', 1526, - 0xb5, 1918, - '\t', 1477, - ' ', 1477, - 'B', 1680, - 'b', 1680, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'E', 1844, + 'e', 1794, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 654: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'e', 1796, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'a', 1890, + 'e', 1802, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 655: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1846, - '_', 1840, - 'e', 1796, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1815, + ';', 1474, + 'e', 1802, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 656: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1846, - 'a', 1892, - 'e', 1796, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1617, + ';', 1474, + 'E', 1844, + 'a', 1890, + 'e', 1794, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 657: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'E', 1846, - 'e', 1796, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + ')', 1491, + '.', 1617, + ';', 1474, + 'E', 1844, + 'e', 1794, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 658: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'a', 1892, - 'e', 1804, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '(', 1584, + ')', 1491, + ';', 1474, + 'E', 1844, + '_', 1838, + 'a', 1890, + 'e', 1794, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 659: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1817, - ';', 1478, - 'e', 1804, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + ')', 1491, + ';', 1474, + 'E', 1844, + '_', 1838, + 'e', 1794, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 660: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1621, - ';', 1478, - 'E', 1846, - 'a', 1892, - 'e', 1796, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '(', 1584, + ')', 1491, + ';', 1474, + 'E', 1844, + 'a', 1890, + 'e', 1794, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 661: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - '.', 1621, - ';', 1478, - 'E', 1846, - 'e', 1796, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + ')', 1491, + ';', 1474, + 'E', 1844, + 'e', 1794, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 662: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - ';', 1478, - 'E', 1846, - '_', 1840, - 'a', 1892, - 'e', 1796, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + '(', 1584, + ')', 1491, + ';', 1474, + 'a', 1890, + 'e', 1802, + 'o', 1803, + 'x', 1896, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 663: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - ';', 1478, - 'E', 1846, - '_', 1840, - 'e', 1796, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + '(', 1584, + ')', 1491, + ';', 1474, + 'e', 1802, + 'o', 1804, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 664: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - ';', 1478, - 'E', 1846, - 'a', 1892, - 'e', 1796, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, + '#', 2213, + ')', 1491, + ';', 1474, + '=', 1752, + 'e', 1781, + 'o', 1782, + '|', 1475, + '}', 1522, + '\t', 1473, + ' ', 1473, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); END_STATE(); case 665: - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - ';', 1478, - 'E', 1846, - 'e', 1796, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, + '#', 2213, + ')', 1491, + ';', 1474, + 'a', 420, + 'e', 287, + 'o', 288, + 'x', 431, + '|', 1475, + '}', 1522, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '\t' || + lookahead == ' ') SKIP(665); END_STATE(); case 666: - if (eof) ADVANCE(670); - ADVANCE_MAP( - '\n', 1475, - '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - ';', 1478, - 'a', 1892, - 'e', 1804, - 'o', 1805, - 'x', 1898, - '|', 1479, - '}', 1526, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 667: - if (eof) ADVANCE(670); - ADVANCE_MAP( - '\n', 1475, - '\r', 1, - '#', 2215, - '(', 1588, - ')', 1495, - ';', 1478, - 'e', 1804, - 'o', 1806, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 668: - if (eof) ADVANCE(670); - ADVANCE_MAP( - '\n', 1475, - '\r', 1, - '#', 2215, - ')', 1495, - ';', 1478, - '=', 1756, - 'e', 1783, - 'o', 1784, - '|', 1479, - '}', 1526, - '\t', 1477, - ' ', 1477, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 669: - if (eof) ADVANCE(670); - ADVANCE_MAP( - '\n', 1475, - '\r', 1, - '#', 2215, - ')', 1495, - ';', 1478, - 'a', 423, - 'e', 287, - 'o', 288, - 'x', 434, - '|', 1479, - '}', 1526, - ); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(668); + if (lookahead == '\r') ADVANCE(670); + if (lookahead == '#') ADVANCE(2214); if (lookahead == '\t' || - lookahead == ' ') SKIP(669); + lookahead == ' ') ADVANCE(669); + if (lookahead != 0) ADVANCE(670); END_STATE(); case 670: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(668); + if (lookahead == '\r') ADVANCE(670); + if (lookahead != 0) ADVANCE(670); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 672: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 673: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '\r') ADVANCE(674); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(673); - if (lookahead != 0) ADVANCE(674); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(748); END_STATE(); case 674: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '\r') ADVANCE(674); - if (lookahead != 0) ADVANCE(674); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(752); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1576); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1523); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1574); - if (lookahead == '~') ADVANCE(1580); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1527); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 692: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 693: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 694: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 695: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(1640); + if (lookahead == '(') ADVANCE(1614); + if (lookahead == '{') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 696: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(775); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'r') ADVANCE(784); + if (lookahead == 'x') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 697: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(776); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 698: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(751); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'u') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1644); - if (lookahead == '(') ADVANCE(1618); - if (lookahead == '{') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(779); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'l') ADVANCE(799); - if (lookahead == 'r') ADVANCE(788); - if (lookahead == 'x') ADVANCE(784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '-') ADVANCE(831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(780); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(755); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'u') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(754); - if (lookahead == '>') ADVANCE(532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(1527); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(1616); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1534); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1531); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '.') ADVANCE(722); + if (lookahead == '_') ADVANCE(707); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == ':') ADVANCE(555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1620); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(708); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(726); - if (lookahead == '_') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + ADVANCE_MAP( + 'I', 816, + '_', 724, + 'i', 816, + 'l', 795, + 'x', 780, + '+', 724, + '-', 724, + 'B', 1676, + 'b', 1676, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'I') ADVANCE(816); + if (lookahead == '_') ADVANCE(724); + if (lookahead == 'i') ADVANCE(732); + if (lookahead == '+' || + lookahead == '-') ADVANCE(724); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + ADVANCE_MAP( + 'I', 816, + 'a', 805, + 'i', 771, + 'o', 736, + 's', 1681, + 'u', 800, + 'B', 1676, + 'b', 1676, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'I') ADVANCE(816); + if (lookahead == 'i') ADVANCE(816); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'x') ADVANCE(780); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 820, - '_', 728, - 'i', 820, - 'l', 799, - 'x', 784, - '+', 728, - '-', 728, - 'B', 1680, - 'b', 1680, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'I') ADVANCE(816); + if (lookahead == 'i') ADVANCE(816); + if (lookahead == 'r') ADVANCE(808); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(820); - if (lookahead == '_') ADVANCE(728); - if (lookahead == 'i') ADVANCE(736); - if (lookahead == '+' || - lookahead == '-') ADVANCE(728); + if (lookahead == 'I') ADVANCE(816); + if (lookahead == 'i') ADVANCE(816); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 820, - 'a', 809, - 'i', 775, - 'o', 740, - 's', 1685, - 'u', 804, - 'B', 1680, - 'b', 1680, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'I') ADVANCE(816); + if (lookahead == 'i') ADVANCE(732); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(820); - if (lookahead == 'i') ADVANCE(820); - if (lookahead == 'l') ADVANCE(799); - if (lookahead == 'x') ADVANCE(784); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'N') ADVANCE(817); + if (lookahead == 'f') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(820); - if (lookahead == 'i') ADVANCE(820); - if (lookahead == 'r') ADVANCE(812); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(820); - if (lookahead == 'i') ADVANCE(820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(820); - if (lookahead == 'i') ADVANCE(736); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(821); - if (lookahead == 'f') ADVANCE(1087); - if (lookahead == 'n') ADVANCE(1106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '_') ADVANCE(724); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(725); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(726); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'a') ADVANCE(768); + if (lookahead == 'i') ADVANCE(773); + if (lookahead == 'o') ADVANCE(782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'a') ADVANCE(813); + if (lookahead == 'e') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'a') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(802); - if (lookahead == 'o') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'a') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(772); - if (lookahead == 'i') ADVANCE(777); - if (lookahead == 'o') ADVANCE(786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'a') ADVANCE(805); + if (lookahead == 'o') ADVANCE(736); + if (lookahead == 'u') ADVANCE(800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'e') ADVANCE(756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'c') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'c') ADVANCE(754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(809); - if (lookahead == 'o') ADVANCE(740); - if (lookahead == 'u') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'c') ADVANCE(755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'd') ADVANCE(810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'o') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'i') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(803); - if (lookahead == 'o') ADVANCE(778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(791); - if (lookahead == 'i') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'e') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'f') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'h') ADVANCE(747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'h') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'h') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'h') ADVANCE(759); + if (lookahead == 'k') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'h') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'i') ADVANCE(729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'i') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(763); - if (lookahead == 'k') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'x') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'l') ADVANCE(797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'n') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'n') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(799); - if (lookahead == 'x') ADVANCE(784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'n') ADVANCE(1681); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'n') ADVANCE(796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'n') ADVANCE(730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'o') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'o') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'o') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'o') ADVANCE(786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'o') ADVANCE(801); + if (lookahead == 'u') ADVANCE(763); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'p') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'p') ADVANCE(777); + if (lookahead == 't') ADVANCE(749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(805); - if (lookahead == 'u') ADVANCE(767); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(781); - if (lookahead == 't') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'r') ADVANCE(712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(1681); + if (lookahead == 'u') ADVANCE(763); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 792: 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(838); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'u') ADVANCE(767); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 's') ADVANCE(741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 't') ADVANCE(711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'u') ADVANCE(763); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'u') ADVANCE(740); + if (lookahead == 'y') ADVANCE(1089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'u') ADVANCE(806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'u') ADVANCE(766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(767); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'v') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(744); - if (lookahead == 'y') ADVANCE(1093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'y') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'y') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '{') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 825: 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(838); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(712); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); END_STATE(); case 835: - 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(838); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 836: - 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(838); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 837: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 838: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(911); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'r') ADVANCE(1555); + if (lookahead == 'u') ADVANCE(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 839: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'n') ADVANCE(900); + if (lookahead == 'r') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 840: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(912); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 841: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(961); + if (lookahead == '>') ADVANCE(1758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(915); - if (lookahead == '>') ADVANCE(1766); - if (lookahead == 'r') ADVANCE(1559); - if (lookahead == 'u') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '+') ADVANCE(967); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'n') ADVANCE(900); + if (lookahead == 'r') ADVANCE(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(963); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'n') ADVANCE(904); - if (lookahead == 'r') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '+') ADVANCE(913); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'r') ADVANCE(1555); + if (lookahead == 'u') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(916); - if (lookahead == '>') ADVANCE(1762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '+') ADVANCE(969); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(965); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '+') ADVANCE(917); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(917); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'r') ADVANCE(1559); - if (lookahead == 'u') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1051); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(971); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'n') ADVANCE(904); - if (lookahead == 'r') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(973); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(921); - if (lookahead == '>') ADVANCE(532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1055); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1508); + if (lookahead == '.') ADVANCE(876); + if (lookahead == '_') ADVANCE(858); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(880); - if (lookahead == '_') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '-') ADVANCE(1059); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '.') ADVANCE(876); + if (lookahead == '_') ADVANCE(858); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '.') ADVANCE(876); + if (lookahead == '_') ADVANCE(858); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '.') ADVANCE(1531); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1063); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == ':') ADVANCE(555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(880); - if (lookahead == '_') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == ':') ADVANCE(2094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(880); - if (lookahead == '_') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '=') ADVANCE(1571); + if (lookahead == '~') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1535); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'N') ADVANCE(1036); + if (lookahead == 'f') ADVANCE(1085); + if (lookahead == 'n') ADVANCE(1103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'T') ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'T') ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (lookahead == 'b') ADVANCE(1675); + if (lookahead == 'o') ADVANCE(1685); + if (lookahead == 'x') ADVANCE(1687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1040); - if (lookahead == 'f') ADVANCE(1089); - if (lookahead == 'n') ADVANCE(1107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (lookahead == 'b') ADVANCE(1675); + if (lookahead == 'o') ADVANCE(1685); + if (lookahead == 'x') ADVANCE(1687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); + if (lookahead == '_') ADVANCE(876); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(939); + if (lookahead == 'i') ADVANCE(956); + if (lookahead == 'o') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(943); - if (lookahead == 'i') ADVANCE(960); - if (lookahead == 'o') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(1001); + if (lookahead == 'o') ADVANCE(955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(954); + if (lookahead == 'o') ADVANCE(976); + if (lookahead == 's') ADVANCE(920); + if (lookahead == 'x') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(1017); + if (lookahead == 'o') ADVANCE(899); + if (lookahead == 'u') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1005); - if (lookahead == 'o') ADVANCE(959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'a') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(958); - if (lookahead == 'o') ADVANCE(980); - if (lookahead == 's') ADVANCE(924); - if (lookahead == 'x') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'c') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'c') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1021); - if (lookahead == 'o') ADVANCE(903); - if (lookahead == 'u') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'd') ADVANCE(1551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'd') ADVANCE(1595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'd') ADVANCE(1609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'd') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'd') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'd') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1002); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'e') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'e') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(887); + if (lookahead == 'i') ADVANCE(951); + if (lookahead == 'l') ADVANCE(935); + if (lookahead == 's') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'f') ADVANCE(837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1006); - if (lookahead == 'o') ADVANCE(964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(961); - if (lookahead == 'h') ADVANCE(891); - if (lookahead == 'i') ADVANCE(955); - if (lookahead == 'l') ADVANCE(939); - if (lookahead == 's') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(1565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(1100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'h') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'i') ADVANCE(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'k') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'k') ADVANCE(905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(1115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(1605); + if (lookahead == 'r') ADVANCE(1607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1609); - if (lookahead == 'r') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'l') ADVANCE(995); + if (lookahead == 'x') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(999); - if (lookahead == 'x') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'n') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(1000); + if (lookahead == 'u') ADVANCE(943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1004); - if (lookahead == 'u') ADVANCE(947); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'o') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'p') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'p') ADVANCE(970); + if (lookahead == 't') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(974); - if (lookahead == 't') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'r') ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'r') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 's') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 't') ADVANCE(893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'u') ADVANCE(902); + if (lookahead == 'y') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'u') ADVANCE(902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'u') ADVANCE(943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'u') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(906); - if (lookahead == 'y') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'u') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'u') ADVANCE(947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(947); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'v') ADVANCE(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'w') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'w') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'w') ADVANCE(933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'w') ADVANCE(934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'x') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'y') ADVANCE(1097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'y') ADVANCE(1101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); 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(1065); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1065); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1056: 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(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1057: 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(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); 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(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1060: - 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(1065); - END_STATE(); - case 1061: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); - END_STATE(); - case 1062: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); - END_STATE(); - case 1063: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); - END_STATE(); - case 1064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1065: + case 1061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1066: + case 1062: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 1067: + case 1063: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1068: + case 1064: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1069: + case 1065: ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); - case 1070: + case 1066: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1071: + case 1067: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1072: + case 1068: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 1073: + case 1069: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1074: + case 1070: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1075: + case 1071: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 1076: + case 1072: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1077: + case 1073: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1078: + case 1074: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 1079: + case 1075: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1080: + case 1076: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1081: + case 1077: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 1082: + case 1078: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1083: + case 1079: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1084: + case 1080: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 1085: + case 1081: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1086: + case 1082: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1087: + case 1083: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 1088: + case 1084: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1089: + case 1085: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1090: + case 1086: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 1091: + case 1087: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1092: + case 1088: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1093: + case 1089: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 1094: + case 1090: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1095: + case 1091: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1096: + case 1092: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 1097: + case 1093: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1098: + case 1094: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1099: + case 1095: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 1100: + case 1096: ACCEPT_TOKEN(anon_sym_finally); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1101: + case 1097: ACCEPT_TOKEN(anon_sym_finally); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1102: + case 1098: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 1103: + case 1099: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1104: + case 1100: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1105: + case 1101: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 1106: + case 1102: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1121); + lookahead == 'f') ADVANCE(1117); END_STATE(); - case 1107: + case 1103: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + lookahead == 'f') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1108: + case 1104: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1468); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + lookahead == 'f') ADVANCE(1464); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1109: + case 1105: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); - case 1110: + case 1106: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1111: + case 1107: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 1112: + case 1108: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1113: + case 1109: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1114: + case 1110: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 1115: + case 1111: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1116: + case 1112: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1117: + case 1113: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 1118: + case 1114: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); - case 1119: + case 1115: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1120: + case 1116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); - case 1121: + case 1117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(825); + lookahead == 'i') ADVANCE(821); END_STATE(); - case 1122: + case 1118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); + lookahead == 'i') ADVANCE(2077); END_STATE(); - case 1123: + case 1119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2134); + lookahead == 'i') ADVANCE(2132); END_STATE(); - case 1124: + case 1120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2188); + lookahead == 'i') ADVANCE(2186); END_STATE(); - case 1125: + case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(547); + lookahead == 'i') ADVANCE(543); END_STATE(); - case 1126: + case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); - case 1127: + case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + lookahead == 'i') ADVANCE(541); END_STATE(); - case 1128: + case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1958); + lookahead == 'i') ADVANCE(1956); END_STATE(); - case 1129: + case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2136); + lookahead == 'i') ADVANCE(2134); END_STATE(); - case 1130: + case 1126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2190); + lookahead == 'i') ADVANCE(2188); END_STATE(); - case 1131: + case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); - case 1132: + case 1128: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 1133: + case 1129: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 1134: + case 1130: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1132); + if (lookahead == '*') ADVANCE(1128); END_STATE(); - case 1135: + case 1131: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1138); + if (lookahead == '/') ADVANCE(1134); END_STATE(); - case 1136: + case 1132: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); - case 1137: + case 1133: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 1138: + case 1134: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 1139: + case 1135: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1133); + if (lookahead == '+') ADVANCE(1129); END_STATE(); - case 1140: + case 1136: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1141: + case 1137: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 1142: + case 1138: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 1143: + case 1139: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 1144: + case 1140: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 1145: + case 1141: ACCEPT_TOKEN(anon_sym_like); END_STATE(); - case 1146: + case 1142: ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); - case 1147: + case 1143: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 1148: + case 1144: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 1149: + case 1145: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 1150: + case 1146: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 1151: + case 1147: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 1152: + case 1148: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 1153: + case 1149: ACCEPT_TOKEN(anon_sym_in2); END_STATE(); - case 1154: + case 1150: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 1155: + case 1151: ACCEPT_TOKEN(anon_sym_has); END_STATE(); - case 1156: + case 1152: ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); - case 1157: + case 1153: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 1158: + case 1154: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); - case 1159: + case 1155: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 1160: + case 1156: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); - case 1161: + case 1157: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 1162: + case 1158: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 1163: + case 1159: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 1164: + case 1160: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1165); + if (lookahead == '=') ADVANCE(1161); END_STATE(); - case 1165: + case 1161: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1166: + case 1162: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1167); + if (lookahead == '=') ADVANCE(1163); END_STATE(); - case 1167: + case 1163: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1168: + case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1169: + case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1170: + case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1171: + case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1172: + case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1173: + case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1174: + case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1215, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1211, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1175: + case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1218, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1214, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1176: + case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1216, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1213, - 's', 1324, - 'x', 1297, - '|', 1479, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1212, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1209, + 's', 1320, + 'x', 1293, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1177: + case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - ')', 1495, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + ')', 1491, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1219, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1221, - 's', 1324, - 'x', 1297, - '|', 1479, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1215, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1217, + 's', 1320, + 'x', 1293, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1178: + case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ':', 1740, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ':', 1736, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1179: + case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1180: + case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1181: + case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1182: + case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1183: + case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ':', 1740, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ':', 1736, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1184: + case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ':', 1740, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ':', 1736, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1185: + case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ':', 1740, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ':', 1736, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1215, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1211, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1186: + case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1187: + case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1188: + case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1189: + case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1190: + case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1215, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1211, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1191: + case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1218, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - '}', 1526, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1214, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + '}', 1522, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1192: + case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1193: + case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1194: + case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1195: + case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1196: + case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1215, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1211, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1197: + case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1218, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1214, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1198: + case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1216, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1213, - 's', 1324, - 'x', 1297, - '|', 1479, - '}', 1526, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1212, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1209, + 's', 1320, + 'x', 1293, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1199: + case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1219, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1221, - 's', 1324, - 'x', 1297, - '|', 1479, - '}', 1526, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1215, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1217, + 's', 1320, + 'x', 1293, + '|', 1475, + '}', 1522, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1200: + case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1216, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1213, - 's', 1324, - 'x', 1297, - '|', 1479, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1212, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1209, + 's', 1320, + 'x', 1293, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1201: + case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1219, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1221, - 's', 1324, - 'x', 1297, - '|', 1479, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1215, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1217, + 's', 1320, + 'x', 1293, + '|', 1475, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1202: + case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1621, - '/', 1135, - ':', 1740, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1617, + '/', 1131, + ':', 1736, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1240, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1236, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1203: + case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1621, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1617, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1240, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1236, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1204: + case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ':', 1740, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ':', 1736, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1240, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1236, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1205: + case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ':', 1740, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ':', 1736, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1240, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1236, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1206: + case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ':', 1740, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ':', 1736, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1242, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1238, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1207: + case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1240, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1236, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1208: + case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1240, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1236, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1209: + case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1242, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1304, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1238, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1300, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + 0xb5, 1312, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1210: + case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1292, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1304, - 's', 1324, - 'x', 1297, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1288, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1300, + 's', 1320, + 'x', 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1211: + case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2215); + if (lookahead == '#') ADVANCE(2213); if (lookahead == '\t' || lookahead == ' ') SKIP(271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); - case 1212: + case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1246, - '-', 1248, - '>', 1764, - 'I', 1344, - '_', 1248, - 'i', 1344, - 'n', 1262, - 'r', 1305, - 'B', 1680, - 'b', 1680, + '+', 1242, + '-', 1244, + '>', 1762, + 'I', 1340, + '_', 1244, + 'i', 1340, + 'n', 1258, + 'r', 1301, + 'B', 1676, + 'b', 1676, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); - case 1213: + case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1267); - if (lookahead == '>') ADVANCE(1766); - if (lookahead == 'r') ADVANCE(1152); - if (lookahead == 'u') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '+') ADVANCE(1263); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'r') ADVANCE(1148); + if (lookahead == 'u') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); - case 1214: + case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1296); + if (lookahead == '+') ADVANCE(1292); + if (lookahead == '>') ADVANCE(1758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + END_STATE(); + case 1211: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '+', 1291, + '>', 1762, + 'I', 1340, + 'i', 1340, + 'n', 1258, + 'r', 1301, + 'B', 1676, + 'b', 1676, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + END_STATE(); + case 1212: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == '+') ADVANCE(1291); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'n') ADVANCE(1258); + if (lookahead == 'r') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + END_STATE(); + case 1213: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == '+') ADVANCE(1264); if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); - case 1215: + case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( '+', 1295, - '>', 1764, - 'I', 1344, - 'i', 1344, - 'n', 1262, - 'r', 1305, - 'B', 1680, - 'b', 1680, + '>', 523, + 'I', 1340, + 'i', 1340, + 'n', 1258, + 'r', 1306, + 'B', 1676, + 'b', 1676, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); - case 1216: + case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '+') ADVANCE(1295); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'n') ADVANCE(1262); - if (lookahead == 'r') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'n') ADVANCE(1258); + if (lookahead == 'r') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + END_STATE(); + case 1216: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '+', 1243, + '-', 1244, + '>', 523, + 'I', 1340, + '_', 1244, + 'i', 1340, + 'n', 1258, + 'r', 1306, + 'B', 1676, + 'b', 1676, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1268); - if (lookahead == '>') ADVANCE(1762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '+') ADVANCE(1265); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'r') ADVANCE(1148); + if (lookahead == 'u') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1299, - '>', 527, - 'I', 1344, - 'i', 1344, - 'n', 1262, - 'r', 1310, - 'B', 1680, - 'b', 1680, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '+') ADVANCE(1299); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1299); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'n') ADVANCE(1262); - if (lookahead == 'r') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '+') ADVANCE(1266); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1247, - '-', 1248, - '>', 527, - 'I', 1344, - '_', 1248, - 'i', 1344, - 'n', 1262, - 'r', 1310, - 'B', 1680, - 'b', 1680, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '-') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1269); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'r') ADVANCE(1152); - if (lookahead == 'u') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '-') ADVANCE(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1303); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '-') ADVANCE(1335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1270); - if (lookahead == '>') ADVANCE(532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '-') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '-') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '-') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '.') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1340); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '=') ADVANCE(1158); + if (lookahead == '~') ADVANCE(1140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1341); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1342); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1162); - if (lookahead == '~') ADVANCE(1144); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + ADVANCE_MAP( + 'I', 1340, + '_', 1244, + 'i', 1340, + 'n', 1258, + '+', 1244, + '-', 1244, + 'B', 1676, + 'b', 1676, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'I') ADVANCE(1340); + if (lookahead == '_') ADVANCE(1244); + if (lookahead == 'i') ADVANCE(1253); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1244); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'I') ADVANCE(1340); + if (lookahead == 'i') ADVANCE(1340); + if (lookahead == 'n') ADVANCE(1258); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'I') ADVANCE(1340); + if (lookahead == 'i') ADVANCE(1340); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1344, - '_', 1248, - 'i', 1344, - 'n', 1262, - '+', 1248, - '-', 1248, - 'B', 1680, - 'b', 1680, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'I') ADVANCE(1340); + if (lookahead == 'i') ADVANCE(1253); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1344); - if (lookahead == '_') ADVANCE(1248); - if (lookahead == 'i') ADVANCE(1257); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1248); + if (lookahead == 'I') ADVANCE(1340); + if (lookahead == 'i') ADVANCE(1285); + if (lookahead == 'o') ADVANCE(1256); + if (lookahead == 's') ADVANCE(1681); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1344); - if (lookahead == 'i') ADVANCE(1344); - if (lookahead == 'n') ADVANCE(1262); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '_') ADVANCE(1244); + if (lookahead == 'o') ADVANCE(1228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1344); - if (lookahead == 'i') ADVANCE(1344); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '_') ADVANCE(1244); + if (lookahead == 'o') ADVANCE(1232); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1344); - if (lookahead == 'i') ADVANCE(1257); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '_') ADVANCE(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1344); - if (lookahead == 'i') ADVANCE(1289); - if (lookahead == 'o') ADVANCE(1260); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == '_') ADVANCE(1245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1248); - if (lookahead == 'o') ADVANCE(1232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1248); - if (lookahead == 'o') ADVANCE(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1313); + if (lookahead == 'r') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1343); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1317); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1289); + if (lookahead == 'o') ADVANCE(1303); + if (lookahead == 's') ADVANCE(1268); + if (lookahead == 'x') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'c') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if (lookahead == 'o') ADVANCE(1307); - if (lookahead == 's') ADVANCE(1272); - if (lookahead == 'x') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'd') ADVANCE(1146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'd') ADVANCE(1133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'd') ADVANCE(1143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'd') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'd') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1254); + if (lookahead == 't') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1258); - if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1290); + if (lookahead == 'h') ADVANCE(1250); + if (lookahead == 'i') ADVANCE(1287); + if (lookahead == 'l') ADVANCE(1279); + if (lookahead == 's') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'h') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'h') ADVANCE(1155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'h') ADVANCE(1153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1294); - if (lookahead == 'h') ADVANCE(1254); - if (lookahead == 'i') ADVANCE(1291); - if (lookahead == 'l') ADVANCE(1283); - if (lookahead == 's') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'h') ADVANCE(1156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'h') ADVANCE(1154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1157); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1160); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1158); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'k') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'k') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'k') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'l') ADVANCE(1137); + if (lookahead == 'r') ADVANCE(1138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1681); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1141); - if (lookahead == 'r') ADVANCE(1142); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'o') ADVANCE(1232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1321); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'o') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1325); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1338); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1152); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1149); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'r') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1312: 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(1345); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 's') ADVANCE(1151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 's') ADVANCE(1152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 's') ADVANCE(1222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 's') ADVANCE(1223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 's') ADVANCE(1224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 's') ADVANCE(1225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1324: 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(1345); + if (lookahead == 't') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 't') ADVANCE(1252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'u') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'u') ADVANCE(1329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'w') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'w') ADVANCE(1276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1328); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'w') ADVANCE(1277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'w') ADVANCE(1278); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); + if (lookahead == 'y') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1340: 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(1345); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1341: 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(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); END_STATE(); case 1342: 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(1345); - END_STATE(); - case 1343: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); - END_STATE(); - case 1344: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); - END_STATE(); - case 1345: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); - END_STATE(); - case 1346: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1347: + case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1622, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1618, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1348: + case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1349: + case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - '_', 1249, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + '_', 1245, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1350: + case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1212, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1208, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1351: + case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1241, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1220, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1237, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1216, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1352: + case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1215, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1213, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1211, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1209, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1353: + case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '.', 1230, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '.', 1226, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'B', 1680, - 'E', 1244, - 'G', 1244, - 'K', 1244, - 'M', 1244, - 'P', 1244, - 'T', 1244, - 'a', 1288, - 'b', 1681, - 'd', 1250, - 'e', 1218, - 'g', 1243, - 'h', 1251, - 'i', 1290, - 'k', 1243, - 'l', 1278, - 'm', 1245, - 'n', 1301, - 'o', 1221, - 'p', 1243, - 's', 1264, - 't', 1243, - 'u', 1316, - 'w', 1284, - 'x', 1297, - '|', 1479, - 0xb5, 1316, + '>', 1162, + 'B', 1676, + 'E', 1240, + 'G', 1240, + 'K', 1240, + 'M', 1240, + 'P', 1240, + 'T', 1240, + 'a', 1284, + 'b', 1677, + 'd', 1246, + 'e', 1214, + 'g', 1239, + 'h', 1247, + 'i', 1286, + 'k', 1239, + 'l', 1274, + 'm', 1241, + 'n', 1297, + 'o', 1217, + 'p', 1239, + 's', 1260, + 't', 1239, + 'u', 1312, + 'w', 1280, + 'x', 1293, + '|', 1475, + 0xb5, 1312, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1354: + case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1216, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1213, - 's', 1324, - 'x', 1297, - '|', 1479, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1212, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1209, + 's', 1320, + 'x', 1293, + '|', 1475, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1355: + case 1351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(670); + if (eof) ADVANCE(666); ADVANCE_MAP( - '\n', 1475, + '\n', 1471, '\r', 1, - '!', 1231, - '#', 2215, - '*', 1134, - '+', 1139, - '-', 1140, - '/', 1135, - ';', 1478, - '<', 1164, + '!', 1227, + '#', 2213, + '*', 1130, + '+', 1135, + '-', 1136, + '/', 1131, + ';', 1474, + '<', 1160, '=', 318, - '>', 1166, - 'a', 1288, - 'b', 1277, - 'e', 1219, - 'h', 1252, - 'i', 1290, - 'l', 1278, - 'm', 1298, - 'n', 1302, - 'o', 1221, - 's', 1324, - 'x', 1297, - '|', 1479, + '>', 1162, + 'a', 1284, + 'b', 1273, + 'e', 1215, + 'h', 1248, + 'i', 1286, + 'l', 1274, + 'm', 1294, + 'n', 1298, + 'o', 1217, + 's', 1320, + 'x', 1293, + '|', 1475, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); END_STATE(); - case 1356: + case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1368); - if (lookahead == '-') ADVANCE(2001); - if (lookahead == 'I') ADVANCE(1394); - if (lookahead == '_') ADVANCE(1368); - if (lookahead == 'i') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1364); + if (lookahead == '-') ADVANCE(1999); + if (lookahead == 'I') ADVANCE(1390); + if (lookahead == '_') ADVANCE(1364); + if (lookahead == 'i') ADVANCE(1390); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); - case 1357: + case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1368); - if (lookahead == '-') ADVANCE(2001); - if (lookahead == 'I') ADVANCE(1394); - if (lookahead == '_') ADVANCE(1368); - if (lookahead == 'i') ADVANCE(1371); + if (lookahead == '+') ADVANCE(1364); + if (lookahead == '-') ADVANCE(1999); + if (lookahead == 'I') ADVANCE(1390); + if (lookahead == '_') ADVANCE(1364); + if (lookahead == 'i') ADVANCE(1367); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + END_STATE(); + case 1354: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1364); + if (lookahead == '-') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + END_STATE(); + case 1355: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(448); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + END_STATE(); + case 1356: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(357); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + END_STATE(); + case 1357: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(432); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1368); - if (lookahead == '-') ADVANCE(2001); - if (lookahead == '_') ADVANCE(1368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == '-') ADVANCE(449); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(451); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == '-') ADVANCE(516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'I') ADVANCE(1390); + if (lookahead == 'i') ADVANCE(1390); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(435); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'I') ADVANCE(1390); + if (lookahead == 'i') ADVANCE(1367); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(452); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'I') ADVANCE(1390); + if (lookahead == 'i') ADVANCE(1378); + if (lookahead == 's') ADVANCE(1683); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(520); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == '_') ADVANCE(1363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1394); - if (lookahead == 'i') ADVANCE(1394); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == '_') ADVANCE(1364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1394); - if (lookahead == 'i') ADVANCE(1371); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'a') ADVANCE(1385); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1394); - if (lookahead == 'i') ADVANCE(1382); - if (lookahead == 's') ADVANCE(1687); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'a') ADVANCE(1389); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1367); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'c') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'e') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1393); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'e') ADVANCE(1357); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'e') ADVANCE(1368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'k') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1377); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'l') ADVANCE(1374); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'l') ADVANCE(1355); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1372); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'l') ADVANCE(1356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'l') ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'm') ADVANCE(1382); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'n') ADVANCE(1683); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'n') ADVANCE(1105); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1379); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'n') ADVANCE(1370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1386); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'o') ADVANCE(1383); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1687); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'p') ADVANCE(1381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'r') ADVANCE(1387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1374); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'r') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1387); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'r') ADVANCE(1359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 's') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1391); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 't') ADVANCE(1358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'u') ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'y') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1392: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1380); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'r') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1393: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(376); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'u') ADVANCE(1454); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1394: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(443); + if (lookahead == '>') ADVANCE(526); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1395: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(528); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(441); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'r') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'N') ADVANCE(1462); + if (lookahead == 'f') ADVANCE(1084); + if (lookahead == 'n') ADVANCE(1104); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'u') ADVANCE(1458); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == '_') ADVANCE(1397); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1397); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(446); - if (lookahead == '>') ADVANCE(530); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'a') ADVANCE(1449); + if (lookahead == 'o') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(382); - if (lookahead == '>') ADVANCE(532); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'a') ADVANCE(1430); + if (lookahead == 'i') ADVANCE(1434); + if (lookahead == 'o') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1466); - if (lookahead == 'f') ADVANCE(1088); - if (lookahead == 'n') ADVANCE(1108); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'a') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'a') ADVANCE(1426); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1453); - if (lookahead == 'o') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'a') ADVANCE(1455); + if (lookahead == 'o') ADVANCE(1405); + if (lookahead == 'u') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1434); - if (lookahead == 'i') ADVANCE(1438); - if (lookahead == 'o') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'c') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1448); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'c') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'd') ADVANCE(1458); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1459); - if (lookahead == 'o') ADVANCE(1409); - if (lookahead == 'u') ADVANCE(1455); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1063); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1087); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1462); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1108); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1111); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1067); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1081); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1091); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1072); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1112); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1450); + if (lookahead == 'o') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1115); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1085); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1076); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'f') ADVANCE(836); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1454); - if (lookahead == 'o') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1093); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1099); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(840); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'i') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1097); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'i') ADVANCE(1427); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1103); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1114); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1460); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1424); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1118); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1411); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1464); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1412); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1427); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1446); + if (lookahead == 'x') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1428); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'n') ADVANCE(1069); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'n') ADVANCE(1459); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1450); - if (lookahead == 'x') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'n') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1452); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'n') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1073); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1463); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'o') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1451); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'p') ADVANCE(1078); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1405); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'p') ADVANCE(1436); + if (lookahead == 't') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'r') ADVANCE(1457); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'r') ADVANCE(1075); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1082); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'r') ADVANCE(1394); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1440); - if (lookahead == 't') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'r') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1461); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'r') ADVANCE(1453); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1079); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 's') ADVANCE(676); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 's') ADVANCE(1407); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 's') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1457); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 's') ADVANCE(1452); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 's') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); 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(1474); + if (lookahead == 't') ADVANCE(682); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1456); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(685); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1414); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(688); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(672); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(686); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(689); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(1404); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(692); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'u') ADVANCE(1425); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1465); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(676); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'u') ADVANCE(1409); + if (lookahead == 'y') ADVANCE(1090); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'u') ADVANCE(1428); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1408); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'v') ADVANCE(1066); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1429); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1469); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'y') ADVANCE(1096); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1413); - if (lookahead == 'y') ADVANCE(1094); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1465); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1464); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1070); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1468); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(1100); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1467); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1465: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1469); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1466: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1468); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1462); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1467: 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(1474); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1468: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1471); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1474); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); END_STATE(); case 1470: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1466); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); 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(1474); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1472: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1473); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1736); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1472); END_STATE(); case 1473: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1474); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1473); END_STATE(); case 1474: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1475: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1476: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1740); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1476); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1477: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1477); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1484); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1488: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1488); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1489: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1491: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1492: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1493: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1494: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1725); + if (lookahead == '\'') ADVANCE(1724); END_STATE(); case 1495: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1725); + if (lookahead == '\'') ADVANCE(1724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1497: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1729); - if (lookahead == '\'') ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1729); - if (lookahead == '\'') ADVANCE(1728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1575); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1507: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1579); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1507); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(1996); + if (lookahead == '_') ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1513: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1514: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 1515: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '.') ADVANCE(876); + if (lookahead == '_') ADVANCE(858); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == 'i') ADVANCE(1040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1516: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '.') ADVANCE(1998); - if (lookahead == '_') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '.') ADVANCE(1839); + if (lookahead == '_') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1517: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1518: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '=') ADVANCE(691); END_STATE(); case 1519: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(880); - if (lookahead == '_') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1520: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1841); - if (lookahead == '_') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1521: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1522: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(695); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1523: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1524: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1525: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(695); + if (lookahead == '<') ADVANCE(1629); + if (lookahead == '=') ADVANCE(1628); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2039); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2013); + if (lookahead == '<') ADVANCE(1629); + if (lookahead == '=') ADVANCE(1628); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2103); + if (lookahead == '<') ADVANCE(1629); + if (lookahead == '=') ADVANCE(1628); END_STATE(); case 1530: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1629); + if (lookahead == '=') ADVANCE(1628); END_STATE(); case 1531: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(699); - if (lookahead == '<') ADVANCE(1633); - if (lookahead == '=') ADVANCE(1632); + if (lookahead == '<') ADVANCE(1629); + if (lookahead == '=') ADVANCE(1628); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1061); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2015); - if (lookahead == '<') ADVANCE(1633); - if (lookahead == '=') ADVANCE(1632); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2105); - if (lookahead == '<') ADVANCE(1633); - if (lookahead == '=') ADVANCE(1632); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1725); + if (lookahead == '\'') ADVANCE(1724); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1633); - if (lookahead == '=') ADVANCE(1632); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1633); - if (lookahead == '=') ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1585); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1585); + if (lookahead == '=') ADVANCE(692); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1729); - if (lookahead == '\'') ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'a') ADVANCE(1541); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1589); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1107); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '=') ADVANCE(696); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1110); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'l') ADVANCE(1544); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1545); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if (lookahead == 'o') ADVANCE(1545); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1111); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if (lookahead == 'r') ADVANCE(1546); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1114); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if (lookahead == 's') ADVANCE(1540); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1548); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if (lookahead == 't') ADVANCE(1547); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1549); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if (lookahead == 'u') ADVANCE(1539); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1550); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1583); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1544); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); END_STATE(); case 1549: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1551); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1550: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1543); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1551: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1587); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1552: - 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(1552); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1560: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1574); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1577: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1578); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1579: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1580: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1587: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(694); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1596); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1596); + if (lookahead == '=') ADVANCE(693); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(698); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1600); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1600); - if (lookahead == '=') ADVANCE(697); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1596: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1601); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1597: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1598: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1587); END_STATE(); case 1599: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1587); + if (lookahead == '.') ADVANCE(1839); + if (lookahead == '_') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1600: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1587); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1601: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1588); + if (lookahead == '=') ADVANCE(690); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1591); + if (lookahead == '+') ADVANCE(1589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1591); - if (lookahead == '.') ADVANCE(1841); - if (lookahead == '_') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '.') ADVANCE(722); + if (lookahead == '_') ADVANCE(707); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 1604: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1591); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1592); - if (lookahead == '=') ADVANCE(694); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(726); - if (lookahead == '_') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1609: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1610: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1611: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1612: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1613: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); case 1614: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1615: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1505); + if (lookahead == '<') ADVANCE(1631); + if (lookahead == '=') ADVANCE(1630); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1631); + if (lookahead == '=') ADVANCE(1630); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1618: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1616); END_STATE(); case 1619: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1509); - if (lookahead == '<') ADVANCE(1635); - if (lookahead == '=') ADVANCE(1634); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1616); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 1620: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1635); - if (lookahead == '=') ADVANCE(1634); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1526); END_STATE(); case 1621: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1526); + if (lookahead == '_') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1622: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1989); END_STATE(); case 1623: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1620); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '.') ADVANCE(1989); + if (lookahead == '_') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1624: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1530); + if (lookahead == '.') ADVANCE(1615); END_STATE(); case 1625: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '_') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1626: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1991); + if (lookahead == '_') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1627: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1991); - if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '_') ADVANCE(1840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1628: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1619); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1629: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1630: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1631: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1842); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1632: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); END_STATE(); case 1633: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1634: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(1634); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1635: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(1635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1636: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1636); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1637: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1637); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1638: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1638); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1639: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1639); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1640: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(1640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1641: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(830); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1642: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1642); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2089); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1643: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2143); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1644: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2195); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(834); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '-') ADVANCE(559); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2091); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1653); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2145); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1655); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2197); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(563); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(1688); - if (lookahead == 'x') ADVANCE(1690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); + if (lookahead == '_') ADVANCE(1667); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(1688); - if (lookahead == 'x') ADVANCE(1690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); + if (lookahead == '_') ADVANCE(1667); + if (lookahead == 'b') ADVANCE(824); + if (lookahead == 'o') ADVANCE(826); + if (lookahead == 'x') ADVANCE(833); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(1688); - if (lookahead == 'x') ADVANCE(1690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(1688); - if (lookahead == 'x') ADVANCE(1690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1652); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(1688); - if (lookahead == 'x') ADVANCE(1690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (lookahead == 'b') ADVANCE(828); - if (lookahead == 'o') ADVANCE(830); - if (lookahead == 'x') ADVANCE(837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1654); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1656); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); + if (lookahead == '_') ADVANCE(1667); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1653); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1655); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); END_STATE(); case 1667: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); + if (lookahead == '_') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1668: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); - END_STATE(); - case 1669: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); - END_STATE(); - case 1670: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); - END_STATE(); - case 1671: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - END_STATE(); - case 1672: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '_') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); - case 1673: + case 1669: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '_') ADVANCE(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); - case 1674: + case 1670: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1674); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if (lookahead == '_') ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); - case 1675: + case 1671: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); END_STATE(); - case 1676: + case 1672: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1676); + lookahead == '_') ADVANCE(1672); END_STATE(); - case 1677: + case 1673: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1677); + lookahead == '_') ADVANCE(1673); END_STATE(); - case 1678: + case 1674: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1676); + lookahead == '_') ADVANCE(1672); END_STATE(); - case 1679: + case 1675: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + lookahead == '_') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1680: + case 1676: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 1681: + case 1677: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1319); END_STATE(); - case 1682: + case 1678: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(484); + if (lookahead == 'i') ADVANCE(480); END_STATE(); - case 1683: + case 1679: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1925); + if (lookahead == 'i') ADVANCE(1923); END_STATE(); - case 1684: + case 1680: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); - case 1685: + case 1681: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 1686: + case 1682: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1062); END_STATE(); - case 1687: + case 1683: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); - case 1688: + case 1684: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1677); + lookahead == '_') ADVANCE(1673); END_STATE(); - case 1689: + case 1685: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + lookahead == '_') ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1690: + case 1686: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); END_STATE(); - case 1691: + case 1687: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 1692: + case 1688: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1693: + case 1689: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1693); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1689); END_STATE(); - case 1694: + case 1690: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1695: + case 1691: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(557); + if (lookahead == '.') ADVANCE(553); if (lookahead == '+' || lookahead == '-') ADVANCE(314); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1694); + lookahead == 'z') ADVANCE(1690); END_STATE(); - case 1696: + case 1692: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2089); + if (lookahead == '.') ADVANCE(2087); if (lookahead == '+' || - lookahead == '-') ADVANCE(2028); + lookahead == '-') ADVANCE(2026); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1694); + lookahead == 'z') ADVANCE(1690); END_STATE(); - case 1697: + case 1693: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2148); + if (lookahead == '.') ADVANCE(2146); if (lookahead == '+' || - lookahead == '-') ADVANCE(2111); + lookahead == '-') ADVANCE(2109); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1694); + lookahead == 'z') ADVANCE(1690); END_STATE(); - case 1698: + case 1694: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(556); + if (lookahead == ':') ADVANCE(1705); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); END_STATE(); - case 1699: + case 1695: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2084); + if (lookahead == ':') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2082); END_STATE(); - case 1700: + case 1696: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1711); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2142); + if (lookahead == ':') ADVANCE(1707); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2140); END_STATE(); - case 1701: + case 1697: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(836); + if (lookahead == 'T') ADVANCE(832); END_STATE(); - case 1702: + case 1698: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2093); + if (lookahead == 'T') ADVANCE(2091); END_STATE(); - case 1703: + case 1699: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2151); + if (lookahead == 'T') ADVANCE(2149); END_STATE(); - case 1704: + case 1700: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2199); + if (lookahead == 'T') ADVANCE(2197); END_STATE(); - case 1705: + case 1701: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(566); + if (lookahead == 'T') ADVANCE(562); END_STATE(); - case 1706: + case 1702: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || lookahead == '-') ADVANCE(314); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1694); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1706); + lookahead == 'z') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); END_STATE(); - case 1707: + case 1703: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2028); + lookahead == '-') ADVANCE(2026); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1694); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); + lookahead == 'z') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); END_STATE(); - case 1708: + case 1704: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2111); + lookahead == '-') ADVANCE(2109); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1694); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); + lookahead == 'z') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); END_STATE(); - case 1709: + case 1705: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(556); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); END_STATE(); - case 1710: + case 1706: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2084); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2082); END_STATE(); - case 1711: + case 1707: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2142); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2140); END_STATE(); - case 1712: + case 1708: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1713: + case 1709: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1714); + if (lookahead == '#') ADVANCE(1710); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1713); + lookahead == ' ') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1714); + lookahead != '\\') ADVANCE(1710); END_STATE(); - case 1714: + case 1710: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1714); + lookahead != '\\') ADVANCE(1710); END_STATE(); - case 1715: + case 1711: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1716: + case 1712: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1717); + if (lookahead == '#') ADVANCE(1713); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1716); + lookahead == ' ') ADVANCE(1712); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1717); + lookahead != '\'') ADVANCE(1713); END_STATE(); - case 1717: + case 1713: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1717); + lookahead != '\'') ADVANCE(1713); END_STATE(); - case 1718: + case 1714: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1719: + case 1715: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1720: + case 1716: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1721); + if (lookahead == '#') ADVANCE(1717); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1720); + lookahead == ' ') ADVANCE(1716); if (lookahead != 0 && - lookahead != '`') ADVANCE(1721); + lookahead != '`') ADVANCE(1717); END_STATE(); - case 1721: + case 1717: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1721); + lookahead != '`') ADVANCE(1717); END_STATE(); - case 1722: + case 1718: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1723: + case 1719: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1724: + case 1720: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1725); + if (lookahead == '#') ADVANCE(1721); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1724); + lookahead == ' ') ADVANCE(1720); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1725); + lookahead != '\\') ADVANCE(1721); END_STATE(); - case 1725: + case 1721: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1725); + lookahead != '\\') ADVANCE(1721); END_STATE(); - case 1726: + case 1722: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1727); + if (lookahead == '#') ADVANCE(1723); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1726); + lookahead == ' ') ADVANCE(1722); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1727); + lookahead != '(') ADVANCE(1723); END_STATE(); - case 1727: + case 1723: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1727); + lookahead != '(') ADVANCE(1723); END_STATE(); - case 1728: + case 1724: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1729: + case 1725: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1730: + case 1726: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1731: + case 1727: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1732: + case 1728: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1733: + case 1729: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 1734: + case 1730: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 1735: + case 1731: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1734); - if (lookahead == '\r') ADVANCE(1734); + if (lookahead == '\n') ADVANCE(1730); + if (lookahead == '\r') ADVANCE(1730); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + lookahead == ' ') ADVANCE(1731); if (lookahead == 0x0b || lookahead == '\f' || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); END_STATE(); - case 1736: + case 1732: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1734); + if (lookahead == ',') ADVANCE(1730); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1736); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); + lookahead == ' ') ADVANCE(1732); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1730); END_STATE(); - case 1737: + case 1733: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1734); + if (lookahead == ',') ADVANCE(1730); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1737); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1738); + lookahead == ' ') ADVANCE(1733); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); END_STATE(); - case 1738: + case 1734: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1743); + if (lookahead == ';') ADVANCE(1739); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(317); END_STATE(); - case 1739: + case 1735: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1739); + lookahead == ' ') ADVANCE(1735); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1734); + lookahead == ',') ADVANCE(1730); END_STATE(); - case 1740: + case 1736: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 1741: + case 1737: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2219); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1742); + if (lookahead == '#') ADVANCE(2217); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1738); END_STATE(); - case 1742: + case 1738: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1742); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1738); END_STATE(); - case 1743: + case 1739: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 1744: + case 1740: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 1745: + case 1741: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 1746: + case 1742: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1581); + if (lookahead == '=') ADVANCE(1571); + if (lookahead == '~') ADVANCE(1577); END_STATE(); - case 1747: + case 1743: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 1748: + case 1744: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(705); + if (lookahead == '.') ADVANCE(701); END_STATE(); - case 1749: + case 1745: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1616); END_STATE(); - case 1750: + case 1746: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1530); + if (lookahead == '.') ADVANCE(1526); END_STATE(); - case 1751: + case 1747: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == '.') ADVANCE(310); END_STATE(); - case 1752: + case 1748: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1619); + if (lookahead == '.') ADVANCE(1615); END_STATE(); - case 1753: + case 1749: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); - case 1754: + case 1750: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1712); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '\'') ADVANCE(1715); - if (lookahead == '`') ADVANCE(1719); + if (lookahead == '"') ADVANCE(1708); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '\'') ADVANCE(1711); + if (lookahead == '`') ADVANCE(1715); if (lookahead == '\t' || lookahead == ' ') SKIP(171); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1755); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1751); END_STATE(); - case 1755: + case 1751: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1755); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1751); END_STATE(); - case 1756: + case 1752: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 1757: + case 1753: ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1757); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1753); END_STATE(); - case 1758: + case 1754: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 1759: + case 1755: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 1756: + ACCEPT_TOKEN(anon_sym_PERCENT); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + END_STATE(); + case 1757: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1775); + if (lookahead == '>') ADVANCE(1773); END_STATE(); - case 1760: + case 1758: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1775); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '>') ADVANCE(1773); + if (lookahead == '|') ADVANCE(1476); END_STATE(); - case 1761: + case 1759: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1776); + if (lookahead == '>') ADVANCE(1774); END_STATE(); - case 1762: + case 1760: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1776); - if (lookahead == '|') ADVANCE(1481); + if (lookahead == '>') ADVANCE(1774); + if (lookahead == '|') ADVANCE(1477); END_STATE(); - case 1763: + case 1761: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1777); + if (lookahead == '>') ADVANCE(1775); END_STATE(); - case 1764: + case 1762: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1777); - if (lookahead == '|') ADVANCE(1482); + if (lookahead == '>') ADVANCE(1775); + if (lookahead == '|') ADVANCE(1478); END_STATE(); - case 1765: + case 1763: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1778); + if (lookahead == '>') ADVANCE(1776); END_STATE(); - case 1766: + case 1764: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1778); - if (lookahead == '|') ADVANCE(1483); + if (lookahead == '>') ADVANCE(1776); + if (lookahead == '|') ADVANCE(1479); END_STATE(); - case 1767: + case 1765: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1779); + if (lookahead == '>') ADVANCE(1777); END_STATE(); - case 1768: + case 1766: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1779); - if (lookahead == '|') ADVANCE(1484); + if (lookahead == '>') ADVANCE(1777); + if (lookahead == '|') ADVANCE(1480); END_STATE(); - case 1769: + case 1767: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1780); + if (lookahead == '>') ADVANCE(1778); END_STATE(); - case 1770: + case 1768: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1780); - if (lookahead == '|') ADVANCE(1485); + if (lookahead == '>') ADVANCE(1778); + if (lookahead == '|') ADVANCE(1481); END_STATE(); - case 1771: + case 1769: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1781); + if (lookahead == '>') ADVANCE(1779); END_STATE(); - case 1772: + case 1770: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1781); - if (lookahead == '|') ADVANCE(1486); + if (lookahead == '>') ADVANCE(1779); + if (lookahead == '|') ADVANCE(1482); END_STATE(); - case 1773: + case 1771: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1782); + if (lookahead == '>') ADVANCE(1780); END_STATE(); - case 1774: + case 1772: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1782); - if (lookahead == '|') ADVANCE(1487); + if (lookahead == '>') ADVANCE(1780); + if (lookahead == '|') ADVANCE(1483); END_STATE(); - case 1775: + case 1773: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 1776: + case 1774: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 1777: + case 1775: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 1778: + case 1776: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 1779: + case 1777: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 1780: + case 1778: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 1781: + case 1779: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 1782: + case 1780: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); + case 1781: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'r') ADVANCE(1785); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + END_STATE(); + case 1782: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(376); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'u') ADVANCE(1786); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + END_STATE(); case 1783: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(441); - if (lookahead == '>') ADVANCE(527); - if (lookahead == 'r') ADVANCE(1787); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + if (lookahead == '+') ADVANCE(443); + if (lookahead == '>') ADVANCE(526); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); END_STATE(); case 1784: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(528); - if (lookahead == 'u') ADVANCE(1788); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); END_STATE(); case 1785: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(446); - if (lookahead == '>') ADVANCE(530); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + if (lookahead == 'r') ADVANCE(1783); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); END_STATE(); case 1786: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(382); - if (lookahead == '>') ADVANCE(532); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + if (lookahead == 't') ADVANCE(1784); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); END_STATE(); case 1787: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1785); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); END_STATE(); case 1788: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1786); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1865); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'u') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1789: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); + ACCEPT_TOKEN(sym__unquoted_pattern); + ADVANCE_MAP( + '+', 1842, + '-', 1845, + '>', 1762, + 'I', 1952, + '_', 1845, + 'i', 1952, + 'n', 1859, + 'r', 1908, + 'B', 1676, + 'b', 1676, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1867); - if (lookahead == '>') ADVANCE(1766); - if (lookahead == 'r') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1842); + if (lookahead == '-') ADVANCE(1845); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'n') ADVANCE(1859); + if (lookahead == 'r') ADVANCE(1908); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1844, - '-', 1847, - '>', 1764, - 'I', 1954, - '_', 1847, - 'i', 1954, - 'n', 1861, - 'r', 1910, - 'B', 1680, - 'b', 1680, + '+', 1843, + '-', 1845, + '>', 1944, + 'I', 1952, + '_', 1845, + 'i', 1952, + 'n', 1859, + 'r', 1909, + 'B', 1676, + 'b', 1676, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1847); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == 'r') ADVANCE(1910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ADVANCE_MAP( + '+', 1843, + '-', 1845, + '>', 1944, + 'I', 1952, + '_', 1845, + 'i', 1952, + 'r', 1909, + 'B', 1676, + 'b', 1676, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1845, - '-', 1847, - '>', 1946, - 'I', 1954, - '_', 1847, - 'i', 1954, - 'n', 1861, - 'r', 1911, - 'B', 1680, - 'b', 1680, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1843); + if (lookahead == '-') ADVANCE(1845); + if (lookahead == '>') ADVANCE(1944); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'n') ADVANCE(1859); + if (lookahead == 'r') ADVANCE(1909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1845, - '-', 1847, - '>', 1946, - 'I', 1954, - '_', 1847, - 'i', 1954, - 'r', 1911, - 'B', 1680, - 'b', 1680, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1843); + if (lookahead == '-') ADVANCE(1845); + if (lookahead == '>') ADVANCE(1944); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'r') ADVANCE(1909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1845); - if (lookahead == '-') ADVANCE(1847); - if (lookahead == '>') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == 'r') ADVANCE(1911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1866); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1845); - if (lookahead == '-') ADVANCE(1847); - if (lookahead == '>') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'r') ADVANCE(1911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ADVANCE_MAP( + '+', 1894, + '>', 1762, + 'I', 1952, + 'i', 1952, + 'n', 1859, + 'r', 1908, + 'B', 1676, + 'b', 1676, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1868); + if (lookahead == '+') ADVANCE(1894); if (lookahead == '>') ADVANCE(1762); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1859); + if (lookahead == 'r') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1896, - '>', 1764, - 'I', 1954, - 'i', 1954, - 'n', 1861, - 'r', 1910, - 'B', 1680, - 'b', 1680, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1895); + if (lookahead == '>') ADVANCE(1758); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1896); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ADVANCE_MAP( + '+', 1900, + '>', 1944, + 'I', 1952, + 'i', 1952, + 'n', 1859, + 'r', 1909, + 'B', 1676, + 'b', 1676, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1897); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1900); + if (lookahead == '>') ADVANCE(1944); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1952); + if (lookahead == 'r') ADVANCE(1909); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1902, - '>', 1946, - 'I', 1954, - 'i', 1954, - 'n', 1861, - 'r', 1911, - 'B', 1680, - 'b', 1680, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1900); + if (lookahead == '>') ADVANCE(1944); + if (lookahead == 'n') ADVANCE(1859); + if (lookahead == 'r') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1902); - if (lookahead == '>') ADVANCE(1946); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 'r') ADVANCE(1911); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1900); + if (lookahead == '>') ADVANCE(1944); + if (lookahead == 'r') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1902); - if (lookahead == '>') ADVANCE(1946); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == 'r') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1867); + if (lookahead == '>') ADVANCE(1945); + if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'u') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1902); - if (lookahead == '>') ADVANCE(1946); - if (lookahead == 'r') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1867); + if (lookahead == '>') ADVANCE(1945); + if (lookahead == 'u') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); + if (lookahead == '+') ADVANCE(1902); if (lookahead == '>') ADVANCE(1947); - if (lookahead == 'r') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1947); - if (lookahead == 'u') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '+') ADVANCE(1868); + if (lookahead == '>') ADVANCE(1949); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1904); - if (lookahead == '>') ADVANCE(1949); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(1846); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1955); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '-') ADVANCE(1507); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1511); - if (lookahead == '.') ADVANCE(1848); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1957); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '-') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1511); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '-') ADVANCE(1869); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '-') ADVANCE(1939); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1871); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '-') ADVANCE(1940); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1941); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1942); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1943); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '.') ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1944); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '.') ADVANCE(1839); + if (lookahead == '_') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '.') ADVANCE(1846); + if (lookahead == '_') ADVANCE(1817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1841); - if (lookahead == '_') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '=') ADVANCE(1571); + if (lookahead == '~') ADVANCE(1577); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1848); - if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '>') ADVANCE(1523); + if (lookahead == '~') ADVANCE(1576); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1581); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1576); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1574); - if (lookahead == '>') ADVANCE(1527); - if (lookahead == '~') ADVANCE(1580); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1523); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1574); - if (lookahead == '~') ADVANCE(1580); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1527); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1774); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1766); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1946); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1948); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1948); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1950); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1950); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '>') ADVANCE(1951); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1952); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ADVANCE_MAP( + 'I', 1952, + '_', 1845, + 'i', 1952, + 'n', 1859, + '+', 1845, + '-', 1845, + 'B', 1676, + 'b', 1676, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1953); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'i') ADVANCE(1952); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1845); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1954, - '_', 1847, - 'i', 1954, - 'n', 1861, - '+', 1847, - '-', 1847, - 'B', 1680, - 'b', 1680, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'i') ADVANCE(1854); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1845); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1847); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1952); + if (lookahead == 'n') ADVANCE(1859); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'i') ADVANCE(1856); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1847); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1952); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 'n') ADVANCE(1861); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1854); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1954); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1887); + if (lookahead == 'o') ADVANCE(1857); + if (lookahead == 's') ADVANCE(1681); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1856); + if (lookahead == 'I') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1887); + if (lookahead == 's') ADVANCE(1681); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1889); - if (lookahead == 'o') ADVANCE(1859); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1954); - if (lookahead == 'i') ADVANCE(1889); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1840); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'n') ADVANCE(1859); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1845); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1842); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'o') ADVANCE(1822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == 'o') ADVANCE(1826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'o') ADVANCE(1824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1845); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1845); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == 'o') ADVANCE(1828); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1845); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1847); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1917); + if (lookahead == 'r') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1943); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1919); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1945); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1892); + if (lookahead == 'o') ADVANCE(1906); + if (lookahead == 's') ADVANCE(1875); + if (lookahead == 'x') ADVANCE(1901); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1920); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'a') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1894); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 's') ADVANCE(1877); - if (lookahead == 'x') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'c') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'd') ADVANCE(1550); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'd') ADVANCE(1594); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'd') ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1598); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'd') ADVANCE(1919); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'd') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1579); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1581); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1855); + if (lookahead == 't') ADVANCE(1850); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1855); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1857); - if (lookahead == 't') ADVANCE(1852); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1857); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'e') ADVANCE(1893); + if (lookahead == 'h') ADVANCE(1851); + if (lookahead == 'i') ADVANCE(1889); + if (lookahead == 'l') ADVANCE(1882); + if (lookahead == 's') ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'f') ADVANCE(1083); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1895); - if (lookahead == 'h') ADVANCE(1853); - if (lookahead == 'i') ADVANCE(1891); - if (lookahead == 'l') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1938); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'h') ADVANCE(1566); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1087); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'h') ADVANCE(1562); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1570); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'h') ADVANCE(1568); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1566); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'h') ADVANCE(1564); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1572); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'h') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1568); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1931); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'i') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1934); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'k') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'k') ADVANCE(1861); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'k') ADVANCE(1862); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1863); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'l') ADVANCE(1604); + if (lookahead == 'r') ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1864); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1681); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1608); - if (lookahead == 'r') ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1556); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1105); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1856); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'n') ADVANCE(1858); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'n') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1822); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1862); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1824); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1939); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1925); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1927); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1857); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1927); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1826); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1940); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1554); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1552); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1798); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1825); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1807); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1936); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'r') ADVANCE(1935); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1937); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 's') ADVANCE(1558); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 's') ADVANCE(1560); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1562); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 's') ADVANCE(1811); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1564); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 's') ADVANCE(1812); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1813); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1814); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1815); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1809); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1816); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1850); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1811); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1810); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1852); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1795); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1812); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1871); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1873); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1872); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1826); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1806); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1874); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1873); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1808); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1874); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1875); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1828); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1935: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1936: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'u') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1938: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'u') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1930); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'w') ADVANCE(1878); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1935); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'w') ADVANCE(1879); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1881); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'y') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1478); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1479); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1483); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1483); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1476); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1487); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1482); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1480); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1477); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1486); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == '|') ADVANCE(1480); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1481); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1485); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1124); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1957); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1128); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1953); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1959); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1954); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1955); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1958); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 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(1961); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1959: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1960); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1126); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1526); + if (lookahead == '_') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1962: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1620); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1526); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1971); + if (lookahead == '_') ADVANCE(1963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1964: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1530); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1983); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1973); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1973); - if (lookahead == '_') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1975); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1973); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1975); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1975); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'i') ADVANCE(1983); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1975); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1975); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'i') ADVANCE(1975); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1985); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'i') ADVANCE(1979); + if (lookahead == 's') ADVANCE(1681); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1981); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1971); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); 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(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1975); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'a') ADVANCE(1982); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'c') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'e') ADVANCE(1976); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'k') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'n') ADVANCE(1681); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'r') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'y') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1984: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); END_STATE(); case 1985: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1986: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1996); + if (lookahead == '_') ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1987: 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(2013); + if (lookahead == '.') ADVANCE(1989); + if (lookahead == '_') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1988: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1998); - if (lookahead == '_') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '.') ADVANCE(1989); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1989: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1991); - if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '.') ADVANCE(1505); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1990: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '.') ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1991: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1509); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'I') ADVANCE(2010); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == 'i') ADVANCE(2010); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1999); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1992: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'I') ADVANCE(2010); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == 'i') ADVANCE(2002); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1999); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1993: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2012); - if (lookahead == '_') ADVANCE(2001); - if (lookahead == 'i') ADVANCE(2012); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + if (lookahead == 'I') ADVANCE(2010); + if (lookahead == 'i') ADVANCE(2010); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1994: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2012); - if (lookahead == '_') ADVANCE(2001); - if (lookahead == 'i') ADVANCE(2004); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + if (lookahead == 'I') ADVANCE(2010); + if (lookahead == 'i') ADVANCE(2002); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1995: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2012); - if (lookahead == 'i') ADVANCE(2012); + if (lookahead == 'I') ADVANCE(2010); + if (lookahead == 'i') ADVANCE(2006); + if (lookahead == 's') ADVANCE(1681); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1996: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2012); - if (lookahead == 'i') ADVANCE(2004); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '_') ADVANCE(1996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1997: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2012); - if (lookahead == 'i') ADVANCE(2008); - if (lookahead == 's') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '_') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1998: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 1999: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2000: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2001); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2001: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'a') ADVANCE(2009); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2002: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2003: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'c') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2004: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'e') ADVANCE(2003); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2005: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'k') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2006: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'n') ADVANCE(1681); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2007: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'r') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2008: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1685); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 's') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2009: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'y') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2010: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2011: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1685); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); END_STATE(); case 2012: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); - END_STATE(); - case 2013: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); - END_STATE(); - case 2014: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32017,1149 +32011,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2014); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2012); + END_STATE(); + case 2013: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(1640); + if (lookahead == '(') ADVANCE(1614); + if (lookahead == '[') ADVANCE(1728); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + END_STATE(); + case 2014: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2050); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'r') ADVANCE(2056); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1644); - if (lookahead == '(') ADVANCE(1618); - if (lookahead == '[') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '+') ADVANCE(2043); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'u') ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2052); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'r') ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '+') ADVANCE(2051); + if (lookahead == '>') ADVANCE(1758); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2045); - if (lookahead == '>') ADVANCE(1766); - if (lookahead == 'u') ADVANCE(2066); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '+') ADVANCE(2044); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '+') ADVANCE(2053); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'r') ADVANCE(2057); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2046); - if (lookahead == '>') ADVANCE(1762); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '+') ADVANCE(2045); + if (lookahead == '>') ADVANCE(1763); + if (lookahead == 'u') ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2055); - if (lookahead == '>') ADVANCE(1763); - if (lookahead == 'r') ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '+') ADVANCE(2054); + if (lookahead == '>') ADVANCE(1757); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2047); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'u') ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '+') ADVANCE(2046); + if (lookahead == '>') ADVANCE(1759); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2056); - if (lookahead == '>') ADVANCE(1759); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '-') ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2048); - if (lookahead == '>') ADVANCE(1761); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(2039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '.') ADVANCE(1528); + if (lookahead == '_') ADVANCE(2039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1534); - if (lookahead == '_') ADVANCE(2041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '.') ADVANCE(2038); + if (lookahead == '_') ADVANCE(2025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1532); - if (lookahead == '_') ADVANCE(2041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '2') ADVANCE(2080); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2088); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2040); - if (lookahead == '_') ADVANCE(2027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == ':') ADVANCE(2092); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2082); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2090); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == ':') ADVANCE(2094); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2096); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1774); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1766); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1765); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1771); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '>') ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1767); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '_') ADVANCE(2037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1769); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == '_') ADVANCE(2038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2039); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'a') ADVANCE(2048); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'e') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'e') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1111); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'e') ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'e') ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'e') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'e') ADVANCE(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'l') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'l') ADVANCE(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1117); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'l') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2064); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'o') ADVANCE(2029); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'o') ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'o') ADVANCE(2063); + if (lookahead == 'u') ADVANCE(2049); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2075); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2072); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'o') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2065); - if (lookahead == 'u') ADVANCE(2051); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2077); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'o') ADVANCE(2071); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2073); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2016); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2071); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2020); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2018); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'r') ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2038); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 's') ADVANCE(2042); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2062); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 't') ADVANCE(2081); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 't') ADVANCE(2017); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 't') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2019); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 't') ADVANCE(2021); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 't') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'u') ADVANCE(2049); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2075); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'u') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2051); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2077); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'u') ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2043); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'u') ADVANCE(2067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2075); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1118); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2077); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1122); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1127); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2080); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2073); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + lookahead == 'n') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2075); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2079); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); 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(2097); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1116); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2081); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1120); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1583); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1699); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2022); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2028); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2024); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2086: 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(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2083); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2092: 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(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2093: 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(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2027); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2094: 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(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2093); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2029); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); END_STATE(); case 2096: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); - END_STATE(); - case 2097: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); - END_STATE(); - case 2098: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(2101); - if (lookahead == '_') ADVANCE(2102); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(2099); + if (lookahead == '_') ADVANCE(2100); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2104); + lookahead == '-') ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2102); END_STATE(); - case 2099: + case 2097: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(2101); - if (lookahead == '_') ADVANCE(2102); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(2099); + if (lookahead == '_') ADVANCE(2100); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(2100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); + lookahead == '-') ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + END_STATE(); + case 2098: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2101); + if (lookahead == '_') ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + END_STATE(); + case 2099: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2099); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2103); if (lookahead == '_') ADVANCE(2100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); END_STATE(); case 2103: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(1640); + if (lookahead == '(') ADVANCE(1614); + if (lookahead == '[') ADVANCE(1728); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2153); END_STATE(); case 2104: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(2148); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1644); - if (lookahead == '(') ADVANCE(1618); - if (lookahead == '[') ADVANCE(1732); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2155); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(2114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2150); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == '.') ADVANCE(2113); + if (lookahead == '_') ADVANCE(2107); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1534); - if (lookahead == '_') ADVANCE(2116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == '.') ADVANCE(2113); + if (lookahead == '_') ADVANCE(2107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2115); - if (lookahead == '_') ADVANCE(2109); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == '.') ADVANCE(1529); + if (lookahead == '_') ADVANCE(2114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2115); - if (lookahead == '_') ADVANCE(2109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == '2') ADVANCE(2139); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1533); - if (lookahead == '_') ADVANCE(2116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == ':') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2141); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2149); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == ':') ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == '_') ADVANCE(2112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2154); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == '_') ADVANCE(2113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'a') ADVANCE(2119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'e') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2121); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'e') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'l') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1114); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'l') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'l') ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2124); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'r') ADVANCE(2123); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 's') ADVANCE(2117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'u') ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'u') ADVANCE(2120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2118); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2122); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2132); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2132); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1129); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2135); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2136); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2137); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2138); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + lookahead == 'n') ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2129); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + lookahead == 'n') ADVANCE(2126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2130); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + lookahead == 'n') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2128); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2137); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2131); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2138); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2139); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1700); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2104); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2111); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2106); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2141); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2143); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2142); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); END_STATE(); case 2154: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2153); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); - END_STATE(); - case 2155: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); - END_STATE(); - case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1536); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(2159); - if (lookahead == ']') ADVANCE(1493); - if (lookahead == '_') ADVANCE(2160); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1532); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(2157); + if (lookahead == ']') ADVANCE(1489); + if (lookahead == '_') ADVANCE(2158); if (lookahead == '\t' || lookahead == ' ') SKIP(189); if (lookahead == '+' || - lookahead == '-') ADVANCE(2158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2162); + lookahead == '-') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2160); END_STATE(); - case 2157: + case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(2159); - if (lookahead == '_') ADVANCE(2160); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(2157); + if (lookahead == '_') ADVANCE(2158); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2162); + lookahead == '-') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2160); + END_STATE(); + case 2156: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2159); + if (lookahead == '_') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); + END_STATE(); + case 2157: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2161); if (lookahead == '_') ADVANCE(2158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); 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(2162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); END_STATE(); case 2161: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(2196); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2162: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(2168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2198); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == '.') ADVANCE(2167); + if (lookahead == '_') ADVANCE(2164); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1534); - if (lookahead == '_') ADVANCE(2170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == '.') ADVANCE(2167); + if (lookahead == '_') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2169); - if (lookahead == '_') ADVANCE(2166); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2189); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == ':') ADVANCE(555); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2169); if (lookahead == '_') ADVANCE(2166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(559); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'a') ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'e') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2175); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'e') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1111); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'l') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1114); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'l') ADVANCE(2176); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1117); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'l') ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2178); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'r') ADVANCE(2177); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2174); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 's') ADVANCE(2171); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2179); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'u') ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'u') ADVANCE(2174); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2184); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2172); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2184); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2176); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2186); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2186); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1120); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1130); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2189); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1124); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2190); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2191); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1127); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2192); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + lookahead == 'n') ADVANCE(2182); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2183); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + lookahead == 'n') ADVANCE(2180); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2184); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + lookahead == 'n') ADVANCE(2183); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2182); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2191); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2185); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2192); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2193); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1116); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2194); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1122); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1120); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2161); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1126); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2165); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2163); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2193); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2196: 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(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2198); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2195); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2194); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2200); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2196); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); END_STATE(); case 2200: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); - END_STATE(); - case 2201: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); - END_STATE(); - case 2202: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '$') ADVANCE(1497); - if (lookahead == '(') ADVANCE(1588); - if (lookahead == '.') ADVANCE(2205); - if (lookahead == '_') ADVANCE(2206); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '(') ADVANCE(1584); + if (lookahead == '.') ADVANCE(2203); + if (lookahead == '_') ADVANCE(2204); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2208); + lookahead == '-') ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2206); END_STATE(); - case 2203: + case 2201: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2215); - if (lookahead == '.') ADVANCE(2205); - if (lookahead == '_') ADVANCE(2206); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '.') ADVANCE(2203); + if (lookahead == '_') ADVANCE(2204); if (lookahead == '\t' || lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + lookahead == '-') ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + END_STATE(); + case 2202: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(2205); + if (lookahead == '_') ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + END_STATE(); + case 2203: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(2203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2207); if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); 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(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2206); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); END_STATE(); case 2207: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); - END_STATE(); - case 2208: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); - END_STATE(); - case 2209: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2222); + if (lookahead == '#') ADVANCE(2220); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2210); + lookahead != '|') ADVANCE(2208); END_STATE(); - case 2210: + case 2208: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33167,20 +33161,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2210); + lookahead != '|') ADVANCE(2208); END_STATE(); - case 2211: + case 2209: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2221); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2212); + if (lookahead == '#') ADVANCE(2219); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2210); END_STATE(); - case 2212: + case 2210: 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(2212); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2210); END_STATE(); - case 2213: + case 2211: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2220); + if (lookahead == '#') ADVANCE(2218); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -33189,9 +33183,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2214); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2212); END_STATE(); - case 2214: + case 2212: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33201,30 +33195,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2214); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2212); END_STATE(); - case 2215: + case 2213: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2216: + case 2214: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '\r') ADVANCE(674); - if (lookahead != 0) ADVANCE(674); + if (lookahead == '\n') ADVANCE(668); + if (lookahead == '\r') ADVANCE(670); + if (lookahead != 0) ADVANCE(670); END_STATE(); - case 2217: + case 2215: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(671); + if (lookahead == '!') ADVANCE(667); END_STATE(); - case 2218: + case 2216: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); END_STATE(); - case 2219: + case 2217: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1742); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1738); END_STATE(); - case 2220: + case 2218: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33234,13 +33228,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2214); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2212); END_STATE(); - case 2221: + case 2219: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2212); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2210); END_STATE(); - case 2222: + case 2220: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33248,26 +33242,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2210); + lookahead != '|') ADVANCE(2208); END_STATE(); - case 2223: + case 2221: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2225); + lookahead != '\n') ADVANCE(2223); END_STATE(); - case 2224: + case 2222: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2223); + if (lookahead == '#') ADVANCE(2221); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2224); + lookahead == ' ') ADVANCE(2222); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2225); + lookahead != '\n') ADVANCE(2223); END_STATE(); - case 2225: + case 2223: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2225); + lookahead != '\n') ADVANCE(2223); END_STATE(); default: return false; @@ -33815,7 +33809,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 = 638, .external_lex_state = 2}, + [1] = {.lex_state = 634, .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}, @@ -33830,194 +33824,194 @@ 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 = 630, .external_lex_state = 2}, - [17] = {.lex_state = 630, .external_lex_state = 2}, - [18] = {.lex_state = 630, .external_lex_state = 2}, - [19] = {.lex_state = 630, .external_lex_state = 2}, - [20] = {.lex_state = 630, .external_lex_state = 2}, - [21] = {.lex_state = 630, .external_lex_state = 2}, - [22] = {.lex_state = 630, .external_lex_state = 2}, - [23] = {.lex_state = 630, .external_lex_state = 2}, - [24] = {.lex_state = 630, .external_lex_state = 2}, - [25] = {.lex_state = 630, .external_lex_state = 2}, - [26] = {.lex_state = 630, .external_lex_state = 2}, - [27] = {.lex_state = 630, .external_lex_state = 2}, - [28] = {.lex_state = 630, .external_lex_state = 2}, - [29] = {.lex_state = 630, .external_lex_state = 2}, - [30] = {.lex_state = 630, .external_lex_state = 2}, - [31] = {.lex_state = 630, .external_lex_state = 2}, - [32] = {.lex_state = 630, .external_lex_state = 2}, - [33] = {.lex_state = 630, .external_lex_state = 2}, - [34] = {.lex_state = 630, .external_lex_state = 2}, + [16] = {.lex_state = 626, .external_lex_state = 2}, + [17] = {.lex_state = 626, .external_lex_state = 2}, + [18] = {.lex_state = 626, .external_lex_state = 2}, + [19] = {.lex_state = 626, .external_lex_state = 2}, + [20] = {.lex_state = 626, .external_lex_state = 2}, + [21] = {.lex_state = 626, .external_lex_state = 2}, + [22] = {.lex_state = 626, .external_lex_state = 2}, + [23] = {.lex_state = 626, .external_lex_state = 2}, + [24] = {.lex_state = 626, .external_lex_state = 2}, + [25] = {.lex_state = 626, .external_lex_state = 2}, + [26] = {.lex_state = 626, .external_lex_state = 2}, + [27] = {.lex_state = 626, .external_lex_state = 2}, + [28] = {.lex_state = 626, .external_lex_state = 2}, + [29] = {.lex_state = 626, .external_lex_state = 2}, + [30] = {.lex_state = 626, .external_lex_state = 2}, + [31] = {.lex_state = 626, .external_lex_state = 2}, + [32] = {.lex_state = 626, .external_lex_state = 2}, + [33] = {.lex_state = 626, .external_lex_state = 2}, + [34] = {.lex_state = 626, .external_lex_state = 2}, [35] = {.lex_state = 31, .external_lex_state = 2}, - [36] = {.lex_state = 31, .external_lex_state = 2}, + [36] = {.lex_state = 626, .external_lex_state = 2}, [37] = {.lex_state = 31, .external_lex_state = 2}, - [38] = {.lex_state = 630, .external_lex_state = 2}, - [39] = {.lex_state = 31, .external_lex_state = 2}, + [38] = {.lex_state = 31, .external_lex_state = 2}, + [39] = {.lex_state = 626, .external_lex_state = 2}, [40] = {.lex_state = 31, .external_lex_state = 2}, - [41] = {.lex_state = 630, .external_lex_state = 2}, - [42] = {.lex_state = 630, .external_lex_state = 2}, + [41] = {.lex_state = 626, .external_lex_state = 2}, + [42] = {.lex_state = 626, .external_lex_state = 2}, [43] = {.lex_state = 31, .external_lex_state = 2}, - [44] = {.lex_state = 630, .external_lex_state = 2}, - [45] = {.lex_state = 630, .external_lex_state = 2}, + [44] = {.lex_state = 31, .external_lex_state = 2}, + [45] = {.lex_state = 626, .external_lex_state = 2}, [46] = {.lex_state = 31, .external_lex_state = 2}, [47] = {.lex_state = 31, .external_lex_state = 2}, - [48] = {.lex_state = 630, .external_lex_state = 2}, - [49] = {.lex_state = 630, .external_lex_state = 2}, - [50] = {.lex_state = 31, .external_lex_state = 2}, - [51] = {.lex_state = 630, .external_lex_state = 2}, - [52] = {.lex_state = 630, .external_lex_state = 2}, + [48] = {.lex_state = 626, .external_lex_state = 2}, + [49] = {.lex_state = 31, .external_lex_state = 2}, + [50] = {.lex_state = 626, .external_lex_state = 2}, + [51] = {.lex_state = 31, .external_lex_state = 2}, + [52] = {.lex_state = 626, .external_lex_state = 2}, [53] = {.lex_state = 31, .external_lex_state = 2}, - [54] = {.lex_state = 31, .external_lex_state = 2}, + [54] = {.lex_state = 626, .external_lex_state = 2}, [55] = {.lex_state = 31, .external_lex_state = 2}, - [56] = {.lex_state = 630, .external_lex_state = 2}, + [56] = {.lex_state = 626, .external_lex_state = 2}, [57] = {.lex_state = 31, .external_lex_state = 2}, - [58] = {.lex_state = 630, .external_lex_state = 2}, - [59] = {.lex_state = 630, .external_lex_state = 2}, - [60] = {.lex_state = 630, .external_lex_state = 2}, - [61] = {.lex_state = 630, .external_lex_state = 2}, - [62] = {.lex_state = 31, .external_lex_state = 2}, - [63] = {.lex_state = 630, .external_lex_state = 2}, - [64] = {.lex_state = 31, .external_lex_state = 2}, - [65] = {.lex_state = 31, .external_lex_state = 2}, + [58] = {.lex_state = 626, .external_lex_state = 2}, + [59] = {.lex_state = 31, .external_lex_state = 2}, + [60] = {.lex_state = 626, .external_lex_state = 2}, + [61] = {.lex_state = 31, .external_lex_state = 2}, + [62] = {.lex_state = 626, .external_lex_state = 2}, + [63] = {.lex_state = 31, .external_lex_state = 2}, + [64] = {.lex_state = 626, .external_lex_state = 2}, + [65] = {.lex_state = 626, .external_lex_state = 2}, [66] = {.lex_state = 31, .external_lex_state = 2}, - [67] = {.lex_state = 31, .external_lex_state = 2}, + [67] = {.lex_state = 626, .external_lex_state = 2}, [68] = {.lex_state = 31, .external_lex_state = 2}, [69] = {.lex_state = 31, .external_lex_state = 2}, - [70] = {.lex_state = 630, .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 = 630, .external_lex_state = 2}, - [74] = {.lex_state = 630, .external_lex_state = 2}, - [75] = {.lex_state = 31, .external_lex_state = 2}, - [76] = {.lex_state = 630, .external_lex_state = 2}, - [77] = {.lex_state = 31, .external_lex_state = 2}, - [78] = {.lex_state = 630, .external_lex_state = 2}, - [79] = {.lex_state = 630, .external_lex_state = 2}, - [80] = {.lex_state = 630, .external_lex_state = 2}, - [81] = {.lex_state = 630, .external_lex_state = 2}, - [82] = {.lex_state = 630, .external_lex_state = 2}, - [83] = {.lex_state = 630, .external_lex_state = 2}, - [84] = {.lex_state = 630, .external_lex_state = 2}, - [85] = {.lex_state = 630, .external_lex_state = 2}, - [86] = {.lex_state = 630, .external_lex_state = 2}, - [87] = {.lex_state = 630, .external_lex_state = 2}, - [88] = {.lex_state = 630, .external_lex_state = 2}, - [89] = {.lex_state = 630, .external_lex_state = 2}, - [90] = {.lex_state = 630, .external_lex_state = 2}, - [91] = {.lex_state = 630, .external_lex_state = 2}, - [92] = {.lex_state = 1178}, - [93] = {.lex_state = 1183}, - [94] = {.lex_state = 1348}, - [95] = {.lex_state = 1170}, - [96] = {.lex_state = 1184}, - [97] = {.lex_state = 1168}, - [98] = {.lex_state = 1179}, - [99] = {.lex_state = 1186}, - [100] = {.lex_state = 1184}, - [101] = {.lex_state = 1346}, - [102] = {.lex_state = 1185}, - [103] = {.lex_state = 634, .external_lex_state = 2}, - [104] = {.lex_state = 1185}, - [105] = {.lex_state = 43, .external_lex_state = 2}, - [106] = {.lex_state = 1185}, - [107] = {.lex_state = 1185}, - [108] = {.lex_state = 1172}, - [109] = {.lex_state = 1188}, - [110] = {.lex_state = 1350}, - [111] = {.lex_state = 1188}, - [112] = {.lex_state = 1172}, - [113] = {.lex_state = 1346}, - [114] = {.lex_state = 1350}, - [115] = {.lex_state = 1348}, - [116] = {.lex_state = 1174}, - [117] = {.lex_state = 1352}, - [118] = {.lex_state = 1352}, - [119] = {.lex_state = 1190}, - [120] = {.lex_state = 1190}, - [121] = {.lex_state = 634, .external_lex_state = 2}, - [122] = {.lex_state = 1174}, - [123] = {.lex_state = 1174}, - [124] = {.lex_state = 1190}, - [125] = {.lex_state = 1190}, - [126] = {.lex_state = 1174}, - [127] = {.lex_state = 1181}, - [128] = {.lex_state = 1352}, - [129] = {.lex_state = 1192}, - [130] = {.lex_state = 1350}, - [131] = {.lex_state = 1352}, - [132] = {.lex_state = 1350}, - [133] = {.lex_state = 634, .external_lex_state = 2}, - [134] = {.lex_state = 1352}, - [135] = {.lex_state = 1352}, - [136] = {.lex_state = 1352}, - [137] = {.lex_state = 1194}, - [138] = {.lex_state = 1194}, - [139] = {.lex_state = 1352}, - [140] = {.lex_state = 630, .external_lex_state = 2}, - [141] = {.lex_state = 630, .external_lex_state = 2}, - [142] = {.lex_state = 630, .external_lex_state = 2}, - [143] = {.lex_state = 630, .external_lex_state = 2}, - [144] = {.lex_state = 630, .external_lex_state = 2}, - [145] = {.lex_state = 630, .external_lex_state = 2}, - [146] = {.lex_state = 630, .external_lex_state = 2}, - [147] = {.lex_state = 630, .external_lex_state = 2}, - [148] = {.lex_state = 1196}, - [149] = {.lex_state = 630, .external_lex_state = 2}, - [150] = {.lex_state = 1196}, - [151] = {.lex_state = 1196}, - [152] = {.lex_state = 1196}, - [153] = {.lex_state = 630, .external_lex_state = 2}, - [154] = {.lex_state = 630, .external_lex_state = 2}, - [155] = {.lex_state = 630, .external_lex_state = 2}, - [156] = {.lex_state = 630, .external_lex_state = 2}, - [157] = {.lex_state = 630, .external_lex_state = 2}, - [158] = {.lex_state = 630, .external_lex_state = 2}, - [159] = {.lex_state = 630, .external_lex_state = 2}, - [160] = {.lex_state = 630, .external_lex_state = 2}, - [161] = {.lex_state = 630, .external_lex_state = 2}, - [162] = {.lex_state = 630, .external_lex_state = 2}, - [163] = {.lex_state = 630, .external_lex_state = 2}, - [164] = {.lex_state = 630, .external_lex_state = 2}, - [165] = {.lex_state = 630, .external_lex_state = 2}, - [166] = {.lex_state = 630, .external_lex_state = 2}, - [167] = {.lex_state = 630, .external_lex_state = 2}, - [168] = {.lex_state = 630, .external_lex_state = 2}, - [169] = {.lex_state = 630, .external_lex_state = 2}, - [170] = {.lex_state = 630, .external_lex_state = 2}, - [171] = {.lex_state = 630, .external_lex_state = 2}, - [172] = {.lex_state = 630, .external_lex_state = 2}, - [173] = {.lex_state = 630, .external_lex_state = 2}, - [174] = {.lex_state = 630, .external_lex_state = 2}, - [175] = {.lex_state = 630, .external_lex_state = 2}, - [176] = {.lex_state = 630, .external_lex_state = 2}, - [177] = {.lex_state = 630, .external_lex_state = 2}, - [178] = {.lex_state = 630, .external_lex_state = 2}, - [179] = {.lex_state = 630, .external_lex_state = 2}, - [180] = {.lex_state = 630, .external_lex_state = 2}, - [181] = {.lex_state = 630, .external_lex_state = 2}, - [182] = {.lex_state = 630, .external_lex_state = 2}, - [183] = {.lex_state = 630, .external_lex_state = 2}, - [184] = {.lex_state = 630, .external_lex_state = 2}, - [185] = {.lex_state = 630, .external_lex_state = 2}, - [186] = {.lex_state = 630, .external_lex_state = 2}, - [187] = {.lex_state = 630, .external_lex_state = 2}, - [188] = {.lex_state = 630, .external_lex_state = 2}, - [189] = {.lex_state = 630, .external_lex_state = 2}, - [190] = {.lex_state = 630, .external_lex_state = 2}, - [191] = {.lex_state = 630, .external_lex_state = 2}, - [192] = {.lex_state = 1354}, - [193] = {.lex_state = 1176}, - [194] = {.lex_state = 1354}, - [195] = {.lex_state = 1198}, - [196] = {.lex_state = 1198}, - [197] = {.lex_state = 1176}, - [198] = {.lex_state = 1198}, - [199] = {.lex_state = 1198}, - [200] = {.lex_state = 1354}, - [201] = {.lex_state = 1354}, - [202] = {.lex_state = 1200}, - [203] = {.lex_state = 1200}, + [73] = {.lex_state = 626, .external_lex_state = 2}, + [74] = {.lex_state = 31, .external_lex_state = 2}, + [75] = {.lex_state = 626, .external_lex_state = 2}, + [76] = {.lex_state = 31, .external_lex_state = 2}, + [77] = {.lex_state = 626, .external_lex_state = 2}, + [78] = {.lex_state = 626, .external_lex_state = 2}, + [79] = {.lex_state = 626, .external_lex_state = 2}, + [80] = {.lex_state = 626, .external_lex_state = 2}, + [81] = {.lex_state = 626, .external_lex_state = 2}, + [82] = {.lex_state = 626, .external_lex_state = 2}, + [83] = {.lex_state = 626, .external_lex_state = 2}, + [84] = {.lex_state = 626, .external_lex_state = 2}, + [85] = {.lex_state = 626, .external_lex_state = 2}, + [86] = {.lex_state = 626, .external_lex_state = 2}, + [87] = {.lex_state = 626, .external_lex_state = 2}, + [88] = {.lex_state = 626, .external_lex_state = 2}, + [89] = {.lex_state = 626, .external_lex_state = 2}, + [90] = {.lex_state = 626, .external_lex_state = 2}, + [91] = {.lex_state = 626, .external_lex_state = 2}, + [92] = {.lex_state = 1174}, + [93] = {.lex_state = 1179}, + [94] = {.lex_state = 1175}, + [95] = {.lex_state = 1182}, + [96] = {.lex_state = 1342}, + [97] = {.lex_state = 1344}, + [98] = {.lex_state = 1166}, + [99] = {.lex_state = 1164}, + [100] = {.lex_state = 1180}, + [101] = {.lex_state = 1180}, + [102] = {.lex_state = 1342}, + [103] = {.lex_state = 1346}, + [104] = {.lex_state = 1184}, + [105] = {.lex_state = 1181}, + [106] = {.lex_state = 1346}, + [107] = {.lex_state = 1344}, + [108] = {.lex_state = 1181}, + [109] = {.lex_state = 1168}, + [110] = {.lex_state = 630, .external_lex_state = 2}, + [111] = {.lex_state = 43, .external_lex_state = 2}, + [112] = {.lex_state = 1168}, + [113] = {.lex_state = 1181}, + [114] = {.lex_state = 1184}, + [115] = {.lex_state = 1181}, + [116] = {.lex_state = 1346}, + [117] = {.lex_state = 630, .external_lex_state = 2}, + [118] = {.lex_state = 1177}, + [119] = {.lex_state = 1170}, + [120] = {.lex_state = 1348}, + [121] = {.lex_state = 1348}, + [122] = {.lex_state = 1348}, + [123] = {.lex_state = 1186}, + [124] = {.lex_state = 630, .external_lex_state = 2}, + [125] = {.lex_state = 1186}, + [126] = {.lex_state = 1348}, + [127] = {.lex_state = 1188}, + [128] = {.lex_state = 1170}, + [129] = {.lex_state = 1170}, + [130] = {.lex_state = 1186}, + [131] = {.lex_state = 1170}, + [132] = {.lex_state = 1346}, + [133] = {.lex_state = 1186}, + [134] = {.lex_state = 626, .external_lex_state = 2}, + [135] = {.lex_state = 626, .external_lex_state = 2}, + [136] = {.lex_state = 626, .external_lex_state = 2}, + [137] = {.lex_state = 626, .external_lex_state = 2}, + [138] = {.lex_state = 626, .external_lex_state = 2}, + [139] = {.lex_state = 626, .external_lex_state = 2}, + [140] = {.lex_state = 626, .external_lex_state = 2}, + [141] = {.lex_state = 626, .external_lex_state = 2}, + [142] = {.lex_state = 1190}, + [143] = {.lex_state = 626, .external_lex_state = 2}, + [144] = {.lex_state = 626, .external_lex_state = 2}, + [145] = {.lex_state = 1348}, + [146] = {.lex_state = 626, .external_lex_state = 2}, + [147] = {.lex_state = 626, .external_lex_state = 2}, + [148] = {.lex_state = 626, .external_lex_state = 2}, + [149] = {.lex_state = 626, .external_lex_state = 2}, + [150] = {.lex_state = 626, .external_lex_state = 2}, + [151] = {.lex_state = 626, .external_lex_state = 2}, + [152] = {.lex_state = 1348}, + [153] = {.lex_state = 626, .external_lex_state = 2}, + [154] = {.lex_state = 626, .external_lex_state = 2}, + [155] = {.lex_state = 626, .external_lex_state = 2}, + [156] = {.lex_state = 626, .external_lex_state = 2}, + [157] = {.lex_state = 626, .external_lex_state = 2}, + [158] = {.lex_state = 626, .external_lex_state = 2}, + [159] = {.lex_state = 626, .external_lex_state = 2}, + [160] = {.lex_state = 1348}, + [161] = {.lex_state = 626, .external_lex_state = 2}, + [162] = {.lex_state = 626, .external_lex_state = 2}, + [163] = {.lex_state = 626, .external_lex_state = 2}, + [164] = {.lex_state = 1348}, + [165] = {.lex_state = 626, .external_lex_state = 2}, + [166] = {.lex_state = 626, .external_lex_state = 2}, + [167] = {.lex_state = 626, .external_lex_state = 2}, + [168] = {.lex_state = 626, .external_lex_state = 2}, + [169] = {.lex_state = 626, .external_lex_state = 2}, + [170] = {.lex_state = 626, .external_lex_state = 2}, + [171] = {.lex_state = 1190}, + [172] = {.lex_state = 626, .external_lex_state = 2}, + [173] = {.lex_state = 626, .external_lex_state = 2}, + [174] = {.lex_state = 626, .external_lex_state = 2}, + [175] = {.lex_state = 626, .external_lex_state = 2}, + [176] = {.lex_state = 1192}, + [177] = {.lex_state = 626, .external_lex_state = 2}, + [178] = {.lex_state = 626, .external_lex_state = 2}, + [179] = {.lex_state = 626, .external_lex_state = 2}, + [180] = {.lex_state = 626, .external_lex_state = 2}, + [181] = {.lex_state = 626, .external_lex_state = 2}, + [182] = {.lex_state = 626, .external_lex_state = 2}, + [183] = {.lex_state = 626, .external_lex_state = 2}, + [184] = {.lex_state = 626, .external_lex_state = 2}, + [185] = {.lex_state = 626, .external_lex_state = 2}, + [186] = {.lex_state = 626, .external_lex_state = 2}, + [187] = {.lex_state = 1192}, + [188] = {.lex_state = 1192}, + [189] = {.lex_state = 1192}, + [190] = {.lex_state = 626, .external_lex_state = 2}, + [191] = {.lex_state = 626, .external_lex_state = 2}, + [192] = {.lex_state = 1194}, + [193] = {.lex_state = 1194}, + [194] = {.lex_state = 1194}, + [195] = {.lex_state = 1172}, + [196] = {.lex_state = 1172}, + [197] = {.lex_state = 1350}, + [198] = {.lex_state = 1350}, + [199] = {.lex_state = 1194}, + [200] = {.lex_state = 1350}, + [201] = {.lex_state = 1350}, + [202] = {.lex_state = 1196}, + [203] = {.lex_state = 1196}, [204] = {.lex_state = 44, .external_lex_state = 2}, [205] = {.lex_state = 36, .external_lex_state = 2}, [206] = {.lex_state = 36, .external_lex_state = 2}, @@ -34093,7 +34087,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [276] = {.lex_state = 36, .external_lex_state = 2}, [277] = {.lex_state = 36, .external_lex_state = 2}, [278] = {.lex_state = 36, .external_lex_state = 2}, - [279] = {.lex_state = 1347}, + [279] = {.lex_state = 36, .external_lex_state = 2}, [280] = {.lex_state = 36, .external_lex_state = 2}, [281] = {.lex_state = 36, .external_lex_state = 2}, [282] = {.lex_state = 36, .external_lex_state = 2}, @@ -34101,259 +34095,259 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 1349}, + [287] = {.lex_state = 36, .external_lex_state = 2}, [288] = {.lex_state = 36, .external_lex_state = 2}, - [289] = {.lex_state = 1169}, - [290] = {.lex_state = 36, .external_lex_state = 2}, - [291] = {.lex_state = 1171}, - [292] = {.lex_state = 36, .external_lex_state = 2}, - [293] = {.lex_state = 1180}, - [294] = {.lex_state = 36, .external_lex_state = 2}, - [295] = {.lex_state = 1187}, - [296] = {.lex_state = 1349}, - [297] = {.lex_state = 1347}, - [298] = {.lex_state = 1351}, - [299] = {.lex_state = 1189}, - [300] = {.lex_state = 1173}, - [301] = {.lex_state = 1189}, - [302] = {.lex_state = 1173}, - [303] = {.lex_state = 1351}, - [304] = {.lex_state = 1182}, - [305] = {.lex_state = 1191}, - [306] = {.lex_state = 1353}, - [307] = {.lex_state = 1193}, - [308] = {.lex_state = 1351}, - [309] = {.lex_state = 1351}, - [310] = {.lex_state = 1353}, - [311] = {.lex_state = 1353}, - [312] = {.lex_state = 1353}, - [313] = {.lex_state = 1175}, - [314] = {.lex_state = 1175}, - [315] = {.lex_state = 1175}, - [316] = {.lex_state = 1175}, - [317] = {.lex_state = 1191}, - [318] = {.lex_state = 1191}, - [319] = {.lex_state = 1191}, - [320] = {.lex_state = 1195}, - [321] = {.lex_state = 1353}, - [322] = {.lex_state = 1353}, - [323] = {.lex_state = 1353}, - [324] = {.lex_state = 1353}, - [325] = {.lex_state = 1195}, - [326] = {.lex_state = 1197}, - [327] = {.lex_state = 1197}, - [328] = {.lex_state = 1197}, - [329] = {.lex_state = 1197}, + [289] = {.lex_state = 36, .external_lex_state = 2}, + [290] = {.lex_state = 1167}, + [291] = {.lex_state = 1183}, + [292] = {.lex_state = 1176}, + [293] = {.lex_state = 1343}, + [294] = {.lex_state = 1345}, + [295] = {.lex_state = 1165}, + [296] = {.lex_state = 1347}, + [297] = {.lex_state = 1169}, + [298] = {.lex_state = 1345}, + [299] = {.lex_state = 1185}, + [300] = {.lex_state = 1185}, + [301] = {.lex_state = 1347}, + [302] = {.lex_state = 1343}, + [303] = {.lex_state = 1169}, + [304] = {.lex_state = 1349}, + [305] = {.lex_state = 1171}, + [306] = {.lex_state = 1187}, + [307] = {.lex_state = 1187}, + [308] = {.lex_state = 1349}, + [309] = {.lex_state = 1187}, + [310] = {.lex_state = 1187}, + [311] = {.lex_state = 1171}, + [312] = {.lex_state = 1178}, + [313] = {.lex_state = 1347}, + [314] = {.lex_state = 1189}, + [315] = {.lex_state = 1347}, + [316] = {.lex_state = 1349}, + [317] = {.lex_state = 1171}, + [318] = {.lex_state = 1349}, + [319] = {.lex_state = 1171}, + [320] = {.lex_state = 1349}, + [321] = {.lex_state = 1349}, + [322] = {.lex_state = 1191}, + [323] = {.lex_state = 1349}, + [324] = {.lex_state = 1191}, + [325] = {.lex_state = 1349}, + [326] = {.lex_state = 1193}, + [327] = {.lex_state = 1193}, + [328] = {.lex_state = 1193}, + [329] = {.lex_state = 1193}, [330] = {.lex_state = 45, .external_lex_state = 2}, [331] = {.lex_state = 45, .external_lex_state = 2}, [332] = {.lex_state = 45, .external_lex_state = 2}, - [333] = {.lex_state = 1355}, - [334] = {.lex_state = 1355}, - [335] = {.lex_state = 1177}, - [336] = {.lex_state = 1199}, - [337] = {.lex_state = 1177}, - [338] = {.lex_state = 1199}, - [339] = {.lex_state = 1355}, - [340] = {.lex_state = 1355}, - [341] = {.lex_state = 1201}, - [342] = {.lex_state = 1201}, + [333] = {.lex_state = 1195}, + [334] = {.lex_state = 1173}, + [335] = {.lex_state = 1195}, + [336] = {.lex_state = 1351}, + [337] = {.lex_state = 1173}, + [338] = {.lex_state = 1351}, + [339] = {.lex_state = 1351}, + [340] = {.lex_state = 1351}, + [341] = {.lex_state = 1197}, + [342] = {.lex_state = 1197}, [343] = {.lex_state = 122}, - [344] = {.lex_state = 583}, - [345] = {.lex_state = 583}, + [344] = {.lex_state = 579}, + [345] = {.lex_state = 579}, [346] = {.lex_state = 122}, [347] = {.lex_state = 122}, - [348] = {.lex_state = 122}, - [349] = {.lex_state = 583}, - [350] = {.lex_state = 122}, - [351] = {.lex_state = 122}, - [352] = {.lex_state = 45, .external_lex_state = 2}, - [353] = {.lex_state = 122}, - [354] = {.lex_state = 122}, + [348] = {.lex_state = 579}, + [349] = {.lex_state = 579}, + [350] = {.lex_state = 45, .external_lex_state = 2}, + [351] = {.lex_state = 45, .external_lex_state = 2}, + [352] = {.lex_state = 579}, + [353] = {.lex_state = 579}, + [354] = {.lex_state = 579}, [355] = {.lex_state = 45, .external_lex_state = 2}, - [356] = {.lex_state = 583}, - [357] = {.lex_state = 583}, + [356] = {.lex_state = 579}, + [357] = {.lex_state = 579}, [358] = {.lex_state = 122}, - [359] = {.lex_state = 583}, - [360] = {.lex_state = 583}, - [361] = {.lex_state = 122}, - [362] = {.lex_state = 45, .external_lex_state = 2}, + [359] = {.lex_state = 122}, + [360] = {.lex_state = 45, .external_lex_state = 2}, + [361] = {.lex_state = 45, .external_lex_state = 2}, + [362] = {.lex_state = 122}, [363] = {.lex_state = 122}, - [364] = {.lex_state = 583}, + [364] = {.lex_state = 122}, [365] = {.lex_state = 45, .external_lex_state = 2}, - [366] = {.lex_state = 583}, - [367] = {.lex_state = 122}, - [368] = {.lex_state = 45, .external_lex_state = 2}, - [369] = {.lex_state = 583}, + [366] = {.lex_state = 122}, + [367] = {.lex_state = 45, .external_lex_state = 2}, + [368] = {.lex_state = 122}, + [369] = {.lex_state = 122}, [370] = {.lex_state = 45, .external_lex_state = 2}, [371] = {.lex_state = 45, .external_lex_state = 2}, [372] = {.lex_state = 45, .external_lex_state = 2}, [373] = {.lex_state = 45, .external_lex_state = 2}, - [374] = {.lex_state = 45, .external_lex_state = 2}, + [374] = {.lex_state = 579}, [375] = {.lex_state = 122}, [376] = {.lex_state = 122}, - [377] = {.lex_state = 45, .external_lex_state = 2}, - [378] = {.lex_state = 45, .external_lex_state = 2}, - [379] = {.lex_state = 122}, - [380] = {.lex_state = 583}, - [381] = {.lex_state = 583}, - [382] = {.lex_state = 583}, + [377] = {.lex_state = 122}, + [378] = {.lex_state = 579}, + [379] = {.lex_state = 45, .external_lex_state = 2}, + [380] = {.lex_state = 579}, + [381] = {.lex_state = 579}, + [382] = {.lex_state = 579}, [383] = {.lex_state = 122}, - [384] = {.lex_state = 583}, - [385] = {.lex_state = 122}, - [386] = {.lex_state = 583}, - [387] = {.lex_state = 583}, - [388] = {.lex_state = 583}, - [389] = {.lex_state = 587}, - [390] = {.lex_state = 45, .external_lex_state = 2}, - [391] = {.lex_state = 583}, - [392] = {.lex_state = 583}, - [393] = {.lex_state = 587}, - [394] = {.lex_state = 45, .external_lex_state = 2}, - [395] = {.lex_state = 583}, - [396] = {.lex_state = 583}, - [397] = {.lex_state = 583}, - [398] = {.lex_state = 583}, - [399] = {.lex_state = 45, .external_lex_state = 2}, + [384] = {.lex_state = 122}, + [385] = {.lex_state = 579}, + [386] = {.lex_state = 579}, + [387] = {.lex_state = 579}, + [388] = {.lex_state = 579}, + [389] = {.lex_state = 45, .external_lex_state = 2}, + [390] = {.lex_state = 579}, + [391] = {.lex_state = 579}, + [392] = {.lex_state = 45, .external_lex_state = 2}, + [393] = {.lex_state = 579}, + [394] = {.lex_state = 579}, + [395] = {.lex_state = 45, .external_lex_state = 2}, + [396] = {.lex_state = 45, .external_lex_state = 2}, + [397] = {.lex_state = 45, .external_lex_state = 2}, + [398] = {.lex_state = 122}, + [399] = {.lex_state = 583}, [400] = {.lex_state = 45, .external_lex_state = 2}, [401] = {.lex_state = 45, .external_lex_state = 2}, - [402] = {.lex_state = 45, .external_lex_state = 2}, - [403] = {.lex_state = 583}, - [404] = {.lex_state = 45, .external_lex_state = 2}, + [402] = {.lex_state = 583}, + [403] = {.lex_state = 45, .external_lex_state = 2}, + [404] = {.lex_state = 579}, [405] = {.lex_state = 45, .external_lex_state = 2}, - [406] = {.lex_state = 587}, + [406] = {.lex_state = 45, .external_lex_state = 2}, [407] = {.lex_state = 45, .external_lex_state = 2}, - [408] = {.lex_state = 45, .external_lex_state = 2}, - [409] = {.lex_state = 45, .external_lex_state = 2}, - [410] = {.lex_state = 583}, - [411] = {.lex_state = 45, .external_lex_state = 2}, - [412] = {.lex_state = 589}, - [413] = {.lex_state = 587}, - [414] = {.lex_state = 584}, - [415] = {.lex_state = 587}, - [416] = {.lex_state = 584}, - [417] = {.lex_state = 587}, - [418] = {.lex_state = 589}, - [419] = {.lex_state = 587}, - [420] = {.lex_state = 587}, - [421] = {.lex_state = 587}, - [422] = {.lex_state = 584}, - [423] = {.lex_state = 583}, - [424] = {.lex_state = 587}, - [425] = {.lex_state = 583}, - [426] = {.lex_state = 583}, - [427] = {.lex_state = 583}, - [428] = {.lex_state = 584}, - [429] = {.lex_state = 584}, - [430] = {.lex_state = 584}, - [431] = {.lex_state = 591}, - [432] = {.lex_state = 595}, - [433] = {.lex_state = 584}, - [434] = {.lex_state = 587}, - [435] = {.lex_state = 583}, - [436] = {.lex_state = 584}, - [437] = {.lex_state = 584}, - [438] = {.lex_state = 584}, - [439] = {.lex_state = 584}, - [440] = {.lex_state = 584}, - [441] = {.lex_state = 583}, - [442] = {.lex_state = 584}, - [443] = {.lex_state = 627}, - [444] = {.lex_state = 589}, - [445] = {.lex_state = 583}, - [446] = {.lex_state = 587}, - [447] = {.lex_state = 589}, - [448] = {.lex_state = 583}, - [449] = {.lex_state = 587}, - [450] = {.lex_state = 601}, - [451] = {.lex_state = 597}, + [408] = {.lex_state = 579}, + [409] = {.lex_state = 583}, + [410] = {.lex_state = 45, .external_lex_state = 2}, + [411] = {.lex_state = 579}, + [412] = {.lex_state = 583}, + [413] = {.lex_state = 585}, + [414] = {.lex_state = 580}, + [415] = {.lex_state = 579}, + [416] = {.lex_state = 579}, + [417] = {.lex_state = 583}, + [418] = {.lex_state = 583}, + [419] = {.lex_state = 580}, + [420] = {.lex_state = 583}, + [421] = {.lex_state = 583}, + [422] = {.lex_state = 583}, + [423] = {.lex_state = 580}, + [424] = {.lex_state = 583}, + [425] = {.lex_state = 585}, + [426] = {.lex_state = 579}, + [427] = {.lex_state = 580}, + [428] = {.lex_state = 580}, + [429] = {.lex_state = 591}, + [430] = {.lex_state = 579}, + [431] = {.lex_state = 623}, + [432] = {.lex_state = 580}, + [433] = {.lex_state = 580}, + [434] = {.lex_state = 580}, + [435] = {.lex_state = 579}, + [436] = {.lex_state = 580}, + [437] = {.lex_state = 585}, + [438] = {.lex_state = 580}, + [439] = {.lex_state = 580}, + [440] = {.lex_state = 580}, + [441] = {.lex_state = 587}, + [442] = {.lex_state = 579}, + [443] = {.lex_state = 583}, + [444] = {.lex_state = 583}, + [445] = {.lex_state = 579}, + [446] = {.lex_state = 585}, + [447] = {.lex_state = 580}, + [448] = {.lex_state = 593}, + [449] = {.lex_state = 579}, + [450] = {.lex_state = 593}, + [451] = {.lex_state = 580}, [452] = {.lex_state = 41, .external_lex_state = 2}, - [453] = {.lex_state = 584}, - [454] = {.lex_state = 41, .external_lex_state = 2}, + [453] = {.lex_state = 597}, + [454] = {.lex_state = 583}, [455] = {.lex_state = 583}, - [456] = {.lex_state = 584}, + [456] = {.lex_state = 583}, [457] = {.lex_state = 583}, - [458] = {.lex_state = 583}, - [459] = {.lex_state = 593}, - [460] = {.lex_state = 41, .external_lex_state = 2}, - [461] = {.lex_state = 587}, - [462] = {.lex_state = 587}, + [458] = {.lex_state = 41, .external_lex_state = 2}, + [459] = {.lex_state = 589}, + [460] = {.lex_state = 595}, + [461] = {.lex_state = 41, .external_lex_state = 2}, + [462] = {.lex_state = 41, .external_lex_state = 2}, [463] = {.lex_state = 41, .external_lex_state = 2}, - [464] = {.lex_state = 599}, - [465] = {.lex_state = 41, .external_lex_state = 2}, - [466] = {.lex_state = 587}, - [467] = {.lex_state = 41, .external_lex_state = 2}, - [468] = {.lex_state = 41, .external_lex_state = 2}, - [469] = {.lex_state = 597}, - [470] = {.lex_state = 584}, - [471] = {.lex_state = 41, .external_lex_state = 2}, - [472] = {.lex_state = 591}, + [464] = {.lex_state = 41, .external_lex_state = 2}, + [465] = {.lex_state = 583}, + [466] = {.lex_state = 579}, + [467] = {.lex_state = 579}, + [468] = {.lex_state = 580}, + [469] = {.lex_state = 583}, + [470] = {.lex_state = 579}, + [471] = {.lex_state = 591}, + [472] = {.lex_state = 580}, [473] = {.lex_state = 41, .external_lex_state = 2}, - [474] = {.lex_state = 587}, + [474] = {.lex_state = 41, .external_lex_state = 2}, [475] = {.lex_state = 41, .external_lex_state = 2}, - [476] = {.lex_state = 595}, + [476] = {.lex_state = 41, .external_lex_state = 2}, [477] = {.lex_state = 41, .external_lex_state = 2}, [478] = {.lex_state = 41, .external_lex_state = 2}, - [479] = {.lex_state = 587}, - [480] = {.lex_state = 584}, - [481] = {.lex_state = 603}, - [482] = {.lex_state = 41, .external_lex_state = 2}, - [483] = {.lex_state = 45, .external_lex_state = 2}, - [484] = {.lex_state = 599}, - [485] = {.lex_state = 599}, - [486] = {.lex_state = 597}, - [487] = {.lex_state = 584}, - [488] = {.lex_state = 599}, - [489] = {.lex_state = 603}, - [490] = {.lex_state = 583}, + [479] = {.lex_state = 580}, + [480] = {.lex_state = 587}, + [481] = {.lex_state = 595}, + [482] = {.lex_state = 580}, + [483] = {.lex_state = 595}, + [484] = {.lex_state = 45, .external_lex_state = 2}, + [485] = {.lex_state = 579}, + [486] = {.lex_state = 593}, + [487] = {.lex_state = 595}, + [488] = {.lex_state = 593}, + [489] = {.lex_state = 41, .external_lex_state = 2}, + [490] = {.lex_state = 595}, [491] = {.lex_state = 599}, - [492] = {.lex_state = 597}, - [493] = {.lex_state = 584}, - [494] = {.lex_state = 583}, - [495] = {.lex_state = 583}, + [492] = {.lex_state = 599}, + [493] = {.lex_state = 580}, + [494] = {.lex_state = 579}, + [495] = {.lex_state = 580}, [496] = {.lex_state = 41, .external_lex_state = 2}, - [497] = {.lex_state = 41, .external_lex_state = 2}, - [498] = {.lex_state = 584}, - [499] = {.lex_state = 584}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 599}, - [502] = {.lex_state = 599}, - [503] = {.lex_state = 618}, - [504] = {.lex_state = 584}, - [505] = {.lex_state = 584}, - [506] = {.lex_state = 584}, - [507] = {.lex_state = 584}, - [508] = {.lex_state = 584}, - [509] = {.lex_state = 584}, - [510] = {.lex_state = 584}, - [511] = {.lex_state = 584}, - [512] = {.lex_state = 593}, - [513] = {.lex_state = 584}, - [514] = {.lex_state = 584}, - [515] = {.lex_state = 605}, - [516] = {.lex_state = 605}, - [517] = {.lex_state = 605}, - [518] = {.lex_state = 584}, - [519] = {.lex_state = 584}, - [520] = {.lex_state = 584}, - [521] = {.lex_state = 601}, - [522] = {.lex_state = 584}, - [523] = {.lex_state = 584}, - [524] = {.lex_state = 584}, - [525] = {.lex_state = 584}, - [526] = {.lex_state = 583}, + [497] = {.lex_state = 580}, + [498] = {.lex_state = 580}, + [499] = {.lex_state = 580}, + [500] = {.lex_state = 580}, + [501] = {.lex_state = 614}, + [502] = {.lex_state = 601}, + [503] = {.lex_state = 41, .external_lex_state = 2}, + [504] = {.lex_state = 580}, + [505] = {.lex_state = 589}, + [506] = {.lex_state = 580}, + [507] = {.lex_state = 580}, + [508] = {.lex_state = 580}, + [509] = {.lex_state = 580}, + [510] = {.lex_state = 580}, + [511] = {.lex_state = 580}, + [512] = {.lex_state = 580}, + [513] = {.lex_state = 580}, + [514] = {.lex_state = 580}, + [515] = {.lex_state = 580}, + [516] = {.lex_state = 601}, + [517] = {.lex_state = 601}, + [518] = {.lex_state = 580}, + [519] = {.lex_state = 580}, + [520] = {.lex_state = 580}, + [521] = {.lex_state = 579}, + [522] = {.lex_state = 595}, + [523] = {.lex_state = 597}, + [524] = {.lex_state = 595}, + [525] = {.lex_state = 579}, + [526] = {.lex_state = 595}, [527] = {.lex_state = 42, .external_lex_state = 2}, - [528] = {.lex_state = 605}, + [528] = {.lex_state = 42, .external_lex_state = 2}, [529] = {.lex_state = 42, .external_lex_state = 2}, - [530] = {.lex_state = 618}, + [530] = {.lex_state = 42, .external_lex_state = 2}, [531] = {.lex_state = 42, .external_lex_state = 2}, - [532] = {.lex_state = 45, .external_lex_state = 2}, - [533] = {.lex_state = 42, .external_lex_state = 2}, - [534] = {.lex_state = 45, .external_lex_state = 2}, - [535] = {.lex_state = 42, .external_lex_state = 2}, - [536] = {.lex_state = 42, .external_lex_state = 2}, - [537] = {.lex_state = 42, .external_lex_state = 2}, + [532] = {.lex_state = 42, .external_lex_state = 2}, + [533] = {.lex_state = 45, .external_lex_state = 2}, + [534] = {.lex_state = 42, .external_lex_state = 2}, + [535] = {.lex_state = 45, .external_lex_state = 2}, + [536] = {.lex_state = 599}, + [537] = {.lex_state = 45, .external_lex_state = 2}, [538] = {.lex_state = 42, .external_lex_state = 2}, - [539] = {.lex_state = 42, .external_lex_state = 2}, + [539] = {.lex_state = 627, .external_lex_state = 2}, [540] = {.lex_state = 42, .external_lex_state = 2}, [541] = {.lex_state = 42, .external_lex_state = 2}, [542] = {.lex_state = 42, .external_lex_state = 2}, @@ -34400,7 +34394,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [586] = {.lex_state = 580}, [587] = {.lex_state = 42, .external_lex_state = 2}, [588] = {.lex_state = 42, .external_lex_state = 2}, [589] = {.lex_state = 42, .external_lex_state = 2}, @@ -34411,7 +34405,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [594] = {.lex_state = 42, .external_lex_state = 2}, [595] = {.lex_state = 42, .external_lex_state = 2}, [596] = {.lex_state = 42, .external_lex_state = 2}, - [597] = {.lex_state = 603}, + [597] = {.lex_state = 42, .external_lex_state = 2}, [598] = {.lex_state = 42, .external_lex_state = 2}, [599] = {.lex_state = 42, .external_lex_state = 2}, [600] = {.lex_state = 42, .external_lex_state = 2}, @@ -34429,7 +34423,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 42, .external_lex_state = 2}, [613] = {.lex_state = 42, .external_lex_state = 2}, [614] = {.lex_state = 42, .external_lex_state = 2}, - [615] = {.lex_state = 42, .external_lex_state = 2}, + [615] = {.lex_state = 627, .external_lex_state = 2}, [616] = {.lex_state = 42, .external_lex_state = 2}, [617] = {.lex_state = 42, .external_lex_state = 2}, [618] = {.lex_state = 42, .external_lex_state = 2}, @@ -34446,9 +34440,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [629] = {.lex_state = 42, .external_lex_state = 2}, [630] = {.lex_state = 42, .external_lex_state = 2}, [631] = {.lex_state = 42, .external_lex_state = 2}, - [632] = {.lex_state = 42, .external_lex_state = 2}, - [633] = {.lex_state = 42, .external_lex_state = 2}, - [634] = {.lex_state = 42, .external_lex_state = 2}, + [632] = {.lex_state = 580}, + [633] = {.lex_state = 601}, + [634] = {.lex_state = 601}, [635] = {.lex_state = 42, .external_lex_state = 2}, [636] = {.lex_state = 42, .external_lex_state = 2}, [637] = {.lex_state = 42, .external_lex_state = 2}, @@ -34463,17 +34457,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [646] = {.lex_state = 42, .external_lex_state = 2}, [647] = {.lex_state = 42, .external_lex_state = 2}, [648] = {.lex_state = 42, .external_lex_state = 2}, - [649] = {.lex_state = 42, .external_lex_state = 2}, + [649] = {.lex_state = 614}, [650] = {.lex_state = 42, .external_lex_state = 2}, [651] = {.lex_state = 42, .external_lex_state = 2}, - [652] = {.lex_state = 42, .external_lex_state = 2}, + [652] = {.lex_state = 627, .external_lex_state = 2}, [653] = {.lex_state = 42, .external_lex_state = 2}, [654] = {.lex_state = 42, .external_lex_state = 2}, [655] = {.lex_state = 42, .external_lex_state = 2}, [656] = {.lex_state = 42, .external_lex_state = 2}, [657] = {.lex_state = 42, .external_lex_state = 2}, [658] = {.lex_state = 42, .external_lex_state = 2}, - [659] = {.lex_state = 42, .external_lex_state = 2}, + [659] = {.lex_state = 599}, [660] = {.lex_state = 42, .external_lex_state = 2}, [661] = {.lex_state = 42, .external_lex_state = 2}, [662] = {.lex_state = 42, .external_lex_state = 2}, @@ -34481,15 +34475,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [664] = {.lex_state = 42, .external_lex_state = 2}, [665] = {.lex_state = 42, .external_lex_state = 2}, [666] = {.lex_state = 42, .external_lex_state = 2}, - [667] = {.lex_state = 45, .external_lex_state = 2}, - [668] = {.lex_state = 584}, - [669] = {.lex_state = 584}, + [667] = {.lex_state = 614}, + [668] = {.lex_state = 42, .external_lex_state = 2}, + [669] = {.lex_state = 42, .external_lex_state = 2}, [670] = {.lex_state = 42, .external_lex_state = 2}, [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 = 42, .external_lex_state = 2}, - [675] = {.lex_state = 618}, + [675] = {.lex_state = 42, .external_lex_state = 2}, [676] = {.lex_state = 42, .external_lex_state = 2}, [677] = {.lex_state = 42, .external_lex_state = 2}, [678] = {.lex_state = 42, .external_lex_state = 2}, @@ -34498,196 +34492,196 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [681] = {.lex_state = 42, .external_lex_state = 2}, [682] = {.lex_state = 42, .external_lex_state = 2}, [683] = {.lex_state = 42, .external_lex_state = 2}, - [684] = {.lex_state = 603}, + [684] = {.lex_state = 42, .external_lex_state = 2}, [685] = {.lex_state = 42, .external_lex_state = 2}, [686] = {.lex_state = 42, .external_lex_state = 2}, [687] = {.lex_state = 42, .external_lex_state = 2}, [688] = {.lex_state = 42, .external_lex_state = 2}, [689] = {.lex_state = 42, .external_lex_state = 2}, - [690] = {.lex_state = 605}, + [690] = {.lex_state = 42, .external_lex_state = 2}, [691] = {.lex_state = 42, .external_lex_state = 2}, [692] = {.lex_state = 42, .external_lex_state = 2}, [693] = {.lex_state = 42, .external_lex_state = 2}, - [694] = {.lex_state = 584}, - [695] = {.lex_state = 605}, - [696] = {.lex_state = 584}, - [697] = {.lex_state = 584}, - [698] = {.lex_state = 584}, - [699] = {.lex_state = 609}, - [700] = {.lex_state = 607}, - [701] = {.lex_state = 41, .external_lex_state = 2}, - [702] = {.lex_state = 631, .external_lex_state = 2}, - [703] = {.lex_state = 618}, - [704] = {.lex_state = 584}, - [705] = {.lex_state = 584}, - [706] = {.lex_state = 41, .external_lex_state = 2}, - [707] = {.lex_state = 41, .external_lex_state = 2}, - [708] = {.lex_state = 584}, - [709] = {.lex_state = 584}, - [710] = {.lex_state = 631, .external_lex_state = 2}, - [711] = {.lex_state = 605}, - [712] = {.lex_state = 605}, - [713] = {.lex_state = 584}, - [714] = {.lex_state = 584}, - [715] = {.lex_state = 618}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 584}, - [718] = {.lex_state = 584}, - [719] = {.lex_state = 584}, - [720] = {.lex_state = 584}, - [721] = {.lex_state = 631, .external_lex_state = 2}, - [722] = {.lex_state = 584}, - [723] = {.lex_state = 584}, - [724] = {.lex_state = 584}, - [725] = {.lex_state = 584}, - [726] = {.lex_state = 618}, - [727] = {.lex_state = 584}, - [728] = {.lex_state = 584}, - [729] = {.lex_state = 605}, - [730] = {.lex_state = 584}, - [731] = {.lex_state = 584}, - [732] = {.lex_state = 584}, - [733] = {.lex_state = 584}, - [734] = {.lex_state = 605}, - [735] = {.lex_state = 41, .external_lex_state = 2}, - [736] = {.lex_state = 41, .external_lex_state = 2}, - [737] = {.lex_state = 584}, - [738] = {.lex_state = 584}, - [739] = {.lex_state = 584}, - [740] = {.lex_state = 584}, - [741] = {.lex_state = 584}, - [742] = {.lex_state = 584}, - [743] = {.lex_state = 584}, - [744] = {.lex_state = 584}, - [745] = {.lex_state = 584}, - [746] = {.lex_state = 42, .external_lex_state = 2}, - [747] = {.lex_state = 42, .external_lex_state = 2}, - [748] = {.lex_state = 584}, - [749] = {.lex_state = 42, .external_lex_state = 2}, - [750] = {.lex_state = 584}, - [751] = {.lex_state = 42, .external_lex_state = 2}, - [752] = {.lex_state = 584}, - [753] = {.lex_state = 42, .external_lex_state = 2}, - [754] = {.lex_state = 42, .external_lex_state = 2}, - [755] = {.lex_state = 584}, - [756] = {.lex_state = 584}, - [757] = {.lex_state = 584}, - [758] = {.lex_state = 611}, - [759] = {.lex_state = 584}, - [760] = {.lex_state = 584}, - [761] = {.lex_state = 584}, - [762] = {.lex_state = 584}, - [763] = {.lex_state = 611}, - [764] = {.lex_state = 584}, - [765] = {.lex_state = 584}, - [766] = {.lex_state = 584}, - [767] = {.lex_state = 584}, - [768] = {.lex_state = 584}, - [769] = {.lex_state = 584}, - [770] = {.lex_state = 584}, - [771] = {.lex_state = 584}, - [772] = {.lex_state = 584}, - [773] = {.lex_state = 584}, - [774] = {.lex_state = 584}, - [775] = {.lex_state = 584}, - [776] = {.lex_state = 584}, - [777] = {.lex_state = 584}, - [778] = {.lex_state = 584}, - [779] = {.lex_state = 584}, - [780] = {.lex_state = 584}, - [781] = {.lex_state = 584}, - [782] = {.lex_state = 584}, - [783] = {.lex_state = 584}, - [784] = {.lex_state = 584}, - [785] = {.lex_state = 584}, - [786] = {.lex_state = 584}, - [787] = {.lex_state = 584}, - [788] = {.lex_state = 584}, - [789] = {.lex_state = 584}, - [790] = {.lex_state = 584}, - [791] = {.lex_state = 584}, - [792] = {.lex_state = 584}, - [793] = {.lex_state = 584}, - [794] = {.lex_state = 584}, - [795] = {.lex_state = 584}, - [796] = {.lex_state = 42, .external_lex_state = 2}, - [797] = {.lex_state = 42, .external_lex_state = 2}, - [798] = {.lex_state = 42, .external_lex_state = 2}, - [799] = {.lex_state = 42, .external_lex_state = 2}, - [800] = {.lex_state = 42, .external_lex_state = 2}, - [801] = {.lex_state = 584}, - [802] = {.lex_state = 584}, - [803] = {.lex_state = 584}, - [804] = {.lex_state = 584}, - [805] = {.lex_state = 584}, - [806] = {.lex_state = 42, .external_lex_state = 2}, - [807] = {.lex_state = 584}, - [808] = {.lex_state = 584}, - [809] = {.lex_state = 584}, - [810] = {.lex_state = 584}, - [811] = {.lex_state = 584}, - [812] = {.lex_state = 42, .external_lex_state = 2}, - [813] = {.lex_state = 584}, - [814] = {.lex_state = 584}, - [815] = {.lex_state = 584}, - [816] = {.lex_state = 42, .external_lex_state = 2}, - [817] = {.lex_state = 584}, - [818] = {.lex_state = 584}, - [819] = {.lex_state = 42, .external_lex_state = 2}, - [820] = {.lex_state = 584}, - [821] = {.lex_state = 584}, + [694] = {.lex_state = 42, .external_lex_state = 2}, + [695] = {.lex_state = 42, .external_lex_state = 2}, + [696] = {.lex_state = 42, .external_lex_state = 2}, + [697] = {.lex_state = 580}, + [698] = {.lex_state = 580}, + [699] = {.lex_state = 580}, + [700] = {.lex_state = 580}, + [701] = {.lex_state = 580}, + [702] = {.lex_state = 580}, + [703] = {.lex_state = 580}, + [704] = {.lex_state = 580}, + [705] = {.lex_state = 580}, + [706] = {.lex_state = 580}, + [707] = {.lex_state = 580}, + [708] = {.lex_state = 580}, + [709] = {.lex_state = 603}, + [710] = {.lex_state = 580}, + [711] = {.lex_state = 580}, + [712] = {.lex_state = 580}, + [713] = {.lex_state = 580}, + [714] = {.lex_state = 580}, + [715] = {.lex_state = 580}, + [716] = {.lex_state = 580}, + [717] = {.lex_state = 580}, + [718] = {.lex_state = 580}, + [719] = {.lex_state = 580}, + [720] = {.lex_state = 41, .external_lex_state = 2}, + [721] = {.lex_state = 601}, + [722] = {.lex_state = 580}, + [723] = {.lex_state = 580}, + [724] = {.lex_state = 601}, + [725] = {.lex_state = 601}, + [726] = {.lex_state = 580}, + [727] = {.lex_state = 614}, + [728] = {.lex_state = 41, .external_lex_state = 2}, + [729] = {.lex_state = 580}, + [730] = {.lex_state = 580}, + [731] = {.lex_state = 41, .external_lex_state = 2}, + [732] = {.lex_state = 41, .external_lex_state = 2}, + [733] = {.lex_state = 580}, + [734] = {.lex_state = 627, .external_lex_state = 2}, + [735] = {.lex_state = 627, .external_lex_state = 2}, + [736] = {.lex_state = 580}, + [737] = {.lex_state = 614}, + [738] = {.lex_state = 601}, + [739] = {.lex_state = 41, .external_lex_state = 2}, + [740] = {.lex_state = 605}, + [741] = {.lex_state = 601}, + [742] = {.lex_state = 614}, + [743] = {.lex_state = 580}, + [744] = {.lex_state = 41, .external_lex_state = 2}, + [745] = {.lex_state = 580}, + [746] = {.lex_state = 580}, + [747] = {.lex_state = 580}, + [748] = {.lex_state = 580}, + [749] = {.lex_state = 580}, + [750] = {.lex_state = 580}, + [751] = {.lex_state = 580}, + [752] = {.lex_state = 580}, + [753] = {.lex_state = 580}, + [754] = {.lex_state = 580}, + [755] = {.lex_state = 580}, + [756] = {.lex_state = 580}, + [757] = {.lex_state = 580}, + [758] = {.lex_state = 580}, + [759] = {.lex_state = 580}, + [760] = {.lex_state = 580}, + [761] = {.lex_state = 580}, + [762] = {.lex_state = 580}, + [763] = {.lex_state = 580}, + [764] = {.lex_state = 580}, + [765] = {.lex_state = 580}, + [766] = {.lex_state = 580}, + [767] = {.lex_state = 580}, + [768] = {.lex_state = 580}, + [769] = {.lex_state = 580}, + [770] = {.lex_state = 580}, + [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 = 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 = 42, .external_lex_state = 2}, + [781] = {.lex_state = 42, .external_lex_state = 2}, + [782] = {.lex_state = 42, .external_lex_state = 2}, + [783] = {.lex_state = 42, .external_lex_state = 2}, + [784] = {.lex_state = 580}, + [785] = {.lex_state = 580}, + [786] = {.lex_state = 580}, + [787] = {.lex_state = 580}, + [788] = {.lex_state = 580}, + [789] = {.lex_state = 580}, + [790] = {.lex_state = 580}, + [791] = {.lex_state = 580}, + [792] = {.lex_state = 580}, + [793] = {.lex_state = 580}, + [794] = {.lex_state = 580}, + [795] = {.lex_state = 580}, + [796] = {.lex_state = 580}, + [797] = {.lex_state = 580}, + [798] = {.lex_state = 603}, + [799] = {.lex_state = 580}, + [800] = {.lex_state = 627, .external_lex_state = 2}, + [801] = {.lex_state = 627, .external_lex_state = 2}, + [802] = {.lex_state = 580}, + [803] = {.lex_state = 580}, + [804] = {.lex_state = 605}, + [805] = {.lex_state = 580}, + [806] = {.lex_state = 580}, + [807] = {.lex_state = 580}, + [808] = {.lex_state = 580}, + [809] = {.lex_state = 580}, + [810] = {.lex_state = 580}, + [811] = {.lex_state = 603}, + [812] = {.lex_state = 580}, + [813] = {.lex_state = 580}, + [814] = {.lex_state = 580}, + [815] = {.lex_state = 607}, + [816] = {.lex_state = 607}, + [817] = {.lex_state = 580}, + [818] = {.lex_state = 580}, + [819] = {.lex_state = 580}, + [820] = {.lex_state = 580}, + [821] = {.lex_state = 580}, [822] = {.lex_state = 42, .external_lex_state = 2}, - [823] = {.lex_state = 584}, - [824] = {.lex_state = 584}, - [825] = {.lex_state = 584}, - [826] = {.lex_state = 584}, - [827] = {.lex_state = 584}, - [828] = {.lex_state = 42, .external_lex_state = 2}, - [829] = {.lex_state = 584}, - [830] = {.lex_state = 584}, - [831] = {.lex_state = 42, .external_lex_state = 2}, + [823] = {.lex_state = 580}, + [824] = {.lex_state = 42, .external_lex_state = 2}, + [825] = {.lex_state = 580}, + [826] = {.lex_state = 580}, + [827] = {.lex_state = 580}, + [828] = {.lex_state = 580}, + [829] = {.lex_state = 580}, + [830] = {.lex_state = 42, .external_lex_state = 2}, + [831] = {.lex_state = 580}, [832] = {.lex_state = 42, .external_lex_state = 2}, - [833] = {.lex_state = 42, .external_lex_state = 2}, - [834] = {.lex_state = 42, .external_lex_state = 2}, + [833] = {.lex_state = 580}, + [834] = {.lex_state = 580}, [835] = {.lex_state = 42, .external_lex_state = 2}, - [836] = {.lex_state = 42, .external_lex_state = 2}, + [836] = {.lex_state = 580}, [837] = {.lex_state = 42, .external_lex_state = 2}, - [838] = {.lex_state = 42, .external_lex_state = 2}, + [838] = {.lex_state = 580}, [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}, [843] = {.lex_state = 42, .external_lex_state = 2}, - [844] = {.lex_state = 584}, + [844] = {.lex_state = 42, .external_lex_state = 2}, [845] = {.lex_state = 42, .external_lex_state = 2}, [846] = {.lex_state = 42, .external_lex_state = 2}, - [847] = {.lex_state = 607}, + [847] = {.lex_state = 42, .external_lex_state = 2}, [848] = {.lex_state = 42, .external_lex_state = 2}, - [849] = {.lex_state = 584}, - [850] = {.lex_state = 584}, + [849] = {.lex_state = 42, .external_lex_state = 2}, + [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 = 42, .external_lex_state = 2}, [854] = {.lex_state = 42, .external_lex_state = 2}, - [855] = {.lex_state = 584}, + [855] = {.lex_state = 42, .external_lex_state = 2}, [856] = {.lex_state = 42, .external_lex_state = 2}, [857] = {.lex_state = 42, .external_lex_state = 2}, - [858] = {.lex_state = 42, .external_lex_state = 2}, - [859] = {.lex_state = 42, .external_lex_state = 2}, - [860] = {.lex_state = 42, .external_lex_state = 2}, - [861] = {.lex_state = 42, .external_lex_state = 2}, - [862] = {.lex_state = 42, .external_lex_state = 2}, - [863] = {.lex_state = 42, .external_lex_state = 2}, - [864] = {.lex_state = 42, .external_lex_state = 2}, - [865] = {.lex_state = 42, .external_lex_state = 2}, - [866] = {.lex_state = 42, .external_lex_state = 2}, - [867] = {.lex_state = 42, .external_lex_state = 2}, + [858] = {.lex_state = 580}, + [859] = {.lex_state = 580}, + [860] = {.lex_state = 580}, + [861] = {.lex_state = 580}, + [862] = {.lex_state = 580}, + [863] = {.lex_state = 580}, + [864] = {.lex_state = 580}, + [865] = {.lex_state = 580}, + [866] = {.lex_state = 580}, + [867] = {.lex_state = 580}, [868] = {.lex_state = 42, .external_lex_state = 2}, [869] = {.lex_state = 42, .external_lex_state = 2}, [870] = {.lex_state = 42, .external_lex_state = 2}, - [871] = {.lex_state = 584}, + [871] = {.lex_state = 42, .external_lex_state = 2}, [872] = {.lex_state = 42, .external_lex_state = 2}, - [873] = {.lex_state = 631, .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}, @@ -34695,688 +34689,688 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 42, .external_lex_state = 2}, - [882] = {.lex_state = 42, .external_lex_state = 2}, - [883] = {.lex_state = 42, .external_lex_state = 2}, + [881] = {.lex_state = 580}, + [882] = {.lex_state = 580}, + [883] = {.lex_state = 580}, [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 = 42, .external_lex_state = 2}, - [888] = {.lex_state = 42, .external_lex_state = 2}, - [889] = {.lex_state = 584}, - [890] = {.lex_state = 584}, + [885] = {.lex_state = 627, .external_lex_state = 2}, + [886] = {.lex_state = 627, .external_lex_state = 2}, + [887] = {.lex_state = 609}, + [888] = {.lex_state = 580}, + [889] = {.lex_state = 580}, + [890] = {.lex_state = 42, .external_lex_state = 2}, [891] = {.lex_state = 42, .external_lex_state = 2}, - [892] = {.lex_state = 631, .external_lex_state = 2}, + [892] = {.lex_state = 42, .external_lex_state = 2}, [893] = {.lex_state = 42, .external_lex_state = 2}, - [894] = {.lex_state = 584}, + [894] = {.lex_state = 42, .external_lex_state = 2}, [895] = {.lex_state = 42, .external_lex_state = 2}, - [896] = {.lex_state = 584}, - [897] = {.lex_state = 584}, - [898] = {.lex_state = 584}, - [899] = {.lex_state = 584}, - [900] = {.lex_state = 584}, - [901] = {.lex_state = 584}, - [902] = {.lex_state = 584}, - [903] = {.lex_state = 584}, - [904] = {.lex_state = 584}, - [905] = {.lex_state = 584}, - [906] = {.lex_state = 584}, + [896] = {.lex_state = 42, .external_lex_state = 2}, + [897] = {.lex_state = 42, .external_lex_state = 2}, + [898] = {.lex_state = 42, .external_lex_state = 2}, + [899] = {.lex_state = 42, .external_lex_state = 2}, + [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 = 42, .external_lex_state = 2}, + [904] = {.lex_state = 42, .external_lex_state = 2}, + [905] = {.lex_state = 42, .external_lex_state = 2}, + [906] = {.lex_state = 42, .external_lex_state = 2}, [907] = {.lex_state = 42, .external_lex_state = 2}, [908] = {.lex_state = 42, .external_lex_state = 2}, - [909] = {.lex_state = 584}, + [909] = {.lex_state = 42, .external_lex_state = 2}, [910] = {.lex_state = 42, .external_lex_state = 2}, - [911] = {.lex_state = 584}, + [911] = {.lex_state = 42, .external_lex_state = 2}, [912] = {.lex_state = 42, .external_lex_state = 2}, - [913] = {.lex_state = 584}, + [913] = {.lex_state = 42, .external_lex_state = 2}, [914] = {.lex_state = 42, .external_lex_state = 2}, - [915] = {.lex_state = 584}, - [916] = {.lex_state = 584}, - [917] = {.lex_state = 584}, - [918] = {.lex_state = 607}, - [919] = {.lex_state = 609}, - [920] = {.lex_state = 613}, - [921] = {.lex_state = 42, .external_lex_state = 2}, - [922] = {.lex_state = 584}, - [923] = {.lex_state = 42, .external_lex_state = 2}, - [924] = {.lex_state = 584}, - [925] = {.lex_state = 631, .external_lex_state = 2}, - [926] = {.lex_state = 584}, - [927] = {.lex_state = 613}, - [928] = {.lex_state = 611}, - [929] = {.lex_state = 613}, - [930] = {.lex_state = 613}, - [931] = {.lex_state = 613}, - [932] = {.lex_state = 611}, - [933] = {.lex_state = 613}, - [934] = {.lex_state = 613}, - [935] = {.lex_state = 613}, - [936] = {.lex_state = 613}, - [937] = {.lex_state = 613}, - [938] = {.lex_state = 613}, - [939] = {.lex_state = 613}, - [940] = {.lex_state = 613}, - [941] = {.lex_state = 584}, - [942] = {.lex_state = 584}, - [943] = {.lex_state = 584}, - [944] = {.lex_state = 584}, - [945] = {.lex_state = 584}, - [946] = {.lex_state = 584}, - [947] = {.lex_state = 584}, - [948] = {.lex_state = 584}, - [949] = {.lex_state = 584}, - [950] = {.lex_state = 584}, - [951] = {.lex_state = 584}, - [952] = {.lex_state = 631, .external_lex_state = 2}, - [953] = {.lex_state = 584}, - [954] = {.lex_state = 584}, - [955] = {.lex_state = 584}, - [956] = {.lex_state = 584}, - [957] = {.lex_state = 584}, - [958] = {.lex_state = 584}, - [959] = {.lex_state = 584}, - [960] = {.lex_state = 51, .external_lex_state = 2}, - [961] = {.lex_state = 584}, - [962] = {.lex_state = 584}, - [963] = {.lex_state = 584}, - [964] = {.lex_state = 584}, - [965] = {.lex_state = 584}, - [966] = {.lex_state = 584}, - [967] = {.lex_state = 584}, - [968] = {.lex_state = 584}, - [969] = {.lex_state = 584}, - [970] = {.lex_state = 584}, - [971] = {.lex_state = 584}, - [972] = {.lex_state = 584}, - [973] = {.lex_state = 584}, - [974] = {.lex_state = 584}, - [975] = {.lex_state = 584}, - [976] = {.lex_state = 584}, - [977] = {.lex_state = 51, .external_lex_state = 2}, - [978] = {.lex_state = 584}, - [979] = {.lex_state = 584}, - [980] = {.lex_state = 584}, - [981] = {.lex_state = 584}, - [982] = {.lex_state = 584}, - [983] = {.lex_state = 631, .external_lex_state = 2}, - [984] = {.lex_state = 631, .external_lex_state = 2}, - [985] = {.lex_state = 584}, - [986] = {.lex_state = 51, .external_lex_state = 2}, - [987] = {.lex_state = 584}, - [988] = {.lex_state = 584}, - [989] = {.lex_state = 584}, - [990] = {.lex_state = 584}, - [991] = {.lex_state = 584}, - [992] = {.lex_state = 584}, - [993] = {.lex_state = 584}, - [994] = {.lex_state = 584}, - [995] = {.lex_state = 584}, - [996] = {.lex_state = 584}, - [997] = {.lex_state = 584}, - [998] = {.lex_state = 584}, - [999] = {.lex_state = 584}, - [1000] = {.lex_state = 584}, - [1001] = {.lex_state = 584}, - [1002] = {.lex_state = 584}, - [1003] = {.lex_state = 584}, - [1004] = {.lex_state = 584}, - [1005] = {.lex_state = 584}, - [1006] = {.lex_state = 584}, - [1007] = {.lex_state = 584}, - [1008] = {.lex_state = 584}, - [1009] = {.lex_state = 584}, - [1010] = {.lex_state = 584}, - [1011] = {.lex_state = 584}, - [1012] = {.lex_state = 584}, - [1013] = {.lex_state = 584}, - [1014] = {.lex_state = 584}, - [1015] = {.lex_state = 584}, - [1016] = {.lex_state = 584}, - [1017] = {.lex_state = 584}, - [1018] = {.lex_state = 584}, - [1019] = {.lex_state = 584}, - [1020] = {.lex_state = 584}, - [1021] = {.lex_state = 48, .external_lex_state = 2}, - [1022] = {.lex_state = 584}, - [1023] = {.lex_state = 584}, - [1024] = {.lex_state = 584}, - [1025] = {.lex_state = 584}, - [1026] = {.lex_state = 584}, - [1027] = {.lex_state = 48, .external_lex_state = 2}, - [1028] = {.lex_state = 584}, - [1029] = {.lex_state = 584}, - [1030] = {.lex_state = 584}, - [1031] = {.lex_state = 584}, - [1032] = {.lex_state = 584}, - [1033] = {.lex_state = 584}, - [1034] = {.lex_state = 584}, - [1035] = {.lex_state = 584}, - [1036] = {.lex_state = 584}, - [1037] = {.lex_state = 615}, - [1038] = {.lex_state = 615}, - [1039] = {.lex_state = 615}, - [1040] = {.lex_state = 584}, - [1041] = {.lex_state = 584}, - [1042] = {.lex_state = 584}, - [1043] = {.lex_state = 584}, - [1044] = {.lex_state = 630, .external_lex_state = 2}, - [1045] = {.lex_state = 613}, - [1046] = {.lex_state = 584}, - [1047] = {.lex_state = 584}, - [1048] = {.lex_state = 584}, - [1049] = {.lex_state = 584}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 584}, - [1052] = {.lex_state = 584}, - [1053] = {.lex_state = 584}, - [1054] = {.lex_state = 584}, - [1055] = {.lex_state = 584}, - [1056] = {.lex_state = 615}, - [1057] = {.lex_state = 584}, - [1058] = {.lex_state = 584}, - [1059] = {.lex_state = 584}, - [1060] = {.lex_state = 584}, - [1061] = {.lex_state = 584}, - [1062] = {.lex_state = 51, .external_lex_state = 2}, - [1063] = {.lex_state = 584}, - [1064] = {.lex_state = 51, .external_lex_state = 2}, - [1065] = {.lex_state = 584}, - [1066] = {.lex_state = 584}, - [1067] = {.lex_state = 584}, - [1068] = {.lex_state = 33, .external_lex_state = 2}, - [1069] = {.lex_state = 584}, - [1070] = {.lex_state = 42, .external_lex_state = 2}, - [1071] = {.lex_state = 42, .external_lex_state = 2}, - [1072] = {.lex_state = 42, .external_lex_state = 2}, - [1073] = {.lex_state = 613}, - [1074] = {.lex_state = 584}, - [1075] = {.lex_state = 584}, - [1076] = {.lex_state = 584}, - [1077] = {.lex_state = 613}, - [1078] = {.lex_state = 613}, - [1079] = {.lex_state = 584}, - [1080] = {.lex_state = 613}, - [1081] = {.lex_state = 584}, - [1082] = {.lex_state = 584}, - [1083] = {.lex_state = 584}, - [1084] = {.lex_state = 584}, - [1085] = {.lex_state = 584}, - [1086] = {.lex_state = 584}, - [1087] = {.lex_state = 584}, - [1088] = {.lex_state = 584}, - [1089] = {.lex_state = 584}, - [1090] = {.lex_state = 630, .external_lex_state = 2}, - [1091] = {.lex_state = 584}, - [1092] = {.lex_state = 584}, - [1093] = {.lex_state = 584}, - [1094] = {.lex_state = 584}, - [1095] = {.lex_state = 584}, - [1096] = {.lex_state = 584}, - [1097] = {.lex_state = 584}, - [1098] = {.lex_state = 584}, - [1099] = {.lex_state = 42, .external_lex_state = 2}, - [1100] = {.lex_state = 42, .external_lex_state = 2}, - [1101] = {.lex_state = 42, .external_lex_state = 2}, - [1102] = {.lex_state = 584}, - [1103] = {.lex_state = 584}, - [1104] = {.lex_state = 584}, - [1105] = {.lex_state = 584}, - [1106] = {.lex_state = 584}, - [1107] = {.lex_state = 584}, - [1108] = {.lex_state = 584}, - [1109] = {.lex_state = 584}, - [1110] = {.lex_state = 584}, - [1111] = {.lex_state = 584}, - [1112] = {.lex_state = 584}, - [1113] = {.lex_state = 584}, - [1114] = {.lex_state = 584}, - [1115] = {.lex_state = 584}, - [1116] = {.lex_state = 584}, - [1117] = {.lex_state = 584}, - [1118] = {.lex_state = 584}, - [1119] = {.lex_state = 584}, - [1120] = {.lex_state = 584}, - [1121] = {.lex_state = 584}, - [1122] = {.lex_state = 584}, - [1123] = {.lex_state = 584}, - [1124] = {.lex_state = 584}, - [1125] = {.lex_state = 613}, - [1126] = {.lex_state = 613}, - [1127] = {.lex_state = 613}, - [1128] = {.lex_state = 584}, - [1129] = {.lex_state = 584}, - [1130] = {.lex_state = 584}, - [1131] = {.lex_state = 584}, - [1132] = {.lex_state = 584}, - [1133] = {.lex_state = 584}, - [1134] = {.lex_state = 584}, - [1135] = {.lex_state = 613}, - [1136] = {.lex_state = 613}, - [1137] = {.lex_state = 613}, - [1138] = {.lex_state = 584}, - [1139] = {.lex_state = 584}, - [1140] = {.lex_state = 584}, - [1141] = {.lex_state = 48, .external_lex_state = 2}, - [1142] = {.lex_state = 613}, - [1143] = {.lex_state = 584}, - [1144] = {.lex_state = 613}, - [1145] = {.lex_state = 584}, - [1146] = {.lex_state = 584}, - [1147] = {.lex_state = 613}, - [1148] = {.lex_state = 584}, - [1149] = {.lex_state = 584}, - [1150] = {.lex_state = 630, .external_lex_state = 2}, - [1151] = {.lex_state = 584}, - [1152] = {.lex_state = 584}, - [1153] = {.lex_state = 51, .external_lex_state = 2}, - [1154] = {.lex_state = 51, .external_lex_state = 2}, - [1155] = {.lex_state = 584}, - [1156] = {.lex_state = 584}, - [1157] = {.lex_state = 584}, - [1158] = {.lex_state = 584}, - [1159] = {.lex_state = 584}, - [1160] = {.lex_state = 584}, - [1161] = {.lex_state = 584}, - [1162] = {.lex_state = 584}, - [1163] = {.lex_state = 584}, - [1164] = {.lex_state = 47, .external_lex_state = 2}, - [1165] = {.lex_state = 47, .external_lex_state = 2}, - [1166] = {.lex_state = 47, .external_lex_state = 2}, - [1167] = {.lex_state = 584}, - [1168] = {.lex_state = 584}, - [1169] = {.lex_state = 584}, - [1170] = {.lex_state = 584}, - [1171] = {.lex_state = 584}, - [1172] = {.lex_state = 584}, - [1173] = {.lex_state = 584}, - [1174] = {.lex_state = 584}, - [1175] = {.lex_state = 584}, - [1176] = {.lex_state = 584}, - [1177] = {.lex_state = 584}, - [1178] = {.lex_state = 584}, - [1179] = {.lex_state = 584}, - [1180] = {.lex_state = 584}, - [1181] = {.lex_state = 584}, - [1182] = {.lex_state = 47, .external_lex_state = 2}, - [1183] = {.lex_state = 584}, - [1184] = {.lex_state = 584}, - [1185] = {.lex_state = 584}, - [1186] = {.lex_state = 584}, - [1187] = {.lex_state = 584}, - [1188] = {.lex_state = 584}, - [1189] = {.lex_state = 584}, - [1190] = {.lex_state = 584}, - [1191] = {.lex_state = 584}, - [1192] = {.lex_state = 584}, - [1193] = {.lex_state = 584}, - [1194] = {.lex_state = 584}, - [1195] = {.lex_state = 584}, - [1196] = {.lex_state = 584}, - [1197] = {.lex_state = 584}, - [1198] = {.lex_state = 584}, - [1199] = {.lex_state = 584}, - [1200] = {.lex_state = 51, .external_lex_state = 2}, - [1201] = {.lex_state = 615}, - [1202] = {.lex_state = 615}, - [1203] = {.lex_state = 584}, - [1204] = {.lex_state = 615}, - [1205] = {.lex_state = 615}, - [1206] = {.lex_state = 584}, - [1207] = {.lex_state = 615}, - [1208] = {.lex_state = 584}, - [1209] = {.lex_state = 584}, - [1210] = {.lex_state = 584}, - [1211] = {.lex_state = 584}, - [1212] = {.lex_state = 584}, - [1213] = {.lex_state = 584}, - [1214] = {.lex_state = 584}, - [1215] = {.lex_state = 584}, - [1216] = {.lex_state = 584}, - [1217] = {.lex_state = 584}, - [1218] = {.lex_state = 584}, - [1219] = {.lex_state = 584}, - [1220] = {.lex_state = 584}, - [1221] = {.lex_state = 584}, - [1222] = {.lex_state = 584}, - [1223] = {.lex_state = 584}, - [1224] = {.lex_state = 584}, - [1225] = {.lex_state = 584}, - [1226] = {.lex_state = 584}, - [1227] = {.lex_state = 584}, - [1228] = {.lex_state = 51, .external_lex_state = 2}, - [1229] = {.lex_state = 584}, - [1230] = {.lex_state = 584}, - [1231] = {.lex_state = 584}, - [1232] = {.lex_state = 51, .external_lex_state = 2}, - [1233] = {.lex_state = 584}, - [1234] = {.lex_state = 584}, - [1235] = {.lex_state = 584}, - [1236] = {.lex_state = 584}, - [1237] = {.lex_state = 613}, - [1238] = {.lex_state = 584}, - [1239] = {.lex_state = 584}, - [1240] = {.lex_state = 584}, - [1241] = {.lex_state = 584}, - [1242] = {.lex_state = 584}, - [1243] = {.lex_state = 584}, - [1244] = {.lex_state = 584}, - [1245] = {.lex_state = 584}, - [1246] = {.lex_state = 584}, - [1247] = {.lex_state = 584}, - [1248] = {.lex_state = 584}, - [1249] = {.lex_state = 584}, - [1250] = {.lex_state = 584}, - [1251] = {.lex_state = 584}, - [1252] = {.lex_state = 584}, - [1253] = {.lex_state = 584}, - [1254] = {.lex_state = 584}, - [1255] = {.lex_state = 584}, - [1256] = {.lex_state = 584}, - [1257] = {.lex_state = 584}, - [1258] = {.lex_state = 584}, - [1259] = {.lex_state = 584}, - [1260] = {.lex_state = 584}, - [1261] = {.lex_state = 584}, - [1262] = {.lex_state = 584}, - [1263] = {.lex_state = 584}, - [1264] = {.lex_state = 584}, - [1265] = {.lex_state = 584}, - [1266] = {.lex_state = 584}, - [1267] = {.lex_state = 584}, - [1268] = {.lex_state = 584}, - [1269] = {.lex_state = 584}, - [1270] = {.lex_state = 584}, - [1271] = {.lex_state = 584}, - [1272] = {.lex_state = 584}, - [1273] = {.lex_state = 584}, - [1274] = {.lex_state = 584}, - [1275] = {.lex_state = 584}, - [1276] = {.lex_state = 584}, - [1277] = {.lex_state = 584}, - [1278] = {.lex_state = 584}, - [1279] = {.lex_state = 584}, - [1280] = {.lex_state = 584}, - [1281] = {.lex_state = 584}, - [1282] = {.lex_state = 584}, - [1283] = {.lex_state = 584}, - [1284] = {.lex_state = 584}, - [1285] = {.lex_state = 584}, + [915] = {.lex_state = 42, .external_lex_state = 2}, + [916] = {.lex_state = 580}, + [917] = {.lex_state = 580}, + [918] = {.lex_state = 580}, + [919] = {.lex_state = 580}, + [920] = {.lex_state = 580}, + [921] = {.lex_state = 580}, + [922] = {.lex_state = 580}, + [923] = {.lex_state = 580}, + [924] = {.lex_state = 580}, + [925] = {.lex_state = 580}, + [926] = {.lex_state = 580}, + [927] = {.lex_state = 580}, + [928] = {.lex_state = 580}, + [929] = {.lex_state = 609}, + [930] = {.lex_state = 33, .external_lex_state = 2}, + [931] = {.lex_state = 609}, + [932] = {.lex_state = 609}, + [933] = {.lex_state = 580}, + [934] = {.lex_state = 580}, + [935] = {.lex_state = 51, .external_lex_state = 2}, + [936] = {.lex_state = 580}, + [937] = {.lex_state = 580}, + [938] = {.lex_state = 580}, + [939] = {.lex_state = 580}, + [940] = {.lex_state = 580}, + [941] = {.lex_state = 580}, + [942] = {.lex_state = 580}, + [943] = {.lex_state = 609}, + [944] = {.lex_state = 580}, + [945] = {.lex_state = 609}, + [946] = {.lex_state = 609}, + [947] = {.lex_state = 580}, + [948] = {.lex_state = 580}, + [949] = {.lex_state = 609}, + [950] = {.lex_state = 607}, + [951] = {.lex_state = 51, .external_lex_state = 2}, + [952] = {.lex_state = 609}, + [953] = {.lex_state = 580}, + [954] = {.lex_state = 580}, + [955] = {.lex_state = 580}, + [956] = {.lex_state = 609}, + [957] = {.lex_state = 580}, + [958] = {.lex_state = 580}, + [959] = {.lex_state = 580}, + [960] = {.lex_state = 609}, + [961] = {.lex_state = 609}, + [962] = {.lex_state = 580}, + [963] = {.lex_state = 580}, + [964] = {.lex_state = 580}, + [965] = {.lex_state = 580}, + [966] = {.lex_state = 580}, + [967] = {.lex_state = 580}, + [968] = {.lex_state = 580}, + [969] = {.lex_state = 580}, + [970] = {.lex_state = 580}, + [971] = {.lex_state = 580}, + [972] = {.lex_state = 580}, + [973] = {.lex_state = 580}, + [974] = {.lex_state = 580}, + [975] = {.lex_state = 580}, + [976] = {.lex_state = 580}, + [977] = {.lex_state = 580}, + [978] = {.lex_state = 580}, + [979] = {.lex_state = 580}, + [980] = {.lex_state = 580}, + [981] = {.lex_state = 580}, + [982] = {.lex_state = 607}, + [983] = {.lex_state = 580}, + [984] = {.lex_state = 580}, + [985] = {.lex_state = 580}, + [986] = {.lex_state = 580}, + [987] = {.lex_state = 609}, + [988] = {.lex_state = 51, .external_lex_state = 2}, + [989] = {.lex_state = 580}, + [990] = {.lex_state = 580}, + [991] = {.lex_state = 580}, + [992] = {.lex_state = 580}, + [993] = {.lex_state = 580}, + [994] = {.lex_state = 609}, + [995] = {.lex_state = 580}, + [996] = {.lex_state = 580}, + [997] = {.lex_state = 580}, + [998] = {.lex_state = 580}, + [999] = {.lex_state = 580}, + [1000] = {.lex_state = 609}, + [1001] = {.lex_state = 580}, + [1002] = {.lex_state = 609}, + [1003] = {.lex_state = 580}, + [1004] = {.lex_state = 580}, + [1005] = {.lex_state = 580}, + [1006] = {.lex_state = 580}, + [1007] = {.lex_state = 580}, + [1008] = {.lex_state = 580}, + [1009] = {.lex_state = 580}, + [1010] = {.lex_state = 580}, + [1011] = {.lex_state = 609}, + [1012] = {.lex_state = 580}, + [1013] = {.lex_state = 580}, + [1014] = {.lex_state = 609}, + [1015] = {.lex_state = 580}, + [1016] = {.lex_state = 580}, + [1017] = {.lex_state = 580}, + [1018] = {.lex_state = 626, .external_lex_state = 2}, + [1019] = {.lex_state = 580}, + [1020] = {.lex_state = 609}, + [1021] = {.lex_state = 580}, + [1022] = {.lex_state = 609}, + [1023] = {.lex_state = 580}, + [1024] = {.lex_state = 580}, + [1025] = {.lex_state = 580}, + [1026] = {.lex_state = 580}, + [1027] = {.lex_state = 580}, + [1028] = {.lex_state = 580}, + [1029] = {.lex_state = 42, .external_lex_state = 2}, + [1030] = {.lex_state = 42, .external_lex_state = 2}, + [1031] = {.lex_state = 42, .external_lex_state = 2}, + [1032] = {.lex_state = 48, .external_lex_state = 2}, + [1033] = {.lex_state = 580}, + [1034] = {.lex_state = 580}, + [1035] = {.lex_state = 580}, + [1036] = {.lex_state = 580}, + [1037] = {.lex_state = 580}, + [1038] = {.lex_state = 580}, + [1039] = {.lex_state = 580}, + [1040] = {.lex_state = 580}, + [1041] = {.lex_state = 580}, + [1042] = {.lex_state = 580}, + [1043] = {.lex_state = 580}, + [1044] = {.lex_state = 580}, + [1045] = {.lex_state = 580}, + [1046] = {.lex_state = 580}, + [1047] = {.lex_state = 580}, + [1048] = {.lex_state = 580}, + [1049] = {.lex_state = 580}, + [1050] = {.lex_state = 580}, + [1051] = {.lex_state = 580}, + [1052] = {.lex_state = 580}, + [1053] = {.lex_state = 580}, + [1054] = {.lex_state = 580}, + [1055] = {.lex_state = 580}, + [1056] = {.lex_state = 580}, + [1057] = {.lex_state = 580}, + [1058] = {.lex_state = 580}, + [1059] = {.lex_state = 580}, + [1060] = {.lex_state = 580}, + [1061] = {.lex_state = 580}, + [1062] = {.lex_state = 580}, + [1063] = {.lex_state = 580}, + [1064] = {.lex_state = 611}, + [1065] = {.lex_state = 580}, + [1066] = {.lex_state = 580}, + [1067] = {.lex_state = 580}, + [1068] = {.lex_state = 580}, + [1069] = {.lex_state = 580}, + [1070] = {.lex_state = 580}, + [1071] = {.lex_state = 580}, + [1072] = {.lex_state = 580}, + [1073] = {.lex_state = 580}, + [1074] = {.lex_state = 580}, + [1075] = {.lex_state = 580}, + [1076] = {.lex_state = 580}, + [1077] = {.lex_state = 580}, + [1078] = {.lex_state = 626, .external_lex_state = 2}, + [1079] = {.lex_state = 580}, + [1080] = {.lex_state = 580}, + [1081] = {.lex_state = 580}, + [1082] = {.lex_state = 580}, + [1083] = {.lex_state = 580}, + [1084] = {.lex_state = 580}, + [1085] = {.lex_state = 580}, + [1086] = {.lex_state = 580}, + [1087] = {.lex_state = 580}, + [1088] = {.lex_state = 580}, + [1089] = {.lex_state = 580}, + [1090] = {.lex_state = 580}, + [1091] = {.lex_state = 580}, + [1092] = {.lex_state = 580}, + [1093] = {.lex_state = 611}, + [1094] = {.lex_state = 611}, + [1095] = {.lex_state = 611}, + [1096] = {.lex_state = 580}, + [1097] = {.lex_state = 609}, + [1098] = {.lex_state = 580}, + [1099] = {.lex_state = 580}, + [1100] = {.lex_state = 580}, + [1101] = {.lex_state = 580}, + [1102] = {.lex_state = 580}, + [1103] = {.lex_state = 603}, + [1104] = {.lex_state = 580}, + [1105] = {.lex_state = 580}, + [1106] = {.lex_state = 580}, + [1107] = {.lex_state = 580}, + [1108] = {.lex_state = 580}, + [1109] = {.lex_state = 609}, + [1110] = {.lex_state = 609}, + [1111] = {.lex_state = 580}, + [1112] = {.lex_state = 609}, + [1113] = {.lex_state = 580}, + [1114] = {.lex_state = 580}, + [1115] = {.lex_state = 580}, + [1116] = {.lex_state = 580}, + [1117] = {.lex_state = 580}, + [1118] = {.lex_state = 580}, + [1119] = {.lex_state = 580}, + [1120] = {.lex_state = 580}, + [1121] = {.lex_state = 580}, + [1122] = {.lex_state = 580}, + [1123] = {.lex_state = 580}, + [1124] = {.lex_state = 626, .external_lex_state = 2}, + [1125] = {.lex_state = 42, .external_lex_state = 2}, + [1126] = {.lex_state = 42, .external_lex_state = 2}, + [1127] = {.lex_state = 42, .external_lex_state = 2}, + [1128] = {.lex_state = 580}, + [1129] = {.lex_state = 48, .external_lex_state = 2}, + [1130] = {.lex_state = 609}, + [1131] = {.lex_state = 580}, + [1132] = {.lex_state = 580}, + [1133] = {.lex_state = 609}, + [1134] = {.lex_state = 580}, + [1135] = {.lex_state = 51, .external_lex_state = 2}, + [1136] = {.lex_state = 580}, + [1137] = {.lex_state = 609}, + [1138] = {.lex_state = 580}, + [1139] = {.lex_state = 580}, + [1140] = {.lex_state = 51, .external_lex_state = 2}, + [1141] = {.lex_state = 580}, + [1142] = {.lex_state = 580}, + [1143] = {.lex_state = 580}, + [1144] = {.lex_state = 580}, + [1145] = {.lex_state = 48, .external_lex_state = 2}, + [1146] = {.lex_state = 580}, + [1147] = {.lex_state = 580}, + [1148] = {.lex_state = 580}, + [1149] = {.lex_state = 580}, + [1150] = {.lex_state = 580}, + [1151] = {.lex_state = 580}, + [1152] = {.lex_state = 580}, + [1153] = {.lex_state = 580}, + [1154] = {.lex_state = 580}, + [1155] = {.lex_state = 580}, + [1156] = {.lex_state = 580}, + [1157] = {.lex_state = 580}, + [1158] = {.lex_state = 580}, + [1159] = {.lex_state = 580}, + [1160] = {.lex_state = 580}, + [1161] = {.lex_state = 580}, + [1162] = {.lex_state = 611}, + [1163] = {.lex_state = 611}, + [1164] = {.lex_state = 580}, + [1165] = {.lex_state = 580}, + [1166] = {.lex_state = 580}, + [1167] = {.lex_state = 580}, + [1168] = {.lex_state = 580}, + [1169] = {.lex_state = 580}, + [1170] = {.lex_state = 580}, + [1171] = {.lex_state = 580}, + [1172] = {.lex_state = 580}, + [1173] = {.lex_state = 580}, + [1174] = {.lex_state = 580}, + [1175] = {.lex_state = 580}, + [1176] = {.lex_state = 580}, + [1177] = {.lex_state = 580}, + [1178] = {.lex_state = 580}, + [1179] = {.lex_state = 580}, + [1180] = {.lex_state = 580}, + [1181] = {.lex_state = 580}, + [1182] = {.lex_state = 580}, + [1183] = {.lex_state = 580}, + [1184] = {.lex_state = 47, .external_lex_state = 2}, + [1185] = {.lex_state = 580}, + [1186] = {.lex_state = 47, .external_lex_state = 2}, + [1187] = {.lex_state = 580}, + [1188] = {.lex_state = 580}, + [1189] = {.lex_state = 580}, + [1190] = {.lex_state = 580}, + [1191] = {.lex_state = 580}, + [1192] = {.lex_state = 580}, + [1193] = {.lex_state = 580}, + [1194] = {.lex_state = 580}, + [1195] = {.lex_state = 580}, + [1196] = {.lex_state = 580}, + [1197] = {.lex_state = 580}, + [1198] = {.lex_state = 580}, + [1199] = {.lex_state = 580}, + [1200] = {.lex_state = 580}, + [1201] = {.lex_state = 580}, + [1202] = {.lex_state = 580}, + [1203] = {.lex_state = 580}, + [1204] = {.lex_state = 580}, + [1205] = {.lex_state = 580}, + [1206] = {.lex_state = 580}, + [1207] = {.lex_state = 580}, + [1208] = {.lex_state = 580}, + [1209] = {.lex_state = 580}, + [1210] = {.lex_state = 580}, + [1211] = {.lex_state = 580}, + [1212] = {.lex_state = 580}, + [1213] = {.lex_state = 580}, + [1214] = {.lex_state = 580}, + [1215] = {.lex_state = 580}, + [1216] = {.lex_state = 580}, + [1217] = {.lex_state = 580}, + [1218] = {.lex_state = 609}, + [1219] = {.lex_state = 580}, + [1220] = {.lex_state = 580}, + [1221] = {.lex_state = 580}, + [1222] = {.lex_state = 580}, + [1223] = {.lex_state = 580}, + [1224] = {.lex_state = 580}, + [1225] = {.lex_state = 580}, + [1226] = {.lex_state = 580}, + [1227] = {.lex_state = 47, .external_lex_state = 2}, + [1228] = {.lex_state = 580}, + [1229] = {.lex_state = 580}, + [1230] = {.lex_state = 580}, + [1231] = {.lex_state = 580}, + [1232] = {.lex_state = 580}, + [1233] = {.lex_state = 580}, + [1234] = {.lex_state = 580}, + [1235] = {.lex_state = 51, .external_lex_state = 2}, + [1236] = {.lex_state = 580}, + [1237] = {.lex_state = 47, .external_lex_state = 2}, + [1238] = {.lex_state = 580}, + [1239] = {.lex_state = 580}, + [1240] = {.lex_state = 580}, + [1241] = {.lex_state = 580}, + [1242] = {.lex_state = 580}, + [1243] = {.lex_state = 580}, + [1244] = {.lex_state = 580}, + [1245] = {.lex_state = 580}, + [1246] = {.lex_state = 580}, + [1247] = {.lex_state = 580}, + [1248] = {.lex_state = 580}, + [1249] = {.lex_state = 580}, + [1250] = {.lex_state = 580}, + [1251] = {.lex_state = 580}, + [1252] = {.lex_state = 580}, + [1253] = {.lex_state = 611}, + [1254] = {.lex_state = 611}, + [1255] = {.lex_state = 580}, + [1256] = {.lex_state = 51, .external_lex_state = 2}, + [1257] = {.lex_state = 580}, + [1258] = {.lex_state = 580}, + [1259] = {.lex_state = 51, .external_lex_state = 2}, + [1260] = {.lex_state = 611}, + [1261] = {.lex_state = 580}, + [1262] = {.lex_state = 580}, + [1263] = {.lex_state = 580}, + [1264] = {.lex_state = 580}, + [1265] = {.lex_state = 580}, + [1266] = {.lex_state = 580}, + [1267] = {.lex_state = 580}, + [1268] = {.lex_state = 580}, + [1269] = {.lex_state = 580}, + [1270] = {.lex_state = 580}, + [1271] = {.lex_state = 580}, + [1272] = {.lex_state = 51, .external_lex_state = 2}, + [1273] = {.lex_state = 580}, + [1274] = {.lex_state = 580}, + [1275] = {.lex_state = 580}, + [1276] = {.lex_state = 580}, + [1277] = {.lex_state = 580}, + [1278] = {.lex_state = 580}, + [1279] = {.lex_state = 580}, + [1280] = {.lex_state = 580}, + [1281] = {.lex_state = 580}, + [1282] = {.lex_state = 580}, + [1283] = {.lex_state = 580}, + [1284] = {.lex_state = 580}, + [1285] = {.lex_state = 51, .external_lex_state = 2}, [1286] = {.lex_state = 51, .external_lex_state = 2}, [1287] = {.lex_state = 51, .external_lex_state = 2}, - [1288] = {.lex_state = 584}, - [1289] = {.lex_state = 584}, - [1290] = {.lex_state = 584}, - [1291] = {.lex_state = 584}, - [1292] = {.lex_state = 584}, - [1293] = {.lex_state = 46, .external_lex_state = 2}, - [1294] = {.lex_state = 584}, - [1295] = {.lex_state = 584}, - [1296] = {.lex_state = 630, .external_lex_state = 2}, - [1297] = {.lex_state = 584}, - [1298] = {.lex_state = 584}, - [1299] = {.lex_state = 584}, - [1300] = {.lex_state = 584}, - [1301] = {.lex_state = 584}, - [1302] = {.lex_state = 584}, - [1303] = {.lex_state = 584}, - [1304] = {.lex_state = 584}, - [1305] = {.lex_state = 584}, - [1306] = {.lex_state = 584}, - [1307] = {.lex_state = 584}, - [1308] = {.lex_state = 584}, - [1309] = {.lex_state = 584}, - [1310] = {.lex_state = 584}, - [1311] = {.lex_state = 584}, - [1312] = {.lex_state = 584}, - [1313] = {.lex_state = 584}, - [1314] = {.lex_state = 630, .external_lex_state = 2}, - [1315] = {.lex_state = 584}, - [1316] = {.lex_state = 584}, - [1317] = {.lex_state = 584}, - [1318] = {.lex_state = 584}, - [1319] = {.lex_state = 584}, - [1320] = {.lex_state = 584}, - [1321] = {.lex_state = 584}, - [1322] = {.lex_state = 584}, - [1323] = {.lex_state = 584}, - [1324] = {.lex_state = 584}, - [1325] = {.lex_state = 584}, - [1326] = {.lex_state = 584}, - [1327] = {.lex_state = 584}, - [1328] = {.lex_state = 584}, - [1329] = {.lex_state = 584}, - [1330] = {.lex_state = 584}, - [1331] = {.lex_state = 584}, - [1332] = {.lex_state = 584}, - [1333] = {.lex_state = 584}, - [1334] = {.lex_state = 584}, - [1335] = {.lex_state = 46, .external_lex_state = 2}, - [1336] = {.lex_state = 584}, - [1337] = {.lex_state = 584}, - [1338] = {.lex_state = 584}, - [1339] = {.lex_state = 584}, - [1340] = {.lex_state = 584}, - [1341] = {.lex_state = 46, .external_lex_state = 2}, - [1342] = {.lex_state = 584}, - [1343] = {.lex_state = 584}, - [1344] = {.lex_state = 584}, - [1345] = {.lex_state = 584}, - [1346] = {.lex_state = 584}, - [1347] = {.lex_state = 584}, - [1348] = {.lex_state = 584}, - [1349] = {.lex_state = 584}, - [1350] = {.lex_state = 584}, - [1351] = {.lex_state = 584}, - [1352] = {.lex_state = 584}, - [1353] = {.lex_state = 46, .external_lex_state = 2}, - [1354] = {.lex_state = 584}, - [1355] = {.lex_state = 584}, - [1356] = {.lex_state = 584}, - [1357] = {.lex_state = 584}, - [1358] = {.lex_state = 584}, - [1359] = {.lex_state = 584}, - [1360] = {.lex_state = 630, .external_lex_state = 2}, - [1361] = {.lex_state = 584}, - [1362] = {.lex_state = 584}, - [1363] = {.lex_state = 584}, - [1364] = {.lex_state = 584}, - [1365] = {.lex_state = 584}, + [1288] = {.lex_state = 580}, + [1289] = {.lex_state = 580}, + [1290] = {.lex_state = 580}, + [1291] = {.lex_state = 580}, + [1292] = {.lex_state = 626, .external_lex_state = 2}, + [1293] = {.lex_state = 580}, + [1294] = {.lex_state = 580}, + [1295] = {.lex_state = 580}, + [1296] = {.lex_state = 580}, + [1297] = {.lex_state = 46, .external_lex_state = 2}, + [1298] = {.lex_state = 580}, + [1299] = {.lex_state = 46, .external_lex_state = 2}, + [1300] = {.lex_state = 580}, + [1301] = {.lex_state = 580}, + [1302] = {.lex_state = 580}, + [1303] = {.lex_state = 580}, + [1304] = {.lex_state = 580}, + [1305] = {.lex_state = 580}, + [1306] = {.lex_state = 580}, + [1307] = {.lex_state = 580}, + [1308] = {.lex_state = 580}, + [1309] = {.lex_state = 580}, + [1310] = {.lex_state = 580}, + [1311] = {.lex_state = 580}, + [1312] = {.lex_state = 580}, + [1313] = {.lex_state = 580}, + [1314] = {.lex_state = 580}, + [1315] = {.lex_state = 580}, + [1316] = {.lex_state = 31, .external_lex_state = 2}, + [1317] = {.lex_state = 580}, + [1318] = {.lex_state = 580}, + [1319] = {.lex_state = 580}, + [1320] = {.lex_state = 580}, + [1321] = {.lex_state = 580}, + [1322] = {.lex_state = 580}, + [1323] = {.lex_state = 580}, + [1324] = {.lex_state = 580}, + [1325] = {.lex_state = 580}, + [1326] = {.lex_state = 580}, + [1327] = {.lex_state = 580}, + [1328] = {.lex_state = 580}, + [1329] = {.lex_state = 46, .external_lex_state = 2}, + [1330] = {.lex_state = 580}, + [1331] = {.lex_state = 580}, + [1332] = {.lex_state = 580}, + [1333] = {.lex_state = 580}, + [1334] = {.lex_state = 580}, + [1335] = {.lex_state = 626, .external_lex_state = 2}, + [1336] = {.lex_state = 580}, + [1337] = {.lex_state = 580}, + [1338] = {.lex_state = 626, .external_lex_state = 2}, + [1339] = {.lex_state = 580}, + [1340] = {.lex_state = 580}, + [1341] = {.lex_state = 580}, + [1342] = {.lex_state = 580}, + [1343] = {.lex_state = 580}, + [1344] = {.lex_state = 580}, + [1345] = {.lex_state = 580}, + [1346] = {.lex_state = 580}, + [1347] = {.lex_state = 580}, + [1348] = {.lex_state = 580}, + [1349] = {.lex_state = 580}, + [1350] = {.lex_state = 31, .external_lex_state = 2}, + [1351] = {.lex_state = 46, .external_lex_state = 2}, + [1352] = {.lex_state = 580}, + [1353] = {.lex_state = 626, .external_lex_state = 2}, + [1354] = {.lex_state = 580}, + [1355] = {.lex_state = 580}, + [1356] = {.lex_state = 580}, + [1357] = {.lex_state = 580}, + [1358] = {.lex_state = 580}, + [1359] = {.lex_state = 580}, + [1360] = {.lex_state = 580}, + [1361] = {.lex_state = 580}, + [1362] = {.lex_state = 580}, + [1363] = {.lex_state = 31, .external_lex_state = 2}, + [1364] = {.lex_state = 580}, + [1365] = {.lex_state = 580}, [1366] = {.lex_state = 31, .external_lex_state = 2}, - [1367] = {.lex_state = 31, .external_lex_state = 2}, - [1368] = {.lex_state = 31, .external_lex_state = 2}, - [1369] = {.lex_state = 47, .external_lex_state = 2}, - [1370] = {.lex_state = 31, .external_lex_state = 2}, - [1371] = {.lex_state = 172, .external_lex_state = 2}, - [1372] = {.lex_state = 630, .external_lex_state = 2}, - [1373] = {.lex_state = 630, .external_lex_state = 2}, - [1374] = {.lex_state = 46, .external_lex_state = 2}, - [1375] = {.lex_state = 173, .external_lex_state = 2}, - [1376] = {.lex_state = 630, .external_lex_state = 2}, - [1377] = {.lex_state = 630, .external_lex_state = 2}, - [1378] = {.lex_state = 630, .external_lex_state = 2}, - [1379] = {.lex_state = 46, .external_lex_state = 2}, - [1380] = {.lex_state = 630, .external_lex_state = 2}, - [1381] = {.lex_state = 173, .external_lex_state = 2}, - [1382] = {.lex_state = 630, .external_lex_state = 2}, - [1383] = {.lex_state = 638, .external_lex_state = 2}, - [1384] = {.lex_state = 630, .external_lex_state = 2}, - [1385] = {.lex_state = 31, .external_lex_state = 2}, - [1386] = {.lex_state = 46, .external_lex_state = 2}, - [1387] = {.lex_state = 630, .external_lex_state = 2}, - [1388] = {.lex_state = 146, .external_lex_state = 2}, - [1389] = {.lex_state = 630, .external_lex_state = 2}, - [1390] = {.lex_state = 630, .external_lex_state = 2}, - [1391] = {.lex_state = 146, .external_lex_state = 2}, - [1392] = {.lex_state = 630, .external_lex_state = 2}, - [1393] = {.lex_state = 146, .external_lex_state = 2}, - [1394] = {.lex_state = 146, .external_lex_state = 2}, - [1395] = {.lex_state = 630, .external_lex_state = 2}, - [1396] = {.lex_state = 630, .external_lex_state = 2}, - [1397] = {.lex_state = 31, .external_lex_state = 2}, + [1367] = {.lex_state = 580}, + [1368] = {.lex_state = 580}, + [1369] = {.lex_state = 580}, + [1370] = {.lex_state = 580}, + [1371] = {.lex_state = 626, .external_lex_state = 2}, + [1372] = {.lex_state = 626, .external_lex_state = 2}, + [1373] = {.lex_state = 47, .external_lex_state = 2}, + [1374] = {.lex_state = 31, .external_lex_state = 2}, + [1375] = {.lex_state = 626, .external_lex_state = 2}, + [1376] = {.lex_state = 634, .external_lex_state = 2}, + [1377] = {.lex_state = 626, .external_lex_state = 2}, + [1378] = {.lex_state = 626, .external_lex_state = 2}, + [1379] = {.lex_state = 626, .external_lex_state = 2}, + [1380] = {.lex_state = 172, .external_lex_state = 2}, + [1381] = {.lex_state = 626, .external_lex_state = 2}, + [1382] = {.lex_state = 626, .external_lex_state = 2}, + [1383] = {.lex_state = 46, .external_lex_state = 2}, + [1384] = {.lex_state = 626, .external_lex_state = 2}, + [1385] = {.lex_state = 626, .external_lex_state = 2}, + [1386] = {.lex_state = 173, .external_lex_state = 2}, + [1387] = {.lex_state = 626, .external_lex_state = 2}, + [1388] = {.lex_state = 626, .external_lex_state = 2}, + [1389] = {.lex_state = 626, .external_lex_state = 2}, + [1390] = {.lex_state = 31, .external_lex_state = 2}, + [1391] = {.lex_state = 173, .external_lex_state = 2}, + [1392] = {.lex_state = 626, .external_lex_state = 2}, + [1393] = {.lex_state = 46, .external_lex_state = 2}, + [1394] = {.lex_state = 46, .external_lex_state = 2}, + [1395] = {.lex_state = 626, .external_lex_state = 2}, + [1396] = {.lex_state = 626, .external_lex_state = 2}, + [1397] = {.lex_state = 146, .external_lex_state = 2}, [1398] = {.lex_state = 47, .external_lex_state = 2}, - [1399] = {.lex_state = 47, .external_lex_state = 2}, - [1400] = {.lex_state = 47, .external_lex_state = 2}, - [1401] = {.lex_state = 146, .external_lex_state = 2}, - [1402] = {.lex_state = 630, .external_lex_state = 2}, - [1403] = {.lex_state = 630, .external_lex_state = 2}, - [1404] = {.lex_state = 630, .external_lex_state = 2}, - [1405] = {.lex_state = 36, .external_lex_state = 2}, - [1406] = {.lex_state = 588}, - [1407] = {.lex_state = 630, .external_lex_state = 2}, - [1408] = {.lex_state = 36, .external_lex_state = 2}, - [1409] = {.lex_state = 630, .external_lex_state = 2}, - [1410] = {.lex_state = 588}, - [1411] = {.lex_state = 590}, + [1399] = {.lex_state = 626, .external_lex_state = 2}, + [1400] = {.lex_state = 626, .external_lex_state = 2}, + [1401] = {.lex_state = 36, .external_lex_state = 2}, + [1402] = {.lex_state = 36, .external_lex_state = 2}, + [1403] = {.lex_state = 146, .external_lex_state = 2}, + [1404] = {.lex_state = 146, .external_lex_state = 2}, + [1405] = {.lex_state = 47, .external_lex_state = 2}, + [1406] = {.lex_state = 146, .external_lex_state = 2}, + [1407] = {.lex_state = 47, .external_lex_state = 2}, + [1408] = {.lex_state = 146, .external_lex_state = 2}, + [1409] = {.lex_state = 35, .external_lex_state = 2}, + [1410] = {.lex_state = 35, .external_lex_state = 2}, + [1411] = {.lex_state = 584}, [1412] = {.lex_state = 35, .external_lex_state = 2}, - [1413] = {.lex_state = 590}, + [1413] = {.lex_state = 586}, [1414] = {.lex_state = 35, .external_lex_state = 2}, - [1415] = {.lex_state = 48, .external_lex_state = 2}, - [1416] = {.lex_state = 630, .external_lex_state = 2}, + [1415] = {.lex_state = 584}, + [1416] = {.lex_state = 36, .external_lex_state = 2}, [1417] = {.lex_state = 35, .external_lex_state = 2}, - [1418] = {.lex_state = 36, .external_lex_state = 2}, - [1419] = {.lex_state = 596}, - [1420] = {.lex_state = 590}, - [1421] = {.lex_state = 630, .external_lex_state = 2}, - [1422] = {.lex_state = 35, .external_lex_state = 2}, - [1423] = {.lex_state = 590}, - [1424] = {.lex_state = 35, .external_lex_state = 2}, - [1425] = {.lex_state = 592}, - [1426] = {.lex_state = 596}, - [1427] = {.lex_state = 600}, + [1418] = {.lex_state = 586}, + [1419] = {.lex_state = 36, .external_lex_state = 2}, + [1420] = {.lex_state = 35, .external_lex_state = 2}, + [1421] = {.lex_state = 588}, + [1422] = {.lex_state = 592}, + [1423] = {.lex_state = 48, .external_lex_state = 2}, + [1424] = {.lex_state = 586}, + [1425] = {.lex_state = 586}, + [1426] = {.lex_state = 626, .external_lex_state = 2}, + [1427] = {.lex_state = 626, .external_lex_state = 2}, [1428] = {.lex_state = 592}, - [1429] = {.lex_state = 598}, - [1430] = {.lex_state = 598}, - [1431] = {.lex_state = 35, .external_lex_state = 2}, - [1432] = {.lex_state = 36, .external_lex_state = 2}, - [1433] = {.lex_state = 156, .external_lex_state = 2}, - [1434] = {.lex_state = 594}, - [1435] = {.lex_state = 598}, - [1436] = {.lex_state = 598}, - [1437] = {.lex_state = 602}, - [1438] = {.lex_state = 600}, - [1439] = {.lex_state = 48, .external_lex_state = 2}, - [1440] = {.lex_state = 600}, - [1441] = {.lex_state = 600}, - [1442] = {.lex_state = 156, .external_lex_state = 2}, + [1429] = {.lex_state = 588}, + [1430] = {.lex_state = 594}, + [1431] = {.lex_state = 596}, + [1432] = {.lex_state = 594}, + [1433] = {.lex_state = 596}, + [1434] = {.lex_state = 156, .external_lex_state = 2}, + [1435] = {.lex_state = 156, .external_lex_state = 2}, + [1436] = {.lex_state = 594}, + [1437] = {.lex_state = 596}, + [1438] = {.lex_state = 596}, + [1439] = {.lex_state = 596}, + [1440] = {.lex_state = 48, .external_lex_state = 2}, + [1441] = {.lex_state = 598}, + [1442] = {.lex_state = 594}, [1443] = {.lex_state = 48, .external_lex_state = 2}, - [1444] = {.lex_state = 48, .external_lex_state = 2}, - [1445] = {.lex_state = 600}, - [1446] = {.lex_state = 604}, - [1447] = {.lex_state = 600}, - [1448] = {.lex_state = 594}, - [1449] = {.lex_state = 600}, - [1450] = {.lex_state = 600}, - [1451] = {.lex_state = 604}, - [1452] = {.lex_state = 602}, - [1453] = {.lex_state = 635, .external_lex_state = 2}, - [1454] = {.lex_state = 606}, - [1455] = {.lex_state = 606}, - [1456] = {.lex_state = 606}, - [1457] = {.lex_state = 606}, - [1458] = {.lex_state = 606}, - [1459] = {.lex_state = 604}, - [1460] = {.lex_state = 635, .external_lex_state = 2}, - [1461] = {.lex_state = 604}, - [1462] = {.lex_state = 635, .external_lex_state = 2}, - [1463] = {.lex_state = 38, .external_lex_state = 2}, - [1464] = {.lex_state = 584}, - [1465] = {.lex_state = 38, .external_lex_state = 2}, - [1466] = {.lex_state = 606}, - [1467] = {.lex_state = 608}, - [1468] = {.lex_state = 606}, - [1469] = {.lex_state = 38, .external_lex_state = 2}, - [1470] = {.lex_state = 606}, - [1471] = {.lex_state = 610}, - [1472] = {.lex_state = 606}, - [1473] = {.lex_state = 635, .external_lex_state = 2}, - [1474] = {.lex_state = 606}, + [1444] = {.lex_state = 590}, + [1445] = {.lex_state = 48, .external_lex_state = 2}, + [1446] = {.lex_state = 596}, + [1447] = {.lex_state = 598}, + [1448] = {.lex_state = 596}, + [1449] = {.lex_state = 596}, + [1450] = {.lex_state = 590}, + [1451] = {.lex_state = 600}, + [1452] = {.lex_state = 600}, + [1453] = {.lex_state = 602}, + [1454] = {.lex_state = 631, .external_lex_state = 2}, + [1455] = {.lex_state = 602}, + [1456] = {.lex_state = 602}, + [1457] = {.lex_state = 600}, + [1458] = {.lex_state = 602}, + [1459] = {.lex_state = 602}, + [1460] = {.lex_state = 600}, + [1461] = {.lex_state = 631, .external_lex_state = 2}, + [1462] = {.lex_state = 631, .external_lex_state = 2}, + [1463] = {.lex_state = 602}, + [1464] = {.lex_state = 602}, + [1465] = {.lex_state = 606}, + [1466] = {.lex_state = 604}, + [1467] = {.lex_state = 631, .external_lex_state = 2}, + [1468] = {.lex_state = 602}, + [1469] = {.lex_state = 580}, + [1470] = {.lex_state = 38, .external_lex_state = 2}, + [1471] = {.lex_state = 602}, + [1472] = {.lex_state = 602}, + [1473] = {.lex_state = 38, .external_lex_state = 2}, + [1474] = {.lex_state = 38, .external_lex_state = 2}, [1475] = {.lex_state = 147, .external_lex_state = 2}, - [1476] = {.lex_state = 147, .external_lex_state = 2}, - [1477] = {.lex_state = 584}, + [1476] = {.lex_state = 604}, + [1477] = {.lex_state = 147, .external_lex_state = 2}, [1478] = {.lex_state = 147, .external_lex_state = 2}, [1479] = {.lex_state = 147, .external_lex_state = 2}, - [1480] = {.lex_state = 610}, + [1480] = {.lex_state = 147, .external_lex_state = 2}, [1481] = {.lex_state = 147, .external_lex_state = 2}, - [1482] = {.lex_state = 608}, + [1482] = {.lex_state = 147, .external_lex_state = 2}, [1483] = {.lex_state = 147, .external_lex_state = 2}, [1484] = {.lex_state = 147, .external_lex_state = 2}, - [1485] = {.lex_state = 612}, + [1485] = {.lex_state = 147, .external_lex_state = 2}, [1486] = {.lex_state = 147, .external_lex_state = 2}, - [1487] = {.lex_state = 147, .external_lex_state = 2}, - [1488] = {.lex_state = 147, .external_lex_state = 2}, - [1489] = {.lex_state = 612}, - [1490] = {.lex_state = 147, .external_lex_state = 2}, + [1487] = {.lex_state = 608}, + [1488] = {.lex_state = 608}, + [1489] = {.lex_state = 580}, + [1490] = {.lex_state = 606}, [1491] = {.lex_state = 147, .external_lex_state = 2}, [1492] = {.lex_state = 147, .external_lex_state = 2}, - [1493] = {.lex_state = 614}, - [1494] = {.lex_state = 614}, - [1495] = {.lex_state = 614}, - [1496] = {.lex_state = 614}, - [1497] = {.lex_state = 612}, - [1498] = {.lex_state = 41, .external_lex_state = 2}, - [1499] = {.lex_state = 614}, - [1500] = {.lex_state = 147, .external_lex_state = 2}, - [1501] = {.lex_state = 612}, - [1502] = {.lex_state = 614}, - [1503] = {.lex_state = 614}, + [1493] = {.lex_state = 610}, + [1494] = {.lex_state = 147, .external_lex_state = 2}, + [1495] = {.lex_state = 610}, + [1496] = {.lex_state = 610}, + [1497] = {.lex_state = 147, .external_lex_state = 2}, + [1498] = {.lex_state = 610}, + [1499] = {.lex_state = 610}, + [1500] = {.lex_state = 610}, + [1501] = {.lex_state = 610}, + [1502] = {.lex_state = 610}, + [1503] = {.lex_state = 610}, [1504] = {.lex_state = 147, .external_lex_state = 2}, - [1505] = {.lex_state = 614}, - [1506] = {.lex_state = 614}, - [1507] = {.lex_state = 614}, - [1508] = {.lex_state = 147, .external_lex_state = 2}, - [1509] = {.lex_state = 614}, - [1510] = {.lex_state = 614}, - [1511] = {.lex_state = 614}, - [1512] = {.lex_state = 616}, - [1513] = {.lex_state = 614}, - [1514] = {.lex_state = 614}, - [1515] = {.lex_state = 614}, - [1516] = {.lex_state = 38, .external_lex_state = 2}, - [1517] = {.lex_state = 38, .external_lex_state = 2}, - [1518] = {.lex_state = 38, .external_lex_state = 2}, - [1519] = {.lex_state = 38, .external_lex_state = 2}, - [1520] = {.lex_state = 38, .external_lex_state = 2}, - [1521] = {.lex_state = 41, .external_lex_state = 2}, - [1522] = {.lex_state = 616}, - [1523] = {.lex_state = 616}, - [1524] = {.lex_state = 614}, - [1525] = {.lex_state = 614}, + [1505] = {.lex_state = 41, .external_lex_state = 2}, + [1506] = {.lex_state = 608}, + [1507] = {.lex_state = 610}, + [1508] = {.lex_state = 610}, + [1509] = {.lex_state = 610}, + [1510] = {.lex_state = 610}, + [1511] = {.lex_state = 608}, + [1512] = {.lex_state = 38, .external_lex_state = 2}, + [1513] = {.lex_state = 610}, + [1514] = {.lex_state = 610}, + [1515] = {.lex_state = 610}, + [1516] = {.lex_state = 610}, + [1517] = {.lex_state = 610}, + [1518] = {.lex_state = 610}, + [1519] = {.lex_state = 177, .external_lex_state = 2}, + [1520] = {.lex_state = 610}, + [1521] = {.lex_state = 38, .external_lex_state = 2}, + [1522] = {.lex_state = 580}, + [1523] = {.lex_state = 38, .external_lex_state = 2}, + [1524] = {.lex_state = 610}, + [1525] = {.lex_state = 41, .external_lex_state = 2}, [1526] = {.lex_state = 38, .external_lex_state = 2}, [1527] = {.lex_state = 38, .external_lex_state = 2}, - [1528] = {.lex_state = 614}, - [1529] = {.lex_state = 614}, - [1530] = {.lex_state = 584}, - [1531] = {.lex_state = 38, .external_lex_state = 2}, - [1532] = {.lex_state = 614}, - [1533] = {.lex_state = 38, .external_lex_state = 2}, - [1534] = {.lex_state = 614}, + [1528] = {.lex_state = 610}, + [1529] = {.lex_state = 612}, + [1530] = {.lex_state = 612}, + [1531] = {.lex_state = 610}, + [1532] = {.lex_state = 38, .external_lex_state = 2}, + [1533] = {.lex_state = 612}, + [1534] = {.lex_state = 610}, [1535] = {.lex_state = 38, .external_lex_state = 2}, - [1536] = {.lex_state = 614}, - [1537] = {.lex_state = 614}, - [1538] = {.lex_state = 614}, - [1539] = {.lex_state = 614}, - [1540] = {.lex_state = 614}, - [1541] = {.lex_state = 177, .external_lex_state = 2}, - [1542] = {.lex_state = 584}, + [1536] = {.lex_state = 610}, + [1537] = {.lex_state = 610}, + [1538] = {.lex_state = 610}, + [1539] = {.lex_state = 38, .external_lex_state = 2}, + [1540] = {.lex_state = 38, .external_lex_state = 2}, + [1541] = {.lex_state = 38, .external_lex_state = 2}, + [1542] = {.lex_state = 580}, [1543] = {.lex_state = 90}, - [1544] = {.lex_state = 614}, + [1544] = {.lex_state = 90}, [1545] = {.lex_state = 90}, [1546] = {.lex_state = 90}, - [1547] = {.lex_state = 90}, - [1548] = {.lex_state = 584}, - [1549] = {.lex_state = 616}, - [1550] = {.lex_state = 616}, - [1551] = {.lex_state = 90}, + [1547] = {.lex_state = 177, .external_lex_state = 2}, + [1548] = {.lex_state = 90}, + [1549] = {.lex_state = 90}, + [1550] = {.lex_state = 612}, + [1551] = {.lex_state = 612}, [1552] = {.lex_state = 90}, - [1553] = {.lex_state = 616}, + [1553] = {.lex_state = 90}, [1554] = {.lex_state = 90}, [1555] = {.lex_state = 90}, [1556] = {.lex_state = 90}, [1557] = {.lex_state = 90}, - [1558] = {.lex_state = 177, .external_lex_state = 2}, - [1559] = {.lex_state = 177, .external_lex_state = 2}, + [1558] = {.lex_state = 90}, + [1559] = {.lex_state = 90}, [1560] = {.lex_state = 90}, [1561] = {.lex_state = 90}, - [1562] = {.lex_state = 8}, + [1562] = {.lex_state = 90}, [1563] = {.lex_state = 90}, [1564] = {.lex_state = 90}, [1565] = {.lex_state = 90}, @@ -35398,595 +35392,595 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1581] = {.lex_state = 90}, [1582] = {.lex_state = 90}, [1583] = {.lex_state = 90}, - [1584] = {.lex_state = 90}, + [1584] = {.lex_state = 612}, [1585] = {.lex_state = 90}, [1586] = {.lex_state = 90}, [1587] = {.lex_state = 90}, [1588] = {.lex_state = 90}, [1589] = {.lex_state = 90}, [1590] = {.lex_state = 90}, - [1591] = {.lex_state = 584}, - [1592] = {.lex_state = 584}, - [1593] = {.lex_state = 584}, - [1594] = {.lex_state = 584}, - [1595] = {.lex_state = 584}, - [1596] = {.lex_state = 584}, - [1597] = {.lex_state = 584}, - [1598] = {.lex_state = 584}, - [1599] = {.lex_state = 584}, - [1600] = {.lex_state = 584}, - [1601] = {.lex_state = 584}, - [1602] = {.lex_state = 584}, - [1603] = {.lex_state = 584}, - [1604] = {.lex_state = 584}, - [1605] = {.lex_state = 584}, - [1606] = {.lex_state = 584}, - [1607] = {.lex_state = 584}, - [1608] = {.lex_state = 584}, - [1609] = {.lex_state = 584}, - [1610] = {.lex_state = 584}, - [1611] = {.lex_state = 584}, - [1612] = {.lex_state = 584}, - [1613] = {.lex_state = 584}, - [1614] = {.lex_state = 584}, - [1615] = {.lex_state = 584}, - [1616] = {.lex_state = 584}, - [1617] = {.lex_state = 584}, - [1618] = {.lex_state = 584}, - [1619] = {.lex_state = 584}, - [1620] = {.lex_state = 584}, - [1621] = {.lex_state = 584}, - [1622] = {.lex_state = 584}, - [1623] = {.lex_state = 584}, - [1624] = {.lex_state = 584}, - [1625] = {.lex_state = 584}, - [1626] = {.lex_state = 584}, - [1627] = {.lex_state = 584}, - [1628] = {.lex_state = 584}, - [1629] = {.lex_state = 584}, - [1630] = {.lex_state = 90}, - [1631] = {.lex_state = 584}, - [1632] = {.lex_state = 584}, - [1633] = {.lex_state = 584}, - [1634] = {.lex_state = 584}, - [1635] = {.lex_state = 90}, - [1636] = {.lex_state = 584}, - [1637] = {.lex_state = 584}, - [1638] = {.lex_state = 584}, - [1639] = {.lex_state = 90}, - [1640] = {.lex_state = 584}, - [1641] = {.lex_state = 584}, - [1642] = {.lex_state = 584}, - [1643] = {.lex_state = 584}, - [1644] = {.lex_state = 584}, - [1645] = {.lex_state = 584}, - [1646] = {.lex_state = 584}, - [1647] = {.lex_state = 584}, - [1648] = {.lex_state = 584}, - [1649] = {.lex_state = 584}, - [1650] = {.lex_state = 584}, - [1651] = {.lex_state = 584}, - [1652] = {.lex_state = 584}, - [1653] = {.lex_state = 584}, - [1654] = {.lex_state = 584}, - [1655] = {.lex_state = 584}, - [1656] = {.lex_state = 584}, - [1657] = {.lex_state = 584}, - [1658] = {.lex_state = 584}, - [1659] = {.lex_state = 584}, - [1660] = {.lex_state = 584}, - [1661] = {.lex_state = 584}, - [1662] = {.lex_state = 584}, - [1663] = {.lex_state = 584}, - [1664] = {.lex_state = 584}, - [1665] = {.lex_state = 584}, - [1666] = {.lex_state = 584}, - [1667] = {.lex_state = 584}, - [1668] = {.lex_state = 584}, - [1669] = {.lex_state = 584}, - [1670] = {.lex_state = 584}, - [1671] = {.lex_state = 584}, - [1672] = {.lex_state = 584}, - [1673] = {.lex_state = 584}, - [1674] = {.lex_state = 584}, - [1675] = {.lex_state = 584}, - [1676] = {.lex_state = 584}, - [1677] = {.lex_state = 584}, - [1678] = {.lex_state = 584}, - [1679] = {.lex_state = 584}, - [1680] = {.lex_state = 584}, - [1681] = {.lex_state = 584}, - [1682] = {.lex_state = 584}, - [1683] = {.lex_state = 584}, - [1684] = {.lex_state = 584}, - [1685] = {.lex_state = 584}, - [1686] = {.lex_state = 584}, - [1687] = {.lex_state = 584}, - [1688] = {.lex_state = 90}, - [1689] = {.lex_state = 90}, - [1690] = {.lex_state = 90}, - [1691] = {.lex_state = 90}, - [1692] = {.lex_state = 584}, - [1693] = {.lex_state = 584}, - [1694] = {.lex_state = 584}, - [1695] = {.lex_state = 584}, - [1696] = {.lex_state = 584}, - [1697] = {.lex_state = 584}, - [1698] = {.lex_state = 584}, - [1699] = {.lex_state = 584}, - [1700] = {.lex_state = 584}, - [1701] = {.lex_state = 584}, - [1702] = {.lex_state = 584}, - [1703] = {.lex_state = 584}, - [1704] = {.lex_state = 90}, - [1705] = {.lex_state = 584}, - [1706] = {.lex_state = 38, .external_lex_state = 2}, + [1591] = {.lex_state = 90}, + [1592] = {.lex_state = 610}, + [1593] = {.lex_state = 90}, + [1594] = {.lex_state = 580}, + [1595] = {.lex_state = 580}, + [1596] = {.lex_state = 580}, + [1597] = {.lex_state = 580}, + [1598] = {.lex_state = 580}, + [1599] = {.lex_state = 580}, + [1600] = {.lex_state = 580}, + [1601] = {.lex_state = 580}, + [1602] = {.lex_state = 8}, + [1603] = {.lex_state = 580}, + [1604] = {.lex_state = 580}, + [1605] = {.lex_state = 580}, + [1606] = {.lex_state = 580}, + [1607] = {.lex_state = 580}, + [1608] = {.lex_state = 580}, + [1609] = {.lex_state = 580}, + [1610] = {.lex_state = 580}, + [1611] = {.lex_state = 580}, + [1612] = {.lex_state = 580}, + [1613] = {.lex_state = 580}, + [1614] = {.lex_state = 580}, + [1615] = {.lex_state = 580}, + [1616] = {.lex_state = 580}, + [1617] = {.lex_state = 580}, + [1618] = {.lex_state = 580}, + [1619] = {.lex_state = 580}, + [1620] = {.lex_state = 580}, + [1621] = {.lex_state = 580}, + [1622] = {.lex_state = 580}, + [1623] = {.lex_state = 580}, + [1624] = {.lex_state = 580}, + [1625] = {.lex_state = 580}, + [1626] = {.lex_state = 580}, + [1627] = {.lex_state = 580}, + [1628] = {.lex_state = 580}, + [1629] = {.lex_state = 580}, + [1630] = {.lex_state = 177, .external_lex_state = 2}, + [1631] = {.lex_state = 580}, + [1632] = {.lex_state = 580}, + [1633] = {.lex_state = 580}, + [1634] = {.lex_state = 580}, + [1635] = {.lex_state = 580}, + [1636] = {.lex_state = 580}, + [1637] = {.lex_state = 580}, + [1638] = {.lex_state = 580}, + [1639] = {.lex_state = 580}, + [1640] = {.lex_state = 580}, + [1641] = {.lex_state = 580}, + [1642] = {.lex_state = 580}, + [1643] = {.lex_state = 580}, + [1644] = {.lex_state = 580}, + [1645] = {.lex_state = 580}, + [1646] = {.lex_state = 580}, + [1647] = {.lex_state = 580}, + [1648] = {.lex_state = 580}, + [1649] = {.lex_state = 580}, + [1650] = {.lex_state = 580}, + [1651] = {.lex_state = 580}, + [1652] = {.lex_state = 580}, + [1653] = {.lex_state = 580}, + [1654] = {.lex_state = 580}, + [1655] = {.lex_state = 580}, + [1656] = {.lex_state = 580}, + [1657] = {.lex_state = 580}, + [1658] = {.lex_state = 580}, + [1659] = {.lex_state = 580}, + [1660] = {.lex_state = 580}, + [1661] = {.lex_state = 580}, + [1662] = {.lex_state = 580}, + [1663] = {.lex_state = 580}, + [1664] = {.lex_state = 580}, + [1665] = {.lex_state = 580}, + [1666] = {.lex_state = 580}, + [1667] = {.lex_state = 580}, + [1668] = {.lex_state = 580}, + [1669] = {.lex_state = 580}, + [1670] = {.lex_state = 580}, + [1671] = {.lex_state = 580}, + [1672] = {.lex_state = 580}, + [1673] = {.lex_state = 580}, + [1674] = {.lex_state = 580}, + [1675] = {.lex_state = 580}, + [1676] = {.lex_state = 580}, + [1677] = {.lex_state = 580}, + [1678] = {.lex_state = 90}, + [1679] = {.lex_state = 90}, + [1680] = {.lex_state = 580}, + [1681] = {.lex_state = 580}, + [1682] = {.lex_state = 580}, + [1683] = {.lex_state = 580}, + [1684] = {.lex_state = 580}, + [1685] = {.lex_state = 580}, + [1686] = {.lex_state = 580}, + [1687] = {.lex_state = 580}, + [1688] = {.lex_state = 580}, + [1689] = {.lex_state = 580}, + [1690] = {.lex_state = 580}, + [1691] = {.lex_state = 580}, + [1692] = {.lex_state = 580}, + [1693] = {.lex_state = 580}, + [1694] = {.lex_state = 580}, + [1695] = {.lex_state = 580}, + [1696] = {.lex_state = 580}, + [1697] = {.lex_state = 580}, + [1698] = {.lex_state = 580}, + [1699] = {.lex_state = 580}, + [1700] = {.lex_state = 580}, + [1701] = {.lex_state = 580}, + [1702] = {.lex_state = 580}, + [1703] = {.lex_state = 580}, + [1704] = {.lex_state = 580}, + [1705] = {.lex_state = 580}, + [1706] = {.lex_state = 580}, [1707] = {.lex_state = 38, .external_lex_state = 2}, - [1708] = {.lex_state = 38, .external_lex_state = 2}, - [1709] = {.lex_state = 90}, + [1708] = {.lex_state = 9}, + [1709] = {.lex_state = 580}, [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 = 584}, - [1714] = {.lex_state = 584}, - [1715] = {.lex_state = 584}, - [1716] = {.lex_state = 584}, - [1717] = {.lex_state = 584}, - [1718] = {.lex_state = 584}, - [1719] = {.lex_state = 584}, - [1720] = {.lex_state = 584}, - [1721] = {.lex_state = 584}, - [1722] = {.lex_state = 584}, - [1723] = {.lex_state = 584}, - [1724] = {.lex_state = 584}, - [1725] = {.lex_state = 130}, - [1726] = {.lex_state = 9}, + [1711] = {.lex_state = 580}, + [1712] = {.lex_state = 580}, + [1713] = {.lex_state = 90}, + [1714] = {.lex_state = 580}, + [1715] = {.lex_state = 9}, + [1716] = {.lex_state = 580}, + [1717] = {.lex_state = 580}, + [1718] = {.lex_state = 38, .external_lex_state = 2}, + [1719] = {.lex_state = 38, .external_lex_state = 2}, + [1720] = {.lex_state = 580}, + [1721] = {.lex_state = 580}, + [1722] = {.lex_state = 580}, + [1723] = {.lex_state = 580}, + [1724] = {.lex_state = 580}, + [1725] = {.lex_state = 38, .external_lex_state = 2}, + [1726] = {.lex_state = 38, .external_lex_state = 2}, [1727] = {.lex_state = 38, .external_lex_state = 2}, - [1728] = {.lex_state = 9}, + [1728] = {.lex_state = 130}, [1729] = {.lex_state = 38, .external_lex_state = 2}, [1730] = {.lex_state = 38, .external_lex_state = 2}, [1731] = {.lex_state = 38, .external_lex_state = 2}, [1732] = {.lex_state = 38, .external_lex_state = 2}, - [1733] = {.lex_state = 130}, - [1734] = {.lex_state = 176, .external_lex_state = 2}, - [1735] = {.lex_state = 131}, - [1736] = {.lex_state = 131}, - [1737] = {.lex_state = 12}, - [1738] = {.lex_state = 176, .external_lex_state = 2}, - [1739] = {.lex_state = 637, .external_lex_state = 2}, - [1740] = {.lex_state = 130}, - [1741] = {.lex_state = 637, .external_lex_state = 2}, - [1742] = {.lex_state = 637, .external_lex_state = 2}, + [1733] = {.lex_state = 12}, + [1734] = {.lex_state = 633, .external_lex_state = 2}, + [1735] = {.lex_state = 176, .external_lex_state = 2}, + [1736] = {.lex_state = 633, .external_lex_state = 2}, + [1737] = {.lex_state = 130}, + [1738] = {.lex_state = 572, .external_lex_state = 2}, + [1739] = {.lex_state = 176, .external_lex_state = 2}, + [1740] = {.lex_state = 10}, + [1741] = {.lex_state = 131}, + [1742] = {.lex_state = 131}, [1743] = {.lex_state = 176, .external_lex_state = 2}, - [1744] = {.lex_state = 10}, - [1745] = {.lex_state = 576, .external_lex_state = 2}, - [1746] = {.lex_state = 637, .external_lex_state = 2}, - [1747] = {.lex_state = 13}, - [1748] = {.lex_state = 90}, - [1749] = {.lex_state = 130}, - [1750] = {.lex_state = 134}, - [1751] = {.lex_state = 637, .external_lex_state = 2}, - [1752] = {.lex_state = 576, .external_lex_state = 2}, - [1753] = {.lex_state = 176, .external_lex_state = 2}, + [1744] = {.lex_state = 633, .external_lex_state = 2}, + [1745] = {.lex_state = 130}, + [1746] = {.lex_state = 633, .external_lex_state = 2}, + [1747] = {.lex_state = 176, .external_lex_state = 2}, + [1748] = {.lex_state = 633, .external_lex_state = 2}, + [1749] = {.lex_state = 176, .external_lex_state = 2}, + [1750] = {.lex_state = 90}, + [1751] = {.lex_state = 165, .external_lex_state = 2}, + [1752] = {.lex_state = 14}, + [1753] = {.lex_state = 130}, [1754] = {.lex_state = 13}, - [1755] = {.lex_state = 576, .external_lex_state = 2}, - [1756] = {.lex_state = 132}, - [1757] = {.lex_state = 576, .external_lex_state = 2}, - [1758] = {.lex_state = 637, .external_lex_state = 2}, - [1759] = {.lex_state = 576, .external_lex_state = 2}, - [1760] = {.lex_state = 576, .external_lex_state = 2}, - [1761] = {.lex_state = 165, .external_lex_state = 2}, - [1762] = {.lex_state = 576, .external_lex_state = 2}, - [1763] = {.lex_state = 130}, - [1764] = {.lex_state = 168, .external_lex_state = 2}, - [1765] = {.lex_state = 38, .external_lex_state = 2}, - [1766] = {.lex_state = 38, .external_lex_state = 2}, - [1767] = {.lex_state = 176, .external_lex_state = 2}, + [1755] = {.lex_state = 38, .external_lex_state = 2}, + [1756] = {.lex_state = 633, .external_lex_state = 2}, + [1757] = {.lex_state = 130}, + [1758] = {.lex_state = 90}, + [1759] = {.lex_state = 572, .external_lex_state = 2}, + [1760] = {.lex_state = 176, .external_lex_state = 2}, + [1761] = {.lex_state = 633, .external_lex_state = 2}, + [1762] = {.lex_state = 130}, + [1763] = {.lex_state = 572, .external_lex_state = 2}, + [1764] = {.lex_state = 176, .external_lex_state = 2}, + [1765] = {.lex_state = 572, .external_lex_state = 2}, + [1766] = {.lex_state = 572, .external_lex_state = 2}, + [1767] = {.lex_state = 572, .external_lex_state = 2}, [1768] = {.lex_state = 176, .external_lex_state = 2}, - [1769] = {.lex_state = 14}, - [1770] = {.lex_state = 176, .external_lex_state = 2}, + [1769] = {.lex_state = 633, .external_lex_state = 2}, + [1770] = {.lex_state = 130}, [1771] = {.lex_state = 130}, - [1772] = {.lex_state = 176, .external_lex_state = 2}, - [1773] = {.lex_state = 90}, - [1774] = {.lex_state = 176, .external_lex_state = 2}, - [1775] = {.lex_state = 637, .external_lex_state = 2}, - [1776] = {.lex_state = 130}, - [1777] = {.lex_state = 130}, - [1778] = {.lex_state = 130}, - [1779] = {.lex_state = 176, .external_lex_state = 2}, - [1780] = {.lex_state = 90}, - [1781] = {.lex_state = 176, .external_lex_state = 2}, - [1782] = {.lex_state = 90}, - [1783] = {.lex_state = 637, .external_lex_state = 2}, - [1784] = {.lex_state = 176, .external_lex_state = 2}, - [1785] = {.lex_state = 90}, - [1786] = {.lex_state = 38, .external_lex_state = 2}, - [1787] = {.lex_state = 176, .external_lex_state = 2}, - [1788] = {.lex_state = 576, .external_lex_state = 2}, - [1789] = {.lex_state = 38, .external_lex_state = 2}, + [1772] = {.lex_state = 130}, + [1773] = {.lex_state = 176, .external_lex_state = 2}, + [1774] = {.lex_state = 168, .external_lex_state = 2}, + [1775] = {.lex_state = 38, .external_lex_state = 2}, + [1776] = {.lex_state = 176, .external_lex_state = 2}, + [1777] = {.lex_state = 13}, + [1778] = {.lex_state = 90}, + [1779] = {.lex_state = 132}, + [1780] = {.lex_state = 176, .external_lex_state = 2}, + [1781] = {.lex_state = 90}, + [1782] = {.lex_state = 134}, + [1783] = {.lex_state = 176, .external_lex_state = 2}, + [1784] = {.lex_state = 90}, + [1785] = {.lex_state = 176, .external_lex_state = 2}, + [1786] = {.lex_state = 572, .external_lex_state = 2}, + [1787] = {.lex_state = 38, .external_lex_state = 2}, + [1788] = {.lex_state = 572, .external_lex_state = 2}, + [1789] = {.lex_state = 90}, [1790] = {.lex_state = 90}, - [1791] = {.lex_state = 11}, - [1792] = {.lex_state = 637, .external_lex_state = 2}, - [1793] = {.lex_state = 637, .external_lex_state = 2}, - [1794] = {.lex_state = 38, .external_lex_state = 2}, - [1795] = {.lex_state = 90}, - [1796] = {.lex_state = 167, .external_lex_state = 2}, - [1797] = {.lex_state = 38, .external_lex_state = 2}, - [1798] = {.lex_state = 90}, - [1799] = {.lex_state = 136}, - [1800] = {.lex_state = 135}, - [1801] = {.lex_state = 576, .external_lex_state = 2}, - [1802] = {.lex_state = 576, .external_lex_state = 2}, + [1791] = {.lex_state = 572, .external_lex_state = 2}, + [1792] = {.lex_state = 38, .external_lex_state = 2}, + [1793] = {.lex_state = 11}, + [1794] = {.lex_state = 90}, + [1795] = {.lex_state = 14}, + [1796] = {.lex_state = 633, .external_lex_state = 2}, + [1797] = {.lex_state = 573, .external_lex_state = 2}, + [1798] = {.lex_state = 572, .external_lex_state = 2}, + [1799] = {.lex_state = 38, .external_lex_state = 2}, + [1800] = {.lex_state = 633, .external_lex_state = 2}, + [1801] = {.lex_state = 38, .external_lex_state = 2}, + [1802] = {.lex_state = 38, .external_lex_state = 2}, [1803] = {.lex_state = 38, .external_lex_state = 2}, - [1804] = {.lex_state = 14}, - [1805] = {.lex_state = 15}, + [1804] = {.lex_state = 135}, + [1805] = {.lex_state = 14}, [1806] = {.lex_state = 38, .external_lex_state = 2}, - [1807] = {.lex_state = 38, .external_lex_state = 2}, - [1808] = {.lex_state = 577, .external_lex_state = 2}, - [1809] = {.lex_state = 90}, - [1810] = {.lex_state = 636, .external_lex_state = 2}, - [1811] = {.lex_state = 576, .external_lex_state = 2}, - [1812] = {.lex_state = 576, .external_lex_state = 2}, - [1813] = {.lex_state = 576, .external_lex_state = 2}, - [1814] = {.lex_state = 38, .external_lex_state = 2}, - [1815] = {.lex_state = 90}, - [1816] = {.lex_state = 38, .external_lex_state = 2}, - [1817] = {.lex_state = 14}, + [1807] = {.lex_state = 572, .external_lex_state = 2}, + [1808] = {.lex_state = 90}, + [1809] = {.lex_state = 135}, + [1810] = {.lex_state = 632, .external_lex_state = 2}, + [1811] = {.lex_state = 38, .external_lex_state = 2}, + [1812] = {.lex_state = 572, .external_lex_state = 2}, + [1813] = {.lex_state = 136}, + [1814] = {.lex_state = 572, .external_lex_state = 2}, + [1815] = {.lex_state = 38, .external_lex_state = 2}, + [1816] = {.lex_state = 572, .external_lex_state = 2}, + [1817] = {.lex_state = 167, .external_lex_state = 2}, [1818] = {.lex_state = 38, .external_lex_state = 2}, - [1819] = {.lex_state = 135}, + [1819] = {.lex_state = 14}, [1820] = {.lex_state = 167, .external_lex_state = 2}, - [1821] = {.lex_state = 90}, - [1822] = {.lex_state = 38, .external_lex_state = 2}, + [1821] = {.lex_state = 15}, + [1822] = {.lex_state = 90}, [1823] = {.lex_state = 38, .external_lex_state = 2}, - [1824] = {.lex_state = 38, .external_lex_state = 2}, - [1825] = {.lex_state = 14}, - [1826] = {.lex_state = 576, .external_lex_state = 2}, - [1827] = {.lex_state = 90}, - [1828] = {.lex_state = 90}, + [1824] = {.lex_state = 90}, + [1825] = {.lex_state = 38, .external_lex_state = 2}, + [1826] = {.lex_state = 38, .external_lex_state = 2}, + [1827] = {.lex_state = 169, .external_lex_state = 2}, + [1828] = {.lex_state = 133}, [1829] = {.lex_state = 90}, - [1830] = {.lex_state = 169, .external_lex_state = 2}, - [1831] = {.lex_state = 90}, + [1830] = {.lex_state = 90}, + [1831] = {.lex_state = 169, .external_lex_state = 2}, [1832] = {.lex_state = 90}, [1833] = {.lex_state = 90}, - [1834] = {.lex_state = 169, .external_lex_state = 2}, - [1835] = {.lex_state = 136}, + [1834] = {.lex_state = 90}, + [1835] = {.lex_state = 169, .external_lex_state = 2}, [1836] = {.lex_state = 90}, [1837] = {.lex_state = 90}, - [1838] = {.lex_state = 16}, + [1838] = {.lex_state = 90}, [1839] = {.lex_state = 90}, - [1840] = {.lex_state = 16}, - [1841] = {.lex_state = 137}, + [1840] = {.lex_state = 136}, + [1841] = {.lex_state = 136}, [1842] = {.lex_state = 90}, [1843] = {.lex_state = 90}, [1844] = {.lex_state = 136}, [1845] = {.lex_state = 90}, [1846] = {.lex_state = 90}, - [1847] = {.lex_state = 133}, + [1847] = {.lex_state = 90}, [1848] = {.lex_state = 90}, [1849] = {.lex_state = 90}, - [1850] = {.lex_state = 90}, - [1851] = {.lex_state = 90}, + [1850] = {.lex_state = 633, .external_lex_state = 2}, + [1851] = {.lex_state = 633, .external_lex_state = 2}, [1852] = {.lex_state = 90}, - [1853] = {.lex_state = 169, .external_lex_state = 2}, + [1853] = {.lex_state = 90}, [1854] = {.lex_state = 90}, - [1855] = {.lex_state = 136}, + [1855] = {.lex_state = 90}, [1856] = {.lex_state = 90}, - [1857] = {.lex_state = 90}, - [1858] = {.lex_state = 637, .external_lex_state = 2}, + [1857] = {.lex_state = 16}, + [1858] = {.lex_state = 632, .external_lex_state = 2}, [1859] = {.lex_state = 90}, - [1860] = {.lex_state = 637, .external_lex_state = 2}, + [1860] = {.lex_state = 90}, [1861] = {.lex_state = 90}, [1862] = {.lex_state = 90}, - [1863] = {.lex_state = 90}, - [1864] = {.lex_state = 169, .external_lex_state = 2}, - [1865] = {.lex_state = 636, .external_lex_state = 2}, - [1866] = {.lex_state = 637, .external_lex_state = 2}, - [1867] = {.lex_state = 577, .external_lex_state = 2}, - [1868] = {.lex_state = 90}, + [1863] = {.lex_state = 169, .external_lex_state = 2}, + [1864] = {.lex_state = 90}, + [1865] = {.lex_state = 137}, + [1866] = {.lex_state = 90}, + [1867] = {.lex_state = 90}, + [1868] = {.lex_state = 633, .external_lex_state = 2}, [1869] = {.lex_state = 90}, [1870] = {.lex_state = 90}, [1871] = {.lex_state = 90}, - [1872] = {.lex_state = 90}, + [1872] = {.lex_state = 573, .external_lex_state = 2}, [1873] = {.lex_state = 90}, [1874] = {.lex_state = 90}, - [1875] = {.lex_state = 90}, - [1876] = {.lex_state = 635, .external_lex_state = 2}, - [1877] = {.lex_state = 635, .external_lex_state = 2}, - [1878] = {.lex_state = 635, .external_lex_state = 2}, + [1875] = {.lex_state = 16}, + [1876] = {.lex_state = 17}, + [1877] = {.lex_state = 631, .external_lex_state = 2}, + [1878] = {.lex_state = 580}, [1879] = {.lex_state = 17}, - [1880] = {.lex_state = 637, .external_lex_state = 2}, + [1880] = {.lex_state = 631, .external_lex_state = 2}, [1881] = {.lex_state = 17}, - [1882] = {.lex_state = 17}, - [1883] = {.lex_state = 635, .external_lex_state = 2}, - [1884] = {.lex_state = 17}, - [1885] = {.lex_state = 584}, - [1886] = {.lex_state = 635, .external_lex_state = 2}, - [1887] = {.lex_state = 138}, - [1888] = {.lex_state = 635, .external_lex_state = 2}, - [1889] = {.lex_state = 17}, - [1890] = {.lex_state = 635, .external_lex_state = 2}, - [1891] = {.lex_state = 138}, - [1892] = {.lex_state = 635, .external_lex_state = 2}, - [1893] = {.lex_state = 637, .external_lex_state = 2}, - [1894] = {.lex_state = 635, .external_lex_state = 2}, - [1895] = {.lex_state = 635, .external_lex_state = 2}, - [1896] = {.lex_state = 90}, - [1897] = {.lex_state = 635, .external_lex_state = 2}, - [1898] = {.lex_state = 635, .external_lex_state = 2}, - [1899] = {.lex_state = 637, .external_lex_state = 2}, - [1900] = {.lex_state = 635, .external_lex_state = 2}, - [1901] = {.lex_state = 635, .external_lex_state = 2}, - [1902] = {.lex_state = 90}, - [1903] = {.lex_state = 635, .external_lex_state = 2}, - [1904] = {.lex_state = 90}, - [1905] = {.lex_state = 635, .external_lex_state = 2}, - [1906] = {.lex_state = 635, .external_lex_state = 2}, - [1907] = {.lex_state = 125, .external_lex_state = 2}, - [1908] = {.lex_state = 18}, - [1909] = {.lex_state = 635, .external_lex_state = 2}, + [1882] = {.lex_state = 138}, + [1883] = {.lex_state = 631, .external_lex_state = 2}, + [1884] = {.lex_state = 631, .external_lex_state = 2}, + [1885] = {.lex_state = 631, .external_lex_state = 2}, + [1886] = {.lex_state = 631, .external_lex_state = 2}, + [1887] = {.lex_state = 633, .external_lex_state = 2}, + [1888] = {.lex_state = 633, .external_lex_state = 2}, + [1889] = {.lex_state = 90}, + [1890] = {.lex_state = 90}, + [1891] = {.lex_state = 631, .external_lex_state = 2}, + [1892] = {.lex_state = 631, .external_lex_state = 2}, + [1893] = {.lex_state = 90}, + [1894] = {.lex_state = 631, .external_lex_state = 2}, + [1895] = {.lex_state = 631, .external_lex_state = 2}, + [1896] = {.lex_state = 631, .external_lex_state = 2}, + [1897] = {.lex_state = 138}, + [1898] = {.lex_state = 631, .external_lex_state = 2}, + [1899] = {.lex_state = 631, .external_lex_state = 2}, + [1900] = {.lex_state = 17}, + [1901] = {.lex_state = 631, .external_lex_state = 2}, + [1902] = {.lex_state = 631, .external_lex_state = 2}, + [1903] = {.lex_state = 631, .external_lex_state = 2}, + [1904] = {.lex_state = 631, .external_lex_state = 2}, + [1905] = {.lex_state = 17}, + [1906] = {.lex_state = 633, .external_lex_state = 2}, + [1907] = {.lex_state = 90}, + [1908] = {.lex_state = 631, .external_lex_state = 2}, + [1909] = {.lex_state = 161, .external_lex_state = 2}, [1910] = {.lex_state = 161, .external_lex_state = 2}, - [1911] = {.lex_state = 635, .external_lex_state = 2}, - [1912] = {.lex_state = 139}, - [1913] = {.lex_state = 139}, - [1914] = {.lex_state = 139}, - [1915] = {.lex_state = 90}, - [1916] = {.lex_state = 635, .external_lex_state = 2}, - [1917] = {.lex_state = 635, .external_lex_state = 2}, - [1918] = {.lex_state = 635, .external_lex_state = 2}, - [1919] = {.lex_state = 635, .external_lex_state = 2}, - [1920] = {.lex_state = 635, .external_lex_state = 2}, - [1921] = {.lex_state = 635, .external_lex_state = 2}, - [1922] = {.lex_state = 635, .external_lex_state = 2}, - [1923] = {.lex_state = 635, .external_lex_state = 2}, - [1924] = {.lex_state = 174, .external_lex_state = 2}, - [1925] = {.lex_state = 635, .external_lex_state = 2}, - [1926] = {.lex_state = 635, .external_lex_state = 2}, - [1927] = {.lex_state = 635, .external_lex_state = 2}, - [1928] = {.lex_state = 161, .external_lex_state = 2}, - [1929] = {.lex_state = 635, .external_lex_state = 2}, - [1930] = {.lex_state = 635, .external_lex_state = 2}, - [1931] = {.lex_state = 1202}, - [1932] = {.lex_state = 266}, - [1933] = {.lex_state = 139}, - [1934] = {.lex_state = 1204}, - [1935] = {.lex_state = 161, .external_lex_state = 2}, - [1936] = {.lex_state = 161, .external_lex_state = 2}, - [1937] = {.lex_state = 139}, - [1938] = {.lex_state = 635, .external_lex_state = 2}, - [1939] = {.lex_state = 161, .external_lex_state = 2}, + [1911] = {.lex_state = 139}, + [1912] = {.lex_state = 19}, + [1913] = {.lex_state = 631, .external_lex_state = 2}, + [1914] = {.lex_state = 631, .external_lex_state = 2}, + [1915] = {.lex_state = 631, .external_lex_state = 2}, + [1916] = {.lex_state = 631, .external_lex_state = 2}, + [1917] = {.lex_state = 631, .external_lex_state = 2}, + [1918] = {.lex_state = 631, .external_lex_state = 2}, + [1919] = {.lex_state = 580}, + [1920] = {.lex_state = 631, .external_lex_state = 2}, + [1921] = {.lex_state = 161, .external_lex_state = 2}, + [1922] = {.lex_state = 174, .external_lex_state = 2}, + [1923] = {.lex_state = 631, .external_lex_state = 2}, + [1924] = {.lex_state = 161, .external_lex_state = 2}, + [1925] = {.lex_state = 631, .external_lex_state = 2}, + [1926] = {.lex_state = 90}, + [1927] = {.lex_state = 139}, + [1928] = {.lex_state = 631, .external_lex_state = 2}, + [1929] = {.lex_state = 139}, + [1930] = {.lex_state = 631, .external_lex_state = 2}, + [1931] = {.lex_state = 18}, + [1932] = {.lex_state = 161, .external_lex_state = 2}, + [1933] = {.lex_state = 125, .external_lex_state = 2}, + [1934] = {.lex_state = 266}, + [1935] = {.lex_state = 139}, + [1936] = {.lex_state = 139}, + [1937] = {.lex_state = 631, .external_lex_state = 2}, + [1938] = {.lex_state = 161, .external_lex_state = 2}, + [1939] = {.lex_state = 90}, [1940] = {.lex_state = 90}, - [1941] = {.lex_state = 90}, - [1942] = {.lex_state = 19}, - [1943] = {.lex_state = 161, .external_lex_state = 2}, - [1944] = {.lex_state = 584}, - [1945] = {.lex_state = 635, .external_lex_state = 2}, - [1946] = {.lex_state = 161, .external_lex_state = 2}, - [1947] = {.lex_state = 90}, + [1941] = {.lex_state = 161, .external_lex_state = 2}, + [1942] = {.lex_state = 1198}, + [1943] = {.lex_state = 631, .external_lex_state = 2}, + [1944] = {.lex_state = 631, .external_lex_state = 2}, + [1945] = {.lex_state = 631, .external_lex_state = 2}, + [1946] = {.lex_state = 1200}, + [1947] = {.lex_state = 631, .external_lex_state = 2}, [1948] = {.lex_state = 175, .external_lex_state = 2}, - [1949] = {.lex_state = 125, .external_lex_state = 2}, - [1950] = {.lex_state = 125, .external_lex_state = 2}, + [1949] = {.lex_state = 161, .external_lex_state = 2}, + [1950] = {.lex_state = 20}, [1951] = {.lex_state = 125, .external_lex_state = 2}, - [1952] = {.lex_state = 1205}, - [1953] = {.lex_state = 125, .external_lex_state = 2}, - [1954] = {.lex_state = 163, .external_lex_state = 2}, - [1955] = {.lex_state = 1203}, - [1956] = {.lex_state = 175, .external_lex_state = 2}, - [1957] = {.lex_state = 140}, - [1958] = {.lex_state = 1207}, - [1959] = {.lex_state = 266}, - [1960] = {.lex_state = 125, .external_lex_state = 2}, - [1961] = {.lex_state = 1205}, - [1962] = {.lex_state = 20}, - [1963] = {.lex_state = 20}, - [1964] = {.lex_state = 161, .external_lex_state = 2}, - [1965] = {.lex_state = 161, .external_lex_state = 2}, - [1966] = {.lex_state = 141}, - [1967] = {.lex_state = 125, .external_lex_state = 2}, - [1968] = {.lex_state = 266}, - [1969] = {.lex_state = 21}, + [1952] = {.lex_state = 1201}, + [1953] = {.lex_state = 1201}, + [1954] = {.lex_state = 1203}, + [1955] = {.lex_state = 1199}, + [1956] = {.lex_state = 161, .external_lex_state = 2}, + [1957] = {.lex_state = 125, .external_lex_state = 2}, + [1958] = {.lex_state = 125, .external_lex_state = 2}, + [1959] = {.lex_state = 141}, + [1960] = {.lex_state = 140}, + [1961] = {.lex_state = 125, .external_lex_state = 2}, + [1962] = {.lex_state = 266}, + [1963] = {.lex_state = 125, .external_lex_state = 2}, + [1964] = {.lex_state = 125, .external_lex_state = 2}, + [1965] = {.lex_state = 175, .external_lex_state = 2}, + [1966] = {.lex_state = 20}, + [1967] = {.lex_state = 163, .external_lex_state = 2}, + [1968] = {.lex_state = 160, .external_lex_state = 2}, + [1969] = {.lex_state = 158, .external_lex_state = 2}, [1970] = {.lex_state = 266}, [1971] = {.lex_state = 21}, - [1972] = {.lex_state = 158, .external_lex_state = 2}, - [1973] = {.lex_state = 158, .external_lex_state = 2}, - [1974] = {.lex_state = 152, .external_lex_state = 2}, - [1975] = {.lex_state = 1208}, - [1976] = {.lex_state = 21}, - [1977] = {.lex_state = 1206}, - [1978] = {.lex_state = 266}, - [1979] = {.lex_state = 158, .external_lex_state = 2}, - [1980] = {.lex_state = 1206}, + [1972] = {.lex_state = 21}, + [1973] = {.lex_state = 152, .external_lex_state = 2}, + [1974] = {.lex_state = 158, .external_lex_state = 2}, + [1975] = {.lex_state = 580}, + [1976] = {.lex_state = 1204}, + [1977] = {.lex_state = 158, .external_lex_state = 2}, + [1978] = {.lex_state = 38, .external_lex_state = 2}, + [1979] = {.lex_state = 142}, + [1980] = {.lex_state = 1202}, [1981] = {.lex_state = 266}, - [1982] = {.lex_state = 21}, - [1983] = {.lex_state = 158, .external_lex_state = 2}, - [1984] = {.lex_state = 266}, - [1985] = {.lex_state = 266}, - [1986] = {.lex_state = 38, .external_lex_state = 2}, - [1987] = {.lex_state = 158, .external_lex_state = 2}, - [1988] = {.lex_state = 90}, - [1989] = {.lex_state = 21}, - [1990] = {.lex_state = 160, .external_lex_state = 2}, - [1991] = {.lex_state = 1206}, - [1992] = {.lex_state = 1208}, - [1993] = {.lex_state = 21}, - [1994] = {.lex_state = 21}, - [1995] = {.lex_state = 1206}, - [1996] = {.lex_state = 266}, - [1997] = {.lex_state = 126, .external_lex_state = 2}, - [1998] = {.lex_state = 38, .external_lex_state = 2}, - [1999] = {.lex_state = 21}, - [2000] = {.lex_state = 584}, - [2001] = {.lex_state = 152, .external_lex_state = 2}, - [2002] = {.lex_state = 142}, - [2003] = {.lex_state = 266}, - [2004] = {.lex_state = 584}, - [2005] = {.lex_state = 584}, - [2006] = {.lex_state = 584}, + [1982] = {.lex_state = 580}, + [1983] = {.lex_state = 1202}, + [1984] = {.lex_state = 580}, + [1985] = {.lex_state = 580}, + [1986] = {.lex_state = 21}, + [1987] = {.lex_state = 266}, + [1988] = {.lex_state = 266}, + [1989] = {.lex_state = 142}, + [1990] = {.lex_state = 158, .external_lex_state = 2}, + [1991] = {.lex_state = 158, .external_lex_state = 2}, + [1992] = {.lex_state = 266}, + [1993] = {.lex_state = 580}, + [1994] = {.lex_state = 580}, + [1995] = {.lex_state = 580}, + [1996] = {.lex_state = 580}, + [1997] = {.lex_state = 21}, + [1998] = {.lex_state = 21}, + [1999] = {.lex_state = 90}, + [2000] = {.lex_state = 1202}, + [2001] = {.lex_state = 1204}, + [2002] = {.lex_state = 266}, + [2003] = {.lex_state = 21}, + [2004] = {.lex_state = 266}, + [2005] = {.lex_state = 21}, + [2006] = {.lex_state = 266}, [2007] = {.lex_state = 21}, - [2008] = {.lex_state = 584}, - [2009] = {.lex_state = 21}, - [2010] = {.lex_state = 584}, - [2011] = {.lex_state = 584}, - [2012] = {.lex_state = 584}, - [2013] = {.lex_state = 584}, - [2014] = {.lex_state = 21}, - [2015] = {.lex_state = 21}, - [2016] = {.lex_state = 142}, - [2017] = {.lex_state = 21}, - [2018] = {.lex_state = 584}, - [2019] = {.lex_state = 584}, - [2020] = {.lex_state = 584}, - [2021] = {.lex_state = 584}, - [2022] = {.lex_state = 584}, - [2023] = {.lex_state = 1209}, - [2024] = {.lex_state = 45, .external_lex_state = 2}, - [2025] = {.lex_state = 584}, - [2026] = {.lex_state = 153, .external_lex_state = 2}, - [2027] = {.lex_state = 45, .external_lex_state = 2}, - [2028] = {.lex_state = 584}, - [2029] = {.lex_state = 583}, - [2030] = {.lex_state = 153, .external_lex_state = 2}, - [2031] = {.lex_state = 153, .external_lex_state = 2}, - [2032] = {.lex_state = 90}, - [2033] = {.lex_state = 166, .external_lex_state = 2}, - [2034] = {.lex_state = 584}, - [2035] = {.lex_state = 584}, - [2036] = {.lex_state = 584}, - [2037] = {.lex_state = 584}, - [2038] = {.lex_state = 166, .external_lex_state = 2}, - [2039] = {.lex_state = 21}, - [2040] = {.lex_state = 166, .external_lex_state = 2}, - [2041] = {.lex_state = 584}, - [2042] = {.lex_state = 584}, - [2043] = {.lex_state = 584}, - [2044] = {.lex_state = 584}, - [2045] = {.lex_state = 584}, - [2046] = {.lex_state = 584}, - [2047] = {.lex_state = 584}, - [2048] = {.lex_state = 584}, - [2049] = {.lex_state = 584}, - [2050] = {.lex_state = 584}, - [2051] = {.lex_state = 584}, - [2052] = {.lex_state = 584}, - [2053] = {.lex_state = 143}, - [2054] = {.lex_state = 584}, - [2055] = {.lex_state = 143}, - [2056] = {.lex_state = 153, .external_lex_state = 2}, - [2057] = {.lex_state = 1209}, - [2058] = {.lex_state = 166, .external_lex_state = 2}, - [2059] = {.lex_state = 166, .external_lex_state = 2}, - [2060] = {.lex_state = 143}, - [2061] = {.lex_state = 584}, - [2062] = {.lex_state = 584}, - [2063] = {.lex_state = 584}, - [2064] = {.lex_state = 584}, - [2065] = {.lex_state = 584}, - [2066] = {.lex_state = 143}, - [2067] = {.lex_state = 584}, - [2068] = {.lex_state = 584}, - [2069] = {.lex_state = 584}, - [2070] = {.lex_state = 584}, - [2071] = {.lex_state = 45, .external_lex_state = 2}, - [2072] = {.lex_state = 584}, - [2073] = {.lex_state = 584}, - [2074] = {.lex_state = 584}, - [2075] = {.lex_state = 584}, - [2076] = {.lex_state = 90}, - [2077] = {.lex_state = 584}, - [2078] = {.lex_state = 143}, - [2079] = {.lex_state = 584}, - [2080] = {.lex_state = 143}, - [2081] = {.lex_state = 143}, - [2082] = {.lex_state = 153, .external_lex_state = 2}, - [2083] = {.lex_state = 143}, - [2084] = {.lex_state = 584}, + [2008] = {.lex_state = 21}, + [2009] = {.lex_state = 38, .external_lex_state = 2}, + [2010] = {.lex_state = 21}, + [2011] = {.lex_state = 580}, + [2012] = {.lex_state = 21}, + [2013] = {.lex_state = 21}, + [2014] = {.lex_state = 1202}, + [2015] = {.lex_state = 152, .external_lex_state = 2}, + [2016] = {.lex_state = 21}, + [2017] = {.lex_state = 126, .external_lex_state = 2}, + [2018] = {.lex_state = 580}, + [2019] = {.lex_state = 580}, + [2020] = {.lex_state = 580}, + [2021] = {.lex_state = 580}, + [2022] = {.lex_state = 580}, + [2023] = {.lex_state = 580}, + [2024] = {.lex_state = 580}, + [2025] = {.lex_state = 580}, + [2026] = {.lex_state = 580}, + [2027] = {.lex_state = 580}, + [2028] = {.lex_state = 580}, + [2029] = {.lex_state = 580}, + [2030] = {.lex_state = 580}, + [2031] = {.lex_state = 580}, + [2032] = {.lex_state = 580}, + [2033] = {.lex_state = 580}, + [2034] = {.lex_state = 580}, + [2035] = {.lex_state = 580}, + [2036] = {.lex_state = 580}, + [2037] = {.lex_state = 580}, + [2038] = {.lex_state = 580}, + [2039] = {.lex_state = 580}, + [2040] = {.lex_state = 580}, + [2041] = {.lex_state = 580}, + [2042] = {.lex_state = 580}, + [2043] = {.lex_state = 580}, + [2044] = {.lex_state = 580}, + [2045] = {.lex_state = 580}, + [2046] = {.lex_state = 580}, + [2047] = {.lex_state = 580}, + [2048] = {.lex_state = 580}, + [2049] = {.lex_state = 580}, + [2050] = {.lex_state = 580}, + [2051] = {.lex_state = 580}, + [2052] = {.lex_state = 580}, + [2053] = {.lex_state = 580}, + [2054] = {.lex_state = 580}, + [2055] = {.lex_state = 580}, + [2056] = {.lex_state = 580}, + [2057] = {.lex_state = 580}, + [2058] = {.lex_state = 580}, + [2059] = {.lex_state = 580}, + [2060] = {.lex_state = 580}, + [2061] = {.lex_state = 580}, + [2062] = {.lex_state = 580}, + [2063] = {.lex_state = 580}, + [2064] = {.lex_state = 580}, + [2065] = {.lex_state = 580}, + [2066] = {.lex_state = 580}, + [2067] = {.lex_state = 580}, + [2068] = {.lex_state = 580}, + [2069] = {.lex_state = 580}, + [2070] = {.lex_state = 580}, + [2071] = {.lex_state = 266}, + [2072] = {.lex_state = 45, .external_lex_state = 2}, + [2073] = {.lex_state = 166, .external_lex_state = 2}, + [2074] = {.lex_state = 266}, + [2075] = {.lex_state = 158, .external_lex_state = 2}, + [2076] = {.lex_state = 38, .external_lex_state = 2}, + [2077] = {.lex_state = 1205}, + [2078] = {.lex_state = 153, .external_lex_state = 2}, + [2079] = {.lex_state = 143}, + [2080] = {.lex_state = 166, .external_lex_state = 2}, + [2081] = {.lex_state = 166, .external_lex_state = 2}, + [2082] = {.lex_state = 21}, + [2083] = {.lex_state = 166, .external_lex_state = 2}, + [2084] = {.lex_state = 143}, [2085] = {.lex_state = 143}, - [2086] = {.lex_state = 143}, - [2087] = {.lex_state = 584}, - [2088] = {.lex_state = 1209}, - [2089] = {.lex_state = 584}, - [2090] = {.lex_state = 584}, - [2091] = {.lex_state = 584}, - [2092] = {.lex_state = 584}, - [2093] = {.lex_state = 584}, - [2094] = {.lex_state = 584}, - [2095] = {.lex_state = 584}, - [2096] = {.lex_state = 584}, - [2097] = {.lex_state = 584}, - [2098] = {.lex_state = 584}, - [2099] = {.lex_state = 584}, - [2100] = {.lex_state = 584}, - [2101] = {.lex_state = 584}, - [2102] = {.lex_state = 584}, - [2103] = {.lex_state = 584}, - [2104] = {.lex_state = 584}, - [2105] = {.lex_state = 584}, - [2106] = {.lex_state = 584}, - [2107] = {.lex_state = 584}, - [2108] = {.lex_state = 584}, - [2109] = {.lex_state = 584}, - [2110] = {.lex_state = 584}, - [2111] = {.lex_state = 584}, - [2112] = {.lex_state = 158, .external_lex_state = 2}, - [2113] = {.lex_state = 1209}, - [2114] = {.lex_state = 584}, - [2115] = {.lex_state = 584}, - [2116] = {.lex_state = 584}, - [2117] = {.lex_state = 1209}, - [2118] = {.lex_state = 161, .external_lex_state = 2}, - [2119] = {.lex_state = 161, .external_lex_state = 2}, - [2120] = {.lex_state = 584}, - [2121] = {.lex_state = 1209}, - [2122] = {.lex_state = 1209}, - [2123] = {.lex_state = 161, .external_lex_state = 2}, - [2124] = {.lex_state = 584}, - [2125] = {.lex_state = 584}, - [2126] = {.lex_state = 584}, - [2127] = {.lex_state = 584}, - [2128] = {.lex_state = 584}, - [2129] = {.lex_state = 584}, - [2130] = {.lex_state = 584}, - [2131] = {.lex_state = 584}, - [2132] = {.lex_state = 266}, - [2133] = {.lex_state = 584}, - [2134] = {.lex_state = 584}, - [2135] = {.lex_state = 584}, - [2136] = {.lex_state = 584}, - [2137] = {.lex_state = 584}, - [2138] = {.lex_state = 584}, - [2139] = {.lex_state = 143}, - [2140] = {.lex_state = 584}, - [2141] = {.lex_state = 166, .external_lex_state = 2}, - [2142] = {.lex_state = 584}, - [2143] = {.lex_state = 1209}, - [2144] = {.lex_state = 266}, - [2145] = {.lex_state = 584}, - [2146] = {.lex_state = 584}, - [2147] = {.lex_state = 158, .external_lex_state = 2}, - [2148] = {.lex_state = 584}, - [2149] = {.lex_state = 38, .external_lex_state = 2}, - [2150] = {.lex_state = 584}, - [2151] = {.lex_state = 1209}, - [2152] = {.lex_state = 166, .external_lex_state = 2}, - [2153] = {.lex_state = 1209}, - [2154] = {.lex_state = 143}, - [2155] = {.lex_state = 143}, - [2156] = {.lex_state = 584}, - [2157] = {.lex_state = 584}, - [2158] = {.lex_state = 584}, - [2159] = {.lex_state = 584}, - [2160] = {.lex_state = 584}, - [2161] = {.lex_state = 584}, - [2162] = {.lex_state = 584}, - [2163] = {.lex_state = 584}, - [2164] = {.lex_state = 584}, - [2165] = {.lex_state = 584}, - [2166] = {.lex_state = 584}, - [2167] = {.lex_state = 584}, + [2086] = {.lex_state = 580}, + [2087] = {.lex_state = 153, .external_lex_state = 2}, + [2088] = {.lex_state = 153, .external_lex_state = 2}, + [2089] = {.lex_state = 143}, + [2090] = {.lex_state = 161, .external_lex_state = 2}, + [2091] = {.lex_state = 153, .external_lex_state = 2}, + [2092] = {.lex_state = 166, .external_lex_state = 2}, + [2093] = {.lex_state = 166, .external_lex_state = 2}, + [2094] = {.lex_state = 161, .external_lex_state = 2}, + [2095] = {.lex_state = 143}, + [2096] = {.lex_state = 1205}, + [2097] = {.lex_state = 1205}, + [2098] = {.lex_state = 90}, + [2099] = {.lex_state = 1205}, + [2100] = {.lex_state = 579}, + [2101] = {.lex_state = 143}, + [2102] = {.lex_state = 143}, + [2103] = {.lex_state = 580}, + [2104] = {.lex_state = 143}, + [2105] = {.lex_state = 143}, + [2106] = {.lex_state = 143}, + [2107] = {.lex_state = 1205}, + [2108] = {.lex_state = 161, .external_lex_state = 2}, + [2109] = {.lex_state = 158, .external_lex_state = 2}, + [2110] = {.lex_state = 45, .external_lex_state = 2}, + [2111] = {.lex_state = 143}, + [2112] = {.lex_state = 143}, + [2113] = {.lex_state = 143}, + [2114] = {.lex_state = 166, .external_lex_state = 2}, + [2115] = {.lex_state = 90}, + [2116] = {.lex_state = 580}, + [2117] = {.lex_state = 580}, + [2118] = {.lex_state = 580}, + [2119] = {.lex_state = 580}, + [2120] = {.lex_state = 580}, + [2121] = {.lex_state = 580}, + [2122] = {.lex_state = 580}, + [2123] = {.lex_state = 580}, + [2124] = {.lex_state = 1205}, + [2125] = {.lex_state = 580}, + [2126] = {.lex_state = 580}, + [2127] = {.lex_state = 45, .external_lex_state = 2}, + [2128] = {.lex_state = 580}, + [2129] = {.lex_state = 580}, + [2130] = {.lex_state = 1205}, + [2131] = {.lex_state = 1205}, + [2132] = {.lex_state = 153, .external_lex_state = 2}, + [2133] = {.lex_state = 1205}, + [2134] = {.lex_state = 1205}, + [2135] = {.lex_state = 580}, + [2136] = {.lex_state = 580}, + [2137] = {.lex_state = 580}, + [2138] = {.lex_state = 580}, + [2139] = {.lex_state = 580}, + [2140] = {.lex_state = 580}, + [2141] = {.lex_state = 580}, + [2142] = {.lex_state = 580}, + [2143] = {.lex_state = 580}, + [2144] = {.lex_state = 580}, + [2145] = {.lex_state = 580}, + [2146] = {.lex_state = 580}, + [2147] = {.lex_state = 580}, + [2148] = {.lex_state = 580}, + [2149] = {.lex_state = 580}, + [2150] = {.lex_state = 580}, + [2151] = {.lex_state = 580}, + [2152] = {.lex_state = 580}, + [2153] = {.lex_state = 580}, + [2154] = {.lex_state = 580}, + [2155] = {.lex_state = 580}, + [2156] = {.lex_state = 580}, + [2157] = {.lex_state = 580}, + [2158] = {.lex_state = 580}, + [2159] = {.lex_state = 580}, + [2160] = {.lex_state = 580}, + [2161] = {.lex_state = 580}, + [2162] = {.lex_state = 580}, + [2163] = {.lex_state = 580}, + [2164] = {.lex_state = 580}, + [2165] = {.lex_state = 580}, + [2166] = {.lex_state = 580}, + [2167] = {.lex_state = 38, .external_lex_state = 2}, [2168] = {.lex_state = 38, .external_lex_state = 2}, [2169] = {.lex_state = 38, .external_lex_state = 2}, [2170] = {.lex_state = 38, .external_lex_state = 2}, [2171] = {.lex_state = 38, .external_lex_state = 2}, - [2172] = {.lex_state = 153, .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}, [2175] = {.lex_state = 38, .external_lex_state = 2}, @@ -35997,31 +35991,31 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 153, .external_lex_state = 2}, + [2183] = {.lex_state = 38, .external_lex_state = 2}, [2184] = {.lex_state = 38, .external_lex_state = 2}, - [2185] = {.lex_state = 38, .external_lex_state = 2}, + [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 = 45, .external_lex_state = 2}, - [2190] = {.lex_state = 38, .external_lex_state = 2}, - [2191] = {.lex_state = 584}, + [2189] = {.lex_state = 38, .external_lex_state = 2}, + [2190] = {.lex_state = 153, .external_lex_state = 2}, + [2191] = {.lex_state = 38, .external_lex_state = 2}, [2192] = {.lex_state = 38, .external_lex_state = 2}, [2193] = {.lex_state = 38, .external_lex_state = 2}, [2194] = {.lex_state = 38, .external_lex_state = 2}, - [2195] = {.lex_state = 584}, - [2196] = {.lex_state = 90}, + [2195] = {.lex_state = 153, .external_lex_state = 2}, + [2196] = {.lex_state = 38, .external_lex_state = 2}, [2197] = {.lex_state = 38, .external_lex_state = 2}, [2198] = {.lex_state = 38, .external_lex_state = 2}, - [2199] = {.lex_state = 584}, - [2200] = {.lex_state = 38, .external_lex_state = 2}, - [2201] = {.lex_state = 38, .external_lex_state = 2}, + [2199] = {.lex_state = 38, .external_lex_state = 2}, + [2200] = {.lex_state = 90}, + [2201] = {.lex_state = 143}, [2202] = {.lex_state = 38, .external_lex_state = 2}, - [2203] = {.lex_state = 584}, - [2204] = {.lex_state = 38, .external_lex_state = 2}, - [2205] = {.lex_state = 584}, + [2203] = {.lex_state = 38, .external_lex_state = 2}, + [2204] = {.lex_state = 580}, + [2205] = {.lex_state = 38, .external_lex_state = 2}, [2206] = {.lex_state = 38, .external_lex_state = 2}, - [2207] = {.lex_state = 38, .external_lex_state = 2}, + [2207] = {.lex_state = 580}, [2208] = {.lex_state = 38, .external_lex_state = 2}, [2209] = {.lex_state = 38, .external_lex_state = 2}, [2210] = {.lex_state = 38, .external_lex_state = 2}, @@ -36029,111 +36023,111 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2212] = {.lex_state = 38, .external_lex_state = 2}, [2213] = {.lex_state = 38, .external_lex_state = 2}, [2214] = {.lex_state = 38, .external_lex_state = 2}, - [2215] = {.lex_state = 38, .external_lex_state = 2}, - [2216] = {.lex_state = 143}, - [2217] = {.lex_state = 38, .external_lex_state = 2}, - [2218] = {.lex_state = 38, .external_lex_state = 2}, + [2215] = {.lex_state = 580}, + [2216] = {.lex_state = 580}, + [2217] = {.lex_state = 580}, + [2218] = {.lex_state = 580}, [2219] = {.lex_state = 38, .external_lex_state = 2}, - [2220] = {.lex_state = 50, .external_lex_state = 2}, - [2221] = {.lex_state = 584}, - [2222] = {.lex_state = 584}, - [2223] = {.lex_state = 42, .external_lex_state = 2}, - [2224] = {.lex_state = 584}, - [2225] = {.lex_state = 584}, - [2226] = {.lex_state = 584}, - [2227] = {.lex_state = 584}, - [2228] = {.lex_state = 50, .external_lex_state = 2}, - [2229] = {.lex_state = 584}, - [2230] = {.lex_state = 584}, - [2231] = {.lex_state = 1210}, - [2232] = {.lex_state = 584}, - [2233] = {.lex_state = 1210}, - [2234] = {.lex_state = 584}, - [2235] = {.lex_state = 584}, - [2236] = {.lex_state = 1210}, - [2237] = {.lex_state = 584}, - [2238] = {.lex_state = 584}, - [2239] = {.lex_state = 584}, - [2240] = {.lex_state = 1210}, - [2241] = {.lex_state = 584}, - [2242] = {.lex_state = 584}, - [2243] = {.lex_state = 584}, - [2244] = {.lex_state = 584}, - [2245] = {.lex_state = 1210}, - [2246] = {.lex_state = 584}, - [2247] = {.lex_state = 50, .external_lex_state = 2}, - [2248] = {.lex_state = 45, .external_lex_state = 2}, - [2249] = {.lex_state = 1210}, - [2250] = {.lex_state = 584}, - [2251] = {.lex_state = 50, .external_lex_state = 2}, - [2252] = {.lex_state = 584}, - [2253] = {.lex_state = 1210}, - [2254] = {.lex_state = 584}, - [2255] = {.lex_state = 584}, - [2256] = {.lex_state = 1210}, - [2257] = {.lex_state = 584}, - [2258] = {.lex_state = 583}, - [2259] = {.lex_state = 584}, - [2260] = {.lex_state = 584}, - [2261] = {.lex_state = 584}, - [2262] = {.lex_state = 584}, - [2263] = {.lex_state = 584}, - [2264] = {.lex_state = 42, .external_lex_state = 2}, - [2265] = {.lex_state = 584}, - [2266] = {.lex_state = 155, .external_lex_state = 2}, + [2220] = {.lex_state = 580}, + [2221] = {.lex_state = 580}, + [2222] = {.lex_state = 580}, + [2223] = {.lex_state = 580}, + [2224] = {.lex_state = 580}, + [2225] = {.lex_state = 580}, + [2226] = {.lex_state = 50, .external_lex_state = 2}, + [2227] = {.lex_state = 580}, + [2228] = {.lex_state = 580}, + [2229] = {.lex_state = 580}, + [2230] = {.lex_state = 580}, + [2231] = {.lex_state = 580}, + [2232] = {.lex_state = 580}, + [2233] = {.lex_state = 580}, + [2234] = {.lex_state = 580}, + [2235] = {.lex_state = 580}, + [2236] = {.lex_state = 1206}, + [2237] = {.lex_state = 580}, + [2238] = {.lex_state = 50, .external_lex_state = 2}, + [2239] = {.lex_state = 580}, + [2240] = {.lex_state = 580}, + [2241] = {.lex_state = 1206}, + [2242] = {.lex_state = 50, .external_lex_state = 2}, + [2243] = {.lex_state = 1206}, + [2244] = {.lex_state = 50, .external_lex_state = 2}, + [2245] = {.lex_state = 580}, + [2246] = {.lex_state = 1206}, + [2247] = {.lex_state = 1206}, + [2248] = {.lex_state = 1206}, + [2249] = {.lex_state = 1206}, + [2250] = {.lex_state = 45, .external_lex_state = 2}, + [2251] = {.lex_state = 1206}, + [2252] = {.lex_state = 580}, + [2253] = {.lex_state = 580}, + [2254] = {.lex_state = 580}, + [2255] = {.lex_state = 42, .external_lex_state = 2}, + [2256] = {.lex_state = 580}, + [2257] = {.lex_state = 580}, + [2258] = {.lex_state = 580}, + [2259] = {.lex_state = 579}, + [2260] = {.lex_state = 580}, + [2261] = {.lex_state = 580}, + [2262] = {.lex_state = 580}, + [2263] = {.lex_state = 42, .external_lex_state = 2}, + [2264] = {.lex_state = 580}, + [2265] = {.lex_state = 580}, + [2266] = {.lex_state = 38}, [2267] = {.lex_state = 155, .external_lex_state = 2}, - [2268] = {.lex_state = 583}, - [2269] = {.lex_state = 46, .external_lex_state = 2}, - [2270] = {.lex_state = 50, .external_lex_state = 2}, - [2271] = {.lex_state = 155, .external_lex_state = 2}, - [2272] = {.lex_state = 155, .external_lex_state = 2}, - [2273] = {.lex_state = 157, .external_lex_state = 2}, - [2274] = {.lex_state = 5}, - [2275] = {.lex_state = 157, .external_lex_state = 2}, + [2268] = {.lex_state = 38}, + [2269] = {.lex_state = 155, .external_lex_state = 2}, + [2270] = {.lex_state = 579}, + [2271] = {.lex_state = 50, .external_lex_state = 2}, + [2272] = {.lex_state = 38}, + [2273] = {.lex_state = 46, .external_lex_state = 2}, + [2274] = {.lex_state = 155, .external_lex_state = 2}, + [2275] = {.lex_state = 155, .external_lex_state = 2}, [2276] = {.lex_state = 5}, - [2277] = {.lex_state = 5}, - [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 47, .external_lex_state = 2}, - [2280] = {.lex_state = 157, .external_lex_state = 2}, - [2281] = {.lex_state = 155, .external_lex_state = 2}, - [2282] = {.lex_state = 157, .external_lex_state = 2}, - [2283] = {.lex_state = 157, .external_lex_state = 2}, + [2277] = {.lex_state = 157, .external_lex_state = 2}, + [2278] = {.lex_state = 157, .external_lex_state = 2}, + [2279] = {.lex_state = 155, .external_lex_state = 2}, + [2280] = {.lex_state = 48, .external_lex_state = 2}, + [2281] = {.lex_state = 5}, + [2282] = {.lex_state = 46, .external_lex_state = 2}, + [2283] = {.lex_state = 47, .external_lex_state = 2}, [2284] = {.lex_state = 5}, - [2285] = {.lex_state = 157, .external_lex_state = 2}, - [2286] = {.lex_state = 155, .external_lex_state = 2}, + [2285] = {.lex_state = 5}, + [2286] = {.lex_state = 157, .external_lex_state = 2}, [2287] = {.lex_state = 157, .external_lex_state = 2}, [2288] = {.lex_state = 5}, - [2289] = {.lex_state = 5}, - [2290] = {.lex_state = 46, .external_lex_state = 2}, - [2291] = {.lex_state = 157, .external_lex_state = 2}, - [2292] = {.lex_state = 50, .external_lex_state = 2}, - [2293] = {.lex_state = 50, .external_lex_state = 2}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 157, .external_lex_state = 2}, + [2289] = {.lex_state = 157, .external_lex_state = 2}, + [2290] = {.lex_state = 157, .external_lex_state = 2}, + [2291] = {.lex_state = 155, .external_lex_state = 2}, + [2292] = {.lex_state = 5}, + [2293] = {.lex_state = 157, .external_lex_state = 2}, + [2294] = {.lex_state = 50, .external_lex_state = 2}, + [2295] = {.lex_state = 48, .external_lex_state = 2}, [2296] = {.lex_state = 50, .external_lex_state = 2}, - [2297] = {.lex_state = 47, .external_lex_state = 2}, - [2298] = {.lex_state = 583}, - [2299] = {.lex_state = 48, .external_lex_state = 2}, - [2300] = {.lex_state = 583}, - [2301] = {.lex_state = 49, .external_lex_state = 2}, - [2302] = {.lex_state = 581}, - [2303] = {.lex_state = 583}, - [2304] = {.lex_state = 583}, - [2305] = {.lex_state = 583}, - [2306] = {.lex_state = 583}, - [2307] = {.lex_state = 49, .external_lex_state = 2}, - [2308] = {.lex_state = 7}, - [2309] = {.lex_state = 49, .external_lex_state = 2}, + [2297] = {.lex_state = 50, .external_lex_state = 2}, + [2298] = {.lex_state = 157, .external_lex_state = 2}, + [2299] = {.lex_state = 157, .external_lex_state = 2}, + [2300] = {.lex_state = 47, .external_lex_state = 2}, + [2301] = {.lex_state = 579}, + [2302] = {.lex_state = 579}, + [2303] = {.lex_state = 48, .external_lex_state = 2}, + [2304] = {.lex_state = 579}, + [2305] = {.lex_state = 49, .external_lex_state = 2}, + [2306] = {.lex_state = 579}, + [2307] = {.lex_state = 579}, + [2308] = {.lex_state = 579}, + [2309] = {.lex_state = 577}, [2310] = {.lex_state = 49, .external_lex_state = 2}, - [2311] = {.lex_state = 49, .external_lex_state = 2}, - [2312] = {.lex_state = 49, .external_lex_state = 2}, - [2313] = {.lex_state = 584}, - [2314] = {.lex_state = 49, .external_lex_state = 2}, - [2315] = {.lex_state = 49, .external_lex_state = 2}, + [2311] = {.lex_state = 7}, + [2312] = {.lex_state = 580}, + [2313] = {.lex_state = 49, .external_lex_state = 2}, + [2314] = {.lex_state = 580}, + [2315] = {.lex_state = 580}, [2316] = {.lex_state = 49, .external_lex_state = 2}, [2317] = {.lex_state = 49, .external_lex_state = 2}, [2318] = {.lex_state = 49, .external_lex_state = 2}, - [2319] = {.lex_state = 49, .external_lex_state = 2}, + [2319] = {.lex_state = 636}, [2320] = {.lex_state = 49, .external_lex_state = 2}, [2321] = {.lex_state = 49, .external_lex_state = 2}, [2322] = {.lex_state = 49, .external_lex_state = 2}, @@ -36142,3208 +36136,3211 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 584}, - [2329] = {.lex_state = 584}, - [2330] = {.lex_state = 584}, - [2331] = {.lex_state = 584}, + [2328] = {.lex_state = 49, .external_lex_state = 2}, + [2329] = {.lex_state = 49, .external_lex_state = 2}, + [2330] = {.lex_state = 49, .external_lex_state = 2}, + [2331] = {.lex_state = 49, .external_lex_state = 2}, [2332] = {.lex_state = 49, .external_lex_state = 2}, [2333] = {.lex_state = 49, .external_lex_state = 2}, [2334] = {.lex_state = 49, .external_lex_state = 2}, - [2335] = {.lex_state = 49, .external_lex_state = 2}, + [2335] = {.lex_state = 580}, [2336] = {.lex_state = 49, .external_lex_state = 2}, [2337] = {.lex_state = 49, .external_lex_state = 2}, [2338] = {.lex_state = 49, .external_lex_state = 2}, - [2339] = {.lex_state = 640}, - [2340] = {.lex_state = 49, .external_lex_state = 2}, - [2341] = {.lex_state = 7}, - [2342] = {.lex_state = 641}, - [2343] = {.lex_state = 587}, - [2344] = {.lex_state = 640}, - [2345] = {.lex_state = 641}, - [2346] = {.lex_state = 587}, - [2347] = {.lex_state = 648}, - [2348] = {.lex_state = 49, .external_lex_state = 2}, - [2349] = {.lex_state = 639}, + [2339] = {.lex_state = 49, .external_lex_state = 2}, + [2340] = {.lex_state = 580}, + [2341] = {.lex_state = 49, .external_lex_state = 2}, + [2342] = {.lex_state = 49, .external_lex_state = 2}, + [2343] = {.lex_state = 49, .external_lex_state = 2}, + [2344] = {.lex_state = 7}, + [2345] = {.lex_state = 583}, + [2346] = {.lex_state = 636}, + [2347] = {.lex_state = 637}, + [2348] = {.lex_state = 637}, + [2349] = {.lex_state = 49, .external_lex_state = 2}, [2350] = {.lex_state = 49, .external_lex_state = 2}, - [2351] = {.lex_state = 587}, + [2351] = {.lex_state = 637}, [2352] = {.lex_state = 49, .external_lex_state = 2}, - [2353] = {.lex_state = 587}, - [2354] = {.lex_state = 587}, - [2355] = {.lex_state = 587}, - [2356] = {.lex_state = 49, .external_lex_state = 2}, - [2357] = {.lex_state = 641}, - [2358] = {.lex_state = 49, .external_lex_state = 2}, - [2359] = {.lex_state = 49, .external_lex_state = 2}, - [2360] = {.lex_state = 49, .external_lex_state = 2}, + [2353] = {.lex_state = 640}, + [2354] = {.lex_state = 644}, + [2355] = {.lex_state = 583}, + [2356] = {.lex_state = 637}, + [2357] = {.lex_state = 583}, + [2358] = {.lex_state = 583}, + [2359] = {.lex_state = 583}, + [2360] = {.lex_state = 583}, [2361] = {.lex_state = 49, .external_lex_state = 2}, - [2362] = {.lex_state = 641}, + [2362] = {.lex_state = 49, .external_lex_state = 2}, [2363] = {.lex_state = 49, .external_lex_state = 2}, [2364] = {.lex_state = 49, .external_lex_state = 2}, [2365] = {.lex_state = 49, .external_lex_state = 2}, - [2366] = {.lex_state = 49, .external_lex_state = 2}, - [2367] = {.lex_state = 644}, - [2368] = {.lex_state = 644}, - [2369] = {.lex_state = 650}, - [2370] = {.lex_state = 650}, - [2371] = {.lex_state = 652}, - [2372] = {.lex_state = 642}, - [2373] = {.lex_state = 587}, - [2374] = {.lex_state = 642}, - [2375] = {.lex_state = 639}, - [2376] = {.lex_state = 639}, - [2377] = {.lex_state = 648}, - [2378] = {.lex_state = 587}, - [2379] = {.lex_state = 587}, - [2380] = {.lex_state = 587}, - [2381] = {.lex_state = 639}, - [2382] = {.lex_state = 650}, - [2383] = {.lex_state = 645}, - [2384] = {.lex_state = 642}, - [2385] = {.lex_state = 652}, - [2386] = {.lex_state = 652}, - [2387] = {.lex_state = 652}, - [2388] = {.lex_state = 654}, - [2389] = {.lex_state = 579}, - [2390] = {.lex_state = 579}, - [2391] = {.lex_state = 579}, - [2392] = {.lex_state = 579}, - [2393] = {.lex_state = 579}, - [2394] = {.lex_state = 579}, - [2395] = {.lex_state = 639}, - [2396] = {.lex_state = 639}, - [2397] = {.lex_state = 639}, - [2398] = {.lex_state = 642}, - [2399] = {.lex_state = 649}, - [2400] = {.lex_state = 639}, - [2401] = {.lex_state = 627}, - [2402] = {.lex_state = 579}, - [2403] = {.lex_state = 584}, - [2404] = {.lex_state = 584}, - [2405] = {.lex_state = 652}, + [2366] = {.lex_state = 635}, + [2367] = {.lex_state = 49, .external_lex_state = 2}, + [2368] = {.lex_state = 49, .external_lex_state = 2}, + [2369] = {.lex_state = 49, .external_lex_state = 2}, + [2370] = {.lex_state = 49, .external_lex_state = 2}, + [2371] = {.lex_state = 635}, + [2372] = {.lex_state = 648}, + [2373] = {.lex_state = 646}, + [2374] = {.lex_state = 646}, + [2375] = {.lex_state = 635}, + [2376] = {.lex_state = 583}, + [2377] = {.lex_state = 583}, + [2378] = {.lex_state = 583}, + [2379] = {.lex_state = 583}, + [2380] = {.lex_state = 640}, + [2381] = {.lex_state = 638}, + [2382] = {.lex_state = 638}, + [2383] = {.lex_state = 644}, + [2384] = {.lex_state = 575}, + [2385] = {.lex_state = 646}, + [2386] = {.lex_state = 575}, + [2387] = {.lex_state = 650}, + [2388] = {.lex_state = 648}, + [2389] = {.lex_state = 575}, + [2390] = {.lex_state = 635}, + [2391] = {.lex_state = 635}, + [2392] = {.lex_state = 635}, + [2393] = {.lex_state = 641}, + [2394] = {.lex_state = 648}, + [2395] = {.lex_state = 575}, + [2396] = {.lex_state = 575}, + [2397] = {.lex_state = 635}, + [2398] = {.lex_state = 638}, + [2399] = {.lex_state = 635}, + [2400] = {.lex_state = 575}, + [2401] = {.lex_state = 580}, + [2402] = {.lex_state = 638}, + [2403] = {.lex_state = 580}, + [2404] = {.lex_state = 645}, + [2405] = {.lex_state = 577}, [2406] = {.lex_state = 646}, - [2407] = {.lex_state = 650}, - [2408] = {.lex_state = 581}, - [2409] = {.lex_state = 653}, - [2410] = {.lex_state = 52}, - [2411] = {.lex_state = 656}, - [2412] = {.lex_state = 170, .external_lex_state = 2}, - [2413] = {.lex_state = 170, .external_lex_state = 2}, - [2414] = {.lex_state = 583}, - [2415] = {.lex_state = 170, .external_lex_state = 2}, - [2416] = {.lex_state = 649}, - [2417] = {.lex_state = 656}, - [2418] = {.lex_state = 639}, - [2419] = {.lex_state = 651}, - [2420] = {.lex_state = 654}, + [2407] = {.lex_state = 642}, + [2408] = {.lex_state = 623}, + [2409] = {.lex_state = 648}, + [2410] = {.lex_state = 648}, + [2411] = {.lex_state = 575}, + [2412] = {.lex_state = 635}, + [2413] = {.lex_state = 635}, + [2414] = {.lex_state = 648}, + [2415] = {.lex_state = 642}, + [2416] = {.lex_state = 650}, + [2417] = {.lex_state = 579}, + [2418] = {.lex_state = 649}, + [2419] = {.lex_state = 645}, + [2420] = {.lex_state = 52}, [2421] = {.lex_state = 170, .external_lex_state = 2}, - [2422] = {.lex_state = 583}, - [2423] = {.lex_state = 652}, - [2424] = {.lex_state = 170, .external_lex_state = 2}, - [2425] = {.lex_state = 583}, - [2426] = {.lex_state = 645}, - [2427] = {.lex_state = 639}, - [2428] = {.lex_state = 579}, - [2429] = {.lex_state = 651}, - [2430] = {.lex_state = 639}, - [2431] = {.lex_state = 639}, - [2432] = {.lex_state = 627}, - [2433] = {.lex_state = 652}, - [2434] = {.lex_state = 646}, - [2435] = {.lex_state = 652}, - [2436] = {.lex_state = 627}, - [2437] = {.lex_state = 651}, - [2438] = {.lex_state = 579}, - [2439] = {.lex_state = 583}, - [2440] = {.lex_state = 582}, - [2441] = {.lex_state = 583}, - [2442] = {.lex_state = 583}, - [2443] = {.lex_state = 658}, - [2444] = {.lex_state = 52}, - [2445] = {.lex_state = 583}, - [2446] = {.lex_state = 170, .external_lex_state = 2}, + [2422] = {.lex_state = 170, .external_lex_state = 2}, + [2423] = {.lex_state = 579}, + [2424] = {.lex_state = 652}, + [2425] = {.lex_state = 635}, + [2426] = {.lex_state = 623}, + [2427] = {.lex_state = 635}, + [2428] = {.lex_state = 641}, + [2429] = {.lex_state = 647}, + [2430] = {.lex_state = 575}, + [2431] = {.lex_state = 579}, + [2432] = {.lex_state = 170, .external_lex_state = 2}, + [2433] = {.lex_state = 170, .external_lex_state = 2}, + [2434] = {.lex_state = 623}, + [2435] = {.lex_state = 170, .external_lex_state = 2}, + [2436] = {.lex_state = 647}, + [2437] = {.lex_state = 648}, + [2438] = {.lex_state = 648}, + [2439] = {.lex_state = 652}, + [2440] = {.lex_state = 578}, + [2441] = {.lex_state = 50, .external_lex_state = 2}, + [2442] = {.lex_state = 578}, + [2443] = {.lex_state = 170, .external_lex_state = 2}, + [2444] = {.lex_state = 54}, + [2445] = {.lex_state = 575}, + [2446] = {.lex_state = 53}, [2447] = {.lex_state = 56}, - [2448] = {.lex_state = 582}, - [2449] = {.lex_state = 653}, - [2450] = {.lex_state = 655}, - [2451] = {.lex_state = 651}, - [2452] = {.lex_state = 53}, - [2453] = {.lex_state = 583}, - [2454] = {.lex_state = 653}, - [2455] = {.lex_state = 658}, - [2456] = {.lex_state = 50, .external_lex_state = 2}, - [2457] = {.lex_state = 658}, - [2458] = {.lex_state = 653}, + [2448] = {.lex_state = 575}, + [2449] = {.lex_state = 654}, + [2450] = {.lex_state = 579}, + [2451] = {.lex_state = 652}, + [2452] = {.lex_state = 654}, + [2453] = {.lex_state = 654}, + [2454] = {.lex_state = 649}, + [2455] = {.lex_state = 578}, + [2456] = {.lex_state = 649}, + [2457] = {.lex_state = 579}, + [2458] = {.lex_state = 579}, [2459] = {.lex_state = 579}, - [2460] = {.lex_state = 579}, - [2461] = {.lex_state = 579}, - [2462] = {.lex_state = 653}, - [2463] = {.lex_state = 582}, - [2464] = {.lex_state = 656}, - [2465] = {.lex_state = 54}, - [2466] = {.lex_state = 658}, - [2467] = {.lex_state = 581}, - [2468] = {.lex_state = 658}, - [2469] = {.lex_state = 170, .external_lex_state = 2}, - [2470] = {.lex_state = 583}, - [2471] = {.lex_state = 582}, - [2472] = {.lex_state = 656}, - [2473] = {.lex_state = 53}, - [2474] = {.lex_state = 647}, - [2475] = {.lex_state = 58}, - [2476] = {.lex_state = 582}, - [2477] = {.lex_state = 653}, - [2478] = {.lex_state = 57}, - [2479] = {.lex_state = 653}, - [2480] = {.lex_state = 653}, - [2481] = {.lex_state = 582}, - [2482] = {.lex_state = 582}, - [2483] = {.lex_state = 582}, - [2484] = {.lex_state = 582}, - [2485] = {.lex_state = 658}, - [2486] = {.lex_state = 647}, - [2487] = {.lex_state = 655}, - [2488] = {.lex_state = 582}, - [2489] = {.lex_state = 57}, - [2490] = {.lex_state = 658}, - [2491] = {.lex_state = 657}, - [2492] = {.lex_state = 658}, - [2493] = {.lex_state = 658}, - [2494] = {.lex_state = 582}, - [2495] = {.lex_state = 657}, - [2496] = {.lex_state = 582}, - [2497] = {.lex_state = 582}, - [2498] = {.lex_state = 50, .external_lex_state = 2}, - [2499] = {.lex_state = 662}, - [2500] = {.lex_state = 52}, - [2501] = {.lex_state = 658}, - [2502] = {.lex_state = 52}, - [2503] = {.lex_state = 582}, - [2504] = {.lex_state = 52}, - [2505] = {.lex_state = 653}, - [2506] = {.lex_state = 52}, - [2507] = {.lex_state = 660}, - [2508] = {.lex_state = 582}, - [2509] = {.lex_state = 579}, - [2510] = {.lex_state = 579}, - [2511] = {.lex_state = 579}, - [2512] = {.lex_state = 582}, - [2513] = {.lex_state = 582}, - [2514] = {.lex_state = 583}, - [2515] = {.lex_state = 583}, + [2460] = {.lex_state = 651}, + [2461] = {.lex_state = 654}, + [2462] = {.lex_state = 647}, + [2463] = {.lex_state = 578}, + [2464] = {.lex_state = 52}, + [2465] = {.lex_state = 649}, + [2466] = {.lex_state = 649}, + [2467] = {.lex_state = 53}, + [2468] = {.lex_state = 652}, + [2469] = {.lex_state = 575}, + [2470] = {.lex_state = 575}, + [2471] = {.lex_state = 647}, + [2472] = {.lex_state = 577}, + [2473] = {.lex_state = 579}, + [2474] = {.lex_state = 643}, + [2475] = {.lex_state = 170, .external_lex_state = 2}, + [2476] = {.lex_state = 654}, + [2477] = {.lex_state = 579}, + [2478] = {.lex_state = 654}, + [2479] = {.lex_state = 649}, + [2480] = {.lex_state = 578}, + [2481] = {.lex_state = 654}, + [2482] = {.lex_state = 578}, + [2483] = {.lex_state = 643}, + [2484] = {.lex_state = 649}, + [2485] = {.lex_state = 575}, + [2486] = {.lex_state = 575}, + [2487] = {.lex_state = 575}, + [2488] = {.lex_state = 653}, + [2489] = {.lex_state = 656}, + [2490] = {.lex_state = 651}, + [2491] = {.lex_state = 57}, + [2492] = {.lex_state = 578}, + [2493] = {.lex_state = 50, .external_lex_state = 2}, + [2494] = {.lex_state = 649}, + [2495] = {.lex_state = 578}, + [2496] = {.lex_state = 653}, + [2497] = {.lex_state = 52}, + [2498] = {.lex_state = 52}, + [2499] = {.lex_state = 578}, + [2500] = {.lex_state = 654}, + [2501] = {.lex_state = 52}, + [2502] = {.lex_state = 578}, + [2503] = {.lex_state = 578}, + [2504] = {.lex_state = 654}, + [2505] = {.lex_state = 52}, + [2506] = {.lex_state = 658}, + [2507] = {.lex_state = 58}, + [2508] = {.lex_state = 654}, + [2509] = {.lex_state = 578}, + [2510] = {.lex_state = 578}, + [2511] = {.lex_state = 649}, + [2512] = {.lex_state = 578}, + [2513] = {.lex_state = 578}, + [2514] = {.lex_state = 578}, + [2515] = {.lex_state = 57}, [2516] = {.lex_state = 579}, - [2517] = {.lex_state = 154, .external_lex_state = 2}, - [2518] = {.lex_state = 582}, - [2519] = {.lex_state = 579}, - [2520] = {.lex_state = 579}, - [2521] = {.lex_state = 664}, + [2517] = {.lex_state = 575}, + [2518] = {.lex_state = 578}, + [2519] = {.lex_state = 575}, + [2520] = {.lex_state = 653}, + [2521] = {.lex_state = 578}, [2522] = {.lex_state = 2}, - [2523] = {.lex_state = 582}, - [2524] = {.lex_state = 659}, - [2525] = {.lex_state = 2}, - [2526] = {.lex_state = 657}, - [2527] = {.lex_state = 58}, + [2523] = {.lex_state = 2}, + [2524] = {.lex_state = 154, .external_lex_state = 2}, + [2525] = {.lex_state = 655}, + [2526] = {.lex_state = 578}, + [2527] = {.lex_state = 575}, [2528] = {.lex_state = 579}, - [2529] = {.lex_state = 659}, - [2530] = {.lex_state = 653}, - [2531] = {.lex_state = 659}, - [2532] = {.lex_state = 583}, + [2529] = {.lex_state = 579}, + [2530] = {.lex_state = 55}, + [2531] = {.lex_state = 58}, + [2532] = {.lex_state = 579}, [2533] = {.lex_state = 579}, - [2534] = {.lex_state = 657}, - [2535] = {.lex_state = 662}, - [2536] = {.lex_state = 664}, - [2537] = {.lex_state = 660}, - [2538] = {.lex_state = 59}, - [2539] = {.lex_state = 2}, - [2540] = {.lex_state = 659}, - [2541] = {.lex_state = 58}, - [2542] = {.lex_state = 579}, - [2543] = {.lex_state = 2}, - [2544] = {.lex_state = 582}, - [2545] = {.lex_state = 583}, - [2546] = {.lex_state = 582}, - [2547] = {.lex_state = 583}, - [2548] = {.lex_state = 582}, - [2549] = {.lex_state = 582}, + [2534] = {.lex_state = 653}, + [2535] = {.lex_state = 658}, + [2536] = {.lex_state = 579}, + [2537] = {.lex_state = 578}, + [2538] = {.lex_state = 655}, + [2539] = {.lex_state = 655}, + [2540] = {.lex_state = 58}, + [2541] = {.lex_state = 2}, + [2542] = {.lex_state = 578}, + [2543] = {.lex_state = 578}, + [2544] = {.lex_state = 578}, + [2545] = {.lex_state = 575}, + [2546] = {.lex_state = 2}, + [2547] = {.lex_state = 579}, + [2548] = {.lex_state = 660}, + [2549] = {.lex_state = 154, .external_lex_state = 2}, [2550] = {.lex_state = 579}, - [2551] = {.lex_state = 154, .external_lex_state = 2}, - [2552] = {.lex_state = 58}, - [2553] = {.lex_state = 583}, - [2554] = {.lex_state = 583}, - [2555] = {.lex_state = 583}, - [2556] = {.lex_state = 583}, - [2557] = {.lex_state = 583}, - [2558] = {.lex_state = 583}, - [2559] = {.lex_state = 582}, - [2560] = {.lex_state = 583}, - [2561] = {.lex_state = 583}, - [2562] = {.lex_state = 582}, - [2563] = {.lex_state = 583}, - [2564] = {.lex_state = 582}, - [2565] = {.lex_state = 583}, - [2566] = {.lex_state = 579}, - [2567] = {.lex_state = 2}, - [2568] = {.lex_state = 154, .external_lex_state = 2}, - [2569] = {.lex_state = 579}, - [2570] = {.lex_state = 154, .external_lex_state = 2}, - [2571] = {.lex_state = 659}, - [2572] = {.lex_state = 55}, - [2573] = {.lex_state = 582}, - [2574] = {.lex_state = 659}, - [2575] = {.lex_state = 582}, - [2576] = {.lex_state = 582}, - [2577] = {.lex_state = 582}, - [2578] = {.lex_state = 582}, - [2579] = {.lex_state = 579}, - [2580] = {.lex_state = 582}, - [2581] = {.lex_state = 582}, - [2582] = {.lex_state = 582}, - [2583] = {.lex_state = 582}, - [2584] = {.lex_state = 659}, - [2585] = {.lex_state = 659}, - [2586] = {.lex_state = 659}, - [2587] = {.lex_state = 579}, - [2588] = {.lex_state = 582}, - [2589] = {.lex_state = 579}, - [2590] = {.lex_state = 579}, - [2591] = {.lex_state = 582}, - [2592] = {.lex_state = 582}, - [2593] = {.lex_state = 582}, - [2594] = {.lex_state = 666}, - [2595] = {.lex_state = 666}, - [2596] = {.lex_state = 666}, - [2597] = {.lex_state = 666}, - [2598] = {.lex_state = 666}, - [2599] = {.lex_state = 666}, - [2600] = {.lex_state = 666}, - [2601] = {.lex_state = 666}, - [2602] = {.lex_state = 666}, - [2603] = {.lex_state = 666}, + [2551] = {.lex_state = 575}, + [2552] = {.lex_state = 154, .external_lex_state = 2}, + [2553] = {.lex_state = 660}, + [2554] = {.lex_state = 579}, + [2555] = {.lex_state = 656}, + [2556] = {.lex_state = 575}, + [2557] = {.lex_state = 59}, + [2558] = {.lex_state = 579}, + [2559] = {.lex_state = 579}, + [2560] = {.lex_state = 579}, + [2561] = {.lex_state = 579}, + [2562] = {.lex_state = 578}, + [2563] = {.lex_state = 649}, + [2564] = {.lex_state = 2}, + [2565] = {.lex_state = 575}, + [2566] = {.lex_state = 655}, + [2567] = {.lex_state = 154, .external_lex_state = 2}, + [2568] = {.lex_state = 578}, + [2569] = {.lex_state = 655}, + [2570] = {.lex_state = 578}, + [2571] = {.lex_state = 575}, + [2572] = {.lex_state = 58}, + [2573] = {.lex_state = 579}, + [2574] = {.lex_state = 575}, + [2575] = {.lex_state = 579}, + [2576] = {.lex_state = 579}, + [2577] = {.lex_state = 575}, + [2578] = {.lex_state = 578}, + [2579] = {.lex_state = 575}, + [2580] = {.lex_state = 578}, + [2581] = {.lex_state = 578}, + [2582] = {.lex_state = 579}, + [2583] = {.lex_state = 579}, + [2584] = {.lex_state = 578}, + [2585] = {.lex_state = 579}, + [2586] = {.lex_state = 662}, + [2587] = {.lex_state = 662}, + [2588] = {.lex_state = 662}, + [2589] = {.lex_state = 662}, + [2590] = {.lex_state = 662}, + [2591] = {.lex_state = 662}, + [2592] = {.lex_state = 662}, + [2593] = {.lex_state = 662}, + [2594] = {.lex_state = 662}, + [2595] = {.lex_state = 662}, + [2596] = {.lex_state = 2}, + [2597] = {.lex_state = 2}, + [2598] = {.lex_state = 659}, + [2599] = {.lex_state = 2}, + [2600] = {.lex_state = 2}, + [2601] = {.lex_state = 2}, + [2602] = {.lex_state = 2}, + [2603] = {.lex_state = 2}, [2604] = {.lex_state = 2}, - [2605] = {.lex_state = 2}, - [2606] = {.lex_state = 663}, - [2607] = {.lex_state = 2}, - [2608] = {.lex_state = 2}, - [2609] = {.lex_state = 2}, - [2610] = {.lex_state = 2}, - [2611] = {.lex_state = 2}, - [2612] = {.lex_state = 2}, - [2613] = {.lex_state = 579}, - [2614] = {.lex_state = 583}, - [2615] = {.lex_state = 664}, - [2616] = {.lex_state = 579}, - [2617] = {.lex_state = 579}, - [2618] = {.lex_state = 579}, + [2605] = {.lex_state = 575}, + [2606] = {.lex_state = 575}, + [2607] = {.lex_state = 657}, + [2608] = {.lex_state = 660}, + [2609] = {.lex_state = 575}, + [2610] = {.lex_state = 575}, + [2611] = {.lex_state = 575}, + [2612] = {.lex_state = 575}, + [2613] = {.lex_state = 575}, + [2614] = {.lex_state = 660}, + [2615] = {.lex_state = 662}, + [2616] = {.lex_state = 662}, + [2617] = {.lex_state = 662}, + [2618] = {.lex_state = 60}, [2619] = {.lex_state = 579}, - [2620] = {.lex_state = 579}, - [2621] = {.lex_state = 664}, - [2622] = {.lex_state = 666}, - [2623] = {.lex_state = 666}, - [2624] = {.lex_state = 666}, - [2625] = {.lex_state = 60}, - [2626] = {.lex_state = 60}, - [2627] = {.lex_state = 583}, - [2628] = {.lex_state = 579}, - [2629] = {.lex_state = 583}, - [2630] = {.lex_state = 583}, - [2631] = {.lex_state = 583}, - [2632] = {.lex_state = 579}, - [2633] = {.lex_state = 579}, - [2634] = {.lex_state = 583}, - [2635] = {.lex_state = 583}, - [2636] = {.lex_state = 583}, - [2637] = {.lex_state = 579}, - [2638] = {.lex_state = 579}, - [2639] = {.lex_state = 579}, - [2640] = {.lex_state = 579}, - [2641] = {.lex_state = 579}, - [2642] = {.lex_state = 579}, - [2643] = {.lex_state = 579}, - [2644] = {.lex_state = 659}, - [2645] = {.lex_state = 583}, - [2646] = {.lex_state = 582}, - [2647] = {.lex_state = 582}, - [2648] = {.lex_state = 579}, - [2649] = {.lex_state = 579}, - [2650] = {.lex_state = 582}, - [2651] = {.lex_state = 583}, - [2652] = {.lex_state = 583}, - [2653] = {.lex_state = 583}, - [2654] = {.lex_state = 583}, - [2655] = {.lex_state = 661}, - [2656] = {.lex_state = 2}, - [2657] = {.lex_state = 582}, - [2658] = {.lex_state = 666}, - [2659] = {.lex_state = 666}, - [2660] = {.lex_state = 645}, - [2661] = {.lex_state = 666}, - [2662] = {.lex_state = 666}, - [2663] = {.lex_state = 666}, - [2664] = {.lex_state = 666}, - [2665] = {.lex_state = 666}, - [2666] = {.lex_state = 666}, - [2667] = {.lex_state = 666}, - [2668] = {.lex_state = 666}, - [2669] = {.lex_state = 666}, - [2670] = {.lex_state = 582}, - [2671] = {.lex_state = 661}, - [2672] = {.lex_state = 61}, - [2673] = {.lex_state = 666}, - [2674] = {.lex_state = 61}, - [2675] = {.lex_state = 61}, - [2676] = {.lex_state = 666}, - [2677] = {.lex_state = 2}, - [2678] = {.lex_state = 2}, - [2679] = {.lex_state = 2}, + [2620] = {.lex_state = 575}, + [2621] = {.lex_state = 579}, + [2622] = {.lex_state = 579}, + [2623] = {.lex_state = 575}, + [2624] = {.lex_state = 575}, + [2625] = {.lex_state = 575}, + [2626] = {.lex_state = 575}, + [2627] = {.lex_state = 575}, + [2628] = {.lex_state = 575}, + [2629] = {.lex_state = 575}, + [2630] = {.lex_state = 579}, + [2631] = {.lex_state = 579}, + [2632] = {.lex_state = 655}, + [2633] = {.lex_state = 578}, + [2634] = {.lex_state = 578}, + [2635] = {.lex_state = 578}, + [2636] = {.lex_state = 655}, + [2637] = {.lex_state = 578}, + [2638] = {.lex_state = 578}, + [2639] = {.lex_state = 575}, + [2640] = {.lex_state = 578}, + [2641] = {.lex_state = 578}, + [2642] = {.lex_state = 575}, + [2643] = {.lex_state = 578}, + [2644] = {.lex_state = 578}, + [2645] = {.lex_state = 578}, + [2646] = {.lex_state = 578}, + [2647] = {.lex_state = 655}, + [2648] = {.lex_state = 655}, + [2649] = {.lex_state = 655}, + [2650] = {.lex_state = 579}, + [2651] = {.lex_state = 575}, + [2652] = {.lex_state = 575}, + [2653] = {.lex_state = 575}, + [2654] = {.lex_state = 578}, + [2655] = {.lex_state = 579}, + [2656] = {.lex_state = 579}, + [2657] = {.lex_state = 579}, + [2658] = {.lex_state = 60}, + [2659] = {.lex_state = 61}, + [2660] = {.lex_state = 578}, + [2661] = {.lex_state = 61}, + [2662] = {.lex_state = 662}, + [2663] = {.lex_state = 578}, + [2664] = {.lex_state = 661}, + [2665] = {.lex_state = 657}, + [2666] = {.lex_state = 110}, + [2667] = {.lex_state = 2}, + [2668] = {.lex_state = 2}, + [2669] = {.lex_state = 661}, + [2670] = {.lex_state = 579}, + [2671] = {.lex_state = 662}, + [2672] = {.lex_state = 662}, + [2673] = {.lex_state = 662}, + [2674] = {.lex_state = 579}, + [2675] = {.lex_state = 2}, + [2676] = {.lex_state = 2}, + [2677] = {.lex_state = 575}, + [2678] = {.lex_state = 662}, + [2679] = {.lex_state = 575}, [2680] = {.lex_state = 579}, - [2681] = {.lex_state = 645}, - [2682] = {.lex_state = 583}, - [2683] = {.lex_state = 2}, - [2684] = {.lex_state = 583}, - [2685] = {.lex_state = 645}, - [2686] = {.lex_state = 583}, - [2687] = {.lex_state = 582}, - [2688] = {.lex_state = 582}, - [2689] = {.lex_state = 582}, - [2690] = {.lex_state = 582}, - [2691] = {.lex_state = 666}, - [2692] = {.lex_state = 582}, - [2693] = {.lex_state = 579}, - [2694] = {.lex_state = 582}, - [2695] = {.lex_state = 582}, - [2696] = {.lex_state = 579}, - [2697] = {.lex_state = 2}, - [2698] = {.lex_state = 61}, - [2699] = {.lex_state = 61}, - [2700] = {.lex_state = 663}, - [2701] = {.lex_state = 583}, - [2702] = {.lex_state = 579}, - [2703] = {.lex_state = 2}, - [2704] = {.lex_state = 579}, - [2705] = {.lex_state = 579}, - [2706] = {.lex_state = 665}, - [2707] = {.lex_state = 110}, - [2708] = {.lex_state = 582}, - [2709] = {.lex_state = 668}, - [2710] = {.lex_state = 645}, - [2711] = {.lex_state = 645}, - [2712] = {.lex_state = 2}, - [2713] = {.lex_state = 2}, - [2714] = {.lex_state = 645}, - [2715] = {.lex_state = 645}, - [2716] = {.lex_state = 645}, - [2717] = {.lex_state = 645}, - [2718] = {.lex_state = 645}, - [2719] = {.lex_state = 665}, - [2720] = {.lex_state = 582}, - [2721] = {.lex_state = 645}, - [2722] = {.lex_state = 582}, - [2723] = {.lex_state = 582}, - [2724] = {.lex_state = 582}, - [2725] = {.lex_state = 582}, - [2726] = {.lex_state = 579}, - [2727] = {.lex_state = 639}, - [2728] = {.lex_state = 583}, - [2729] = {.lex_state = 666}, - [2730] = {.lex_state = 2}, - [2731] = {.lex_state = 645}, - [2732] = {.lex_state = 583}, - [2733] = {.lex_state = 583}, - [2734] = {.lex_state = 645}, - [2735] = {.lex_state = 645}, - [2736] = {.lex_state = 583}, + [2681] = {.lex_state = 578}, + [2682] = {.lex_state = 578}, + [2683] = {.lex_state = 578}, + [2684] = {.lex_state = 578}, + [2685] = {.lex_state = 578}, + [2686] = {.lex_state = 578}, + [2687] = {.lex_state = 575}, + [2688] = {.lex_state = 662}, + [2689] = {.lex_state = 578}, + [2690] = {.lex_state = 575}, + [2691] = {.lex_state = 641}, + [2692] = {.lex_state = 662}, + [2693] = {.lex_state = 662}, + [2694] = {.lex_state = 662}, + [2695] = {.lex_state = 2}, + [2696] = {.lex_state = 662}, + [2697] = {.lex_state = 662}, + [2698] = {.lex_state = 641}, + [2699] = {.lex_state = 579}, + [2700] = {.lex_state = 578}, + [2701] = {.lex_state = 641}, + [2702] = {.lex_state = 662}, + [2703] = {.lex_state = 578}, + [2704] = {.lex_state = 575}, + [2705] = {.lex_state = 2}, + [2706] = {.lex_state = 659}, + [2707] = {.lex_state = 2}, + [2708] = {.lex_state = 664}, + [2709] = {.lex_state = 641}, + [2710] = {.lex_state = 662}, + [2711] = {.lex_state = 575}, + [2712] = {.lex_state = 641}, + [2713] = {.lex_state = 641}, + [2714] = {.lex_state = 641}, + [2715] = {.lex_state = 641}, + [2716] = {.lex_state = 641}, + [2717] = {.lex_state = 578}, + [2718] = {.lex_state = 578}, + [2719] = {.lex_state = 575}, + [2720] = {.lex_state = 578}, + [2721] = {.lex_state = 641}, + [2722] = {.lex_state = 61}, + [2723] = {.lex_state = 61}, + [2724] = {.lex_state = 2}, + [2725] = {.lex_state = 61}, + [2726] = {.lex_state = 641}, + [2727] = {.lex_state = 578}, + [2728] = {.lex_state = 662}, + [2729] = {.lex_state = 2}, + [2730] = {.lex_state = 627}, + [2731] = {.lex_state = 2}, + [2732] = {.lex_state = 663}, + [2733] = {.lex_state = 2}, + [2734] = {.lex_state = 635}, + [2735] = {.lex_state = 663}, + [2736] = {.lex_state = 579}, [2737] = {.lex_state = 579}, - [2738] = {.lex_state = 583}, - [2739] = {.lex_state = 645}, - [2740] = {.lex_state = 645}, - [2741] = {.lex_state = 2}, + [2738] = {.lex_state = 579}, + [2739] = {.lex_state = 579}, + [2740] = {.lex_state = 579}, + [2741] = {.lex_state = 579}, [2742] = {.lex_state = 579}, - [2743] = {.lex_state = 667}, - [2744] = {.lex_state = 645}, - [2745] = {.lex_state = 2}, - [2746] = {.lex_state = 645}, - [2747] = {.lex_state = 667}, - [2748] = {.lex_state = 2}, - [2749] = {.lex_state = 667}, - [2750] = {.lex_state = 645}, - [2751] = {.lex_state = 645}, - [2752] = {.lex_state = 583}, - [2753] = {.lex_state = 583}, - [2754] = {.lex_state = 583}, - [2755] = {.lex_state = 583}, - [2756] = {.lex_state = 583}, - [2757] = {.lex_state = 583}, - [2758] = {.lex_state = 583}, - [2759] = {.lex_state = 583}, - [2760] = {.lex_state = 583}, - [2761] = {.lex_state = 583}, - [2762] = {.lex_state = 583}, - [2763] = {.lex_state = 583}, - [2764] = {.lex_state = 583}, - [2765] = {.lex_state = 583}, - [2766] = {.lex_state = 583}, - [2767] = {.lex_state = 583}, - [2768] = {.lex_state = 583}, - [2769] = {.lex_state = 583}, - [2770] = {.lex_state = 583}, - [2771] = {.lex_state = 583}, - [2772] = {.lex_state = 583}, - [2773] = {.lex_state = 583}, - [2774] = {.lex_state = 583}, - [2775] = {.lex_state = 583}, - [2776] = {.lex_state = 583}, - [2777] = {.lex_state = 583}, - [2778] = {.lex_state = 583}, - [2779] = {.lex_state = 583}, - [2780] = {.lex_state = 583}, - [2781] = {.lex_state = 583}, - [2782] = {.lex_state = 583}, - [2783] = {.lex_state = 583}, - [2784] = {.lex_state = 583}, - [2785] = {.lex_state = 583}, - [2786] = {.lex_state = 583}, - [2787] = {.lex_state = 583}, - [2788] = {.lex_state = 667}, - [2789] = {.lex_state = 665}, - [2790] = {.lex_state = 667}, - [2791] = {.lex_state = 631}, - [2792] = {.lex_state = 639}, - [2793] = {.lex_state = 631}, - [2794] = {.lex_state = 639}, - [2795] = {.lex_state = 583}, - [2796] = {.lex_state = 583}, - [2797] = {.lex_state = 583}, - [2798] = {.lex_state = 63}, - [2799] = {.lex_state = 583}, - [2800] = {.lex_state = 583}, - [2801] = {.lex_state = 661}, - [2802] = {.lex_state = 583}, - [2803] = {.lex_state = 583}, - [2804] = {.lex_state = 583}, - [2805] = {.lex_state = 583}, - [2806] = {.lex_state = 583}, - [2807] = {.lex_state = 583}, - [2808] = {.lex_state = 583}, - [2809] = {.lex_state = 62}, - [2810] = {.lex_state = 583}, - [2811] = {.lex_state = 583}, - [2812] = {.lex_state = 583}, - [2813] = {.lex_state = 583}, - [2814] = {.lex_state = 583}, - [2815] = {.lex_state = 583}, - [2816] = {.lex_state = 583}, - [2817] = {.lex_state = 583}, - [2818] = {.lex_state = 583}, - [2819] = {.lex_state = 582}, - [2820] = {.lex_state = 579}, - [2821] = {.lex_state = 631}, - [2822] = {.lex_state = 579}, - [2823] = {.lex_state = 583}, - [2824] = {.lex_state = 583}, - [2825] = {.lex_state = 667}, - [2826] = {.lex_state = 583}, - [2827] = {.lex_state = 583}, - [2828] = {.lex_state = 583}, - [2829] = {.lex_state = 583}, - [2830] = {.lex_state = 667}, - [2831] = {.lex_state = 583}, - [2832] = {.lex_state = 583}, - [2833] = {.lex_state = 639}, - [2834] = {.lex_state = 665}, - [2835] = {.lex_state = 639}, - [2836] = {.lex_state = 583}, - [2837] = {.lex_state = 2}, - [2838] = {.lex_state = 2}, - [2839] = {.lex_state = 2}, - [2840] = {.lex_state = 2}, - [2841] = {.lex_state = 2}, - [2842] = {.lex_state = 2}, - [2843] = {.lex_state = 667}, - [2844] = {.lex_state = 627}, - [2845] = {.lex_state = 583}, - [2846] = {.lex_state = 583}, - [2847] = {.lex_state = 667}, - [2848] = {.lex_state = 583}, - [2849] = {.lex_state = 583}, - [2850] = {.lex_state = 583}, - [2851] = {.lex_state = 583}, - [2852] = {.lex_state = 583}, - [2853] = {.lex_state = 667}, - [2854] = {.lex_state = 583}, - [2855] = {.lex_state = 583}, - [2856] = {.lex_state = 667}, - [2857] = {.lex_state = 583}, - [2858] = {.lex_state = 583}, - [2859] = {.lex_state = 583}, - [2860] = {.lex_state = 583}, - [2861] = {.lex_state = 583}, - [2862] = {.lex_state = 583}, - [2863] = {.lex_state = 583}, - [2864] = {.lex_state = 583}, - [2865] = {.lex_state = 583}, - [2866] = {.lex_state = 583}, - [2867] = {.lex_state = 583}, - [2868] = {.lex_state = 583}, - [2869] = {.lex_state = 583}, - [2870] = {.lex_state = 583}, - [2871] = {.lex_state = 583}, - [2872] = {.lex_state = 583}, - [2873] = {.lex_state = 583}, - [2874] = {.lex_state = 583}, - [2875] = {.lex_state = 583}, - [2876] = {.lex_state = 583}, - [2877] = {.lex_state = 583}, - [2878] = {.lex_state = 583}, - [2879] = {.lex_state = 583}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 583}, - [2882] = {.lex_state = 583}, - [2883] = {.lex_state = 583}, - [2884] = {.lex_state = 583}, - [2885] = {.lex_state = 583}, - [2886] = {.lex_state = 583}, - [2887] = {.lex_state = 583}, - [2888] = {.lex_state = 582}, - [2889] = {.lex_state = 583}, - [2890] = {.lex_state = 583}, - [2891] = {.lex_state = 583}, - [2892] = {.lex_state = 583}, - [2893] = {.lex_state = 583}, - [2894] = {.lex_state = 631}, - [2895] = {.lex_state = 631}, - [2896] = {.lex_state = 583}, - [2897] = {.lex_state = 583}, - [2898] = {.lex_state = 583}, - [2899] = {.lex_state = 582}, - [2900] = {.lex_state = 583}, - [2901] = {.lex_state = 583}, - [2902] = {.lex_state = 583}, - [2903] = {.lex_state = 582}, - [2904] = {.lex_state = 583}, - [2905] = {.lex_state = 583}, - [2906] = {.lex_state = 667}, - [2907] = {.lex_state = 667}, - [2908] = {.lex_state = 645}, - [2909] = {.lex_state = 583}, - [2910] = {.lex_state = 668}, - [2911] = {.lex_state = 645}, - [2912] = {.lex_state = 583}, - [2913] = {.lex_state = 583}, - [2914] = {.lex_state = 583}, - [2915] = {.lex_state = 631}, - [2916] = {.lex_state = 631}, - [2917] = {.lex_state = 631}, - [2918] = {.lex_state = 583}, - [2919] = {.lex_state = 583}, - [2920] = {.lex_state = 583}, - [2921] = {.lex_state = 583}, - [2922] = {.lex_state = 667}, - [2923] = {.lex_state = 583}, - [2924] = {.lex_state = 583}, - [2925] = {.lex_state = 582}, - [2926] = {.lex_state = 583}, + [2743] = {.lex_state = 579}, + [2744] = {.lex_state = 579}, + [2745] = {.lex_state = 579}, + [2746] = {.lex_state = 579}, + [2747] = {.lex_state = 579}, + [2748] = {.lex_state = 579}, + [2749] = {.lex_state = 579}, + [2750] = {.lex_state = 579}, + [2751] = {.lex_state = 579}, + [2752] = {.lex_state = 579}, + [2753] = {.lex_state = 579}, + [2754] = {.lex_state = 579}, + [2755] = {.lex_state = 579}, + [2756] = {.lex_state = 579}, + [2757] = {.lex_state = 579}, + [2758] = {.lex_state = 579}, + [2759] = {.lex_state = 579}, + [2760] = {.lex_state = 579}, + [2761] = {.lex_state = 579}, + [2762] = {.lex_state = 579}, + [2763] = {.lex_state = 579}, + [2764] = {.lex_state = 579}, + [2765] = {.lex_state = 579}, + [2766] = {.lex_state = 579}, + [2767] = {.lex_state = 579}, + [2768] = {.lex_state = 579}, + [2769] = {.lex_state = 623}, + [2770] = {.lex_state = 579}, + [2771] = {.lex_state = 579}, + [2772] = {.lex_state = 579}, + [2773] = {.lex_state = 579}, + [2774] = {.lex_state = 2}, + [2775] = {.lex_state = 579}, + [2776] = {.lex_state = 579}, + [2777] = {.lex_state = 575}, + [2778] = {.lex_state = 579}, + [2779] = {.lex_state = 579}, + [2780] = {.lex_state = 579}, + [2781] = {.lex_state = 579}, + [2782] = {.lex_state = 63}, + [2783] = {.lex_state = 579}, + [2784] = {.lex_state = 579}, + [2785] = {.lex_state = 579}, + [2786] = {.lex_state = 579}, + [2787] = {.lex_state = 579}, + [2788] = {.lex_state = 579}, + [2789] = {.lex_state = 579}, + [2790] = {.lex_state = 579}, + [2791] = {.lex_state = 579}, + [2792] = {.lex_state = 579}, + [2793] = {.lex_state = 579}, + [2794] = {.lex_state = 579}, + [2795] = {.lex_state = 579}, + [2796] = {.lex_state = 579}, + [2797] = {.lex_state = 579}, + [2798] = {.lex_state = 627}, + [2799] = {.lex_state = 657}, + [2800] = {.lex_state = 579}, + [2801] = {.lex_state = 62}, + [2802] = {.lex_state = 578}, + [2803] = {.lex_state = 579}, + [2804] = {.lex_state = 579}, + [2805] = {.lex_state = 579}, + [2806] = {.lex_state = 579}, + [2807] = {.lex_state = 579}, + [2808] = {.lex_state = 579}, + [2809] = {.lex_state = 579}, + [2810] = {.lex_state = 579}, + [2811] = {.lex_state = 579}, + [2812] = {.lex_state = 579}, + [2813] = {.lex_state = 579}, + [2814] = {.lex_state = 579}, + [2815] = {.lex_state = 579}, + [2816] = {.lex_state = 579}, + [2817] = {.lex_state = 579}, + [2818] = {.lex_state = 579}, + [2819] = {.lex_state = 579}, + [2820] = {.lex_state = 627}, + [2821] = {.lex_state = 579}, + [2822] = {.lex_state = 664}, + [2823] = {.lex_state = 641}, + [2824] = {.lex_state = 641}, + [2825] = {.lex_state = 641}, + [2826] = {.lex_state = 641}, + [2827] = {.lex_state = 641}, + [2828] = {.lex_state = 641}, + [2829] = {.lex_state = 579}, + [2830] = {.lex_state = 579}, + [2831] = {.lex_state = 579}, + [2832] = {.lex_state = 579}, + [2833] = {.lex_state = 579}, + [2834] = {.lex_state = 579}, + [2835] = {.lex_state = 579}, + [2836] = {.lex_state = 662}, + [2837] = {.lex_state = 579}, + [2838] = {.lex_state = 579}, + [2839] = {.lex_state = 579}, + [2840] = {.lex_state = 579}, + [2841] = {.lex_state = 579}, + [2842] = {.lex_state = 635}, + [2843] = {.lex_state = 635}, + [2844] = {.lex_state = 579}, + [2845] = {.lex_state = 635}, + [2846] = {.lex_state = 635}, + [2847] = {.lex_state = 2}, + [2848] = {.lex_state = 579}, + [2849] = {.lex_state = 579}, + [2850] = {.lex_state = 579}, + [2851] = {.lex_state = 579}, + [2852] = {.lex_state = 579}, + [2853] = {.lex_state = 579}, + [2854] = {.lex_state = 579}, + [2855] = {.lex_state = 579}, + [2856] = {.lex_state = 579}, + [2857] = {.lex_state = 579}, + [2858] = {.lex_state = 579}, + [2859] = {.lex_state = 579}, + [2860] = {.lex_state = 579}, + [2861] = {.lex_state = 579}, + [2862] = {.lex_state = 579}, + [2863] = {.lex_state = 579}, + [2864] = {.lex_state = 579}, + [2865] = {.lex_state = 579}, + [2866] = {.lex_state = 579}, + [2867] = {.lex_state = 579}, + [2868] = {.lex_state = 575}, + [2869] = {.lex_state = 579}, + [2870] = {.lex_state = 579}, + [2871] = {.lex_state = 579}, + [2872] = {.lex_state = 2}, + [2873] = {.lex_state = 2}, + [2874] = {.lex_state = 2}, + [2875] = {.lex_state = 2}, + [2876] = {.lex_state = 2}, + [2877] = {.lex_state = 2}, + [2878] = {.lex_state = 641}, + [2879] = {.lex_state = 575}, + [2880] = {.lex_state = 627}, + [2881] = {.lex_state = 579}, + [2882] = {.lex_state = 641}, + [2883] = {.lex_state = 579}, + [2884] = {.lex_state = 641}, + [2885] = {.lex_state = 575}, + [2886] = {.lex_state = 579}, + [2887] = {.lex_state = 579}, + [2888] = {.lex_state = 579}, + [2889] = {.lex_state = 579}, + [2890] = {.lex_state = 641}, + [2891] = {.lex_state = 579}, + [2892] = {.lex_state = 579}, + [2893] = {.lex_state = 579}, + [2894] = {.lex_state = 579}, + [2895] = {.lex_state = 579}, + [2896] = {.lex_state = 579}, + [2897] = {.lex_state = 579}, + [2898] = {.lex_state = 579}, + [2899] = {.lex_state = 663}, + [2900] = {.lex_state = 661}, + [2901] = {.lex_state = 663}, + [2902] = {.lex_state = 663}, + [2903] = {.lex_state = 663}, + [2904] = {.lex_state = 661}, + [2905] = {.lex_state = 627}, + [2906] = {.lex_state = 663}, + [2907] = {.lex_state = 663}, + [2908] = {.lex_state = 578}, + [2909] = {.lex_state = 663}, + [2910] = {.lex_state = 663}, + [2911] = {.lex_state = 578}, + [2912] = {.lex_state = 2}, + [2913] = {.lex_state = 663}, + [2914] = {.lex_state = 663}, + [2915] = {.lex_state = 641}, + [2916] = {.lex_state = 663}, + [2917] = {.lex_state = 627}, + [2918] = {.lex_state = 627}, + [2919] = {.lex_state = 627}, + [2920] = {.lex_state = 578}, + [2921] = {.lex_state = 579}, + [2922] = {.lex_state = 579}, + [2923] = {.lex_state = 110}, + [2924] = {.lex_state = 627}, + [2925] = {.lex_state = 578}, + [2926] = {.lex_state = 663}, [2927] = {.lex_state = 2}, - [2928] = {.lex_state = 583}, - [2929] = {.lex_state = 582}, - [2930] = {.lex_state = 583}, - [2931] = {.lex_state = 667}, - [2932] = {.lex_state = 631}, - [2933] = {.lex_state = 631}, - [2934] = {.lex_state = 634}, - [2935] = {.lex_state = 582}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 2}, - [2938] = {.lex_state = 582}, - [2939] = {.lex_state = 627}, - [2940] = {.lex_state = 582}, - [2941] = {.lex_state = 667}, - [2942] = {.lex_state = 639}, - [2943] = {.lex_state = 582}, - [2944] = {.lex_state = 583}, - [2945] = {.lex_state = 579}, - [2946] = {.lex_state = 2}, - [2947] = {.lex_state = 667}, - [2948] = {.lex_state = 2}, - [2949] = {.lex_state = 72}, - [2950] = {.lex_state = 583}, - [2951] = {.lex_state = 583}, - [2952] = {.lex_state = 639}, - [2953] = {.lex_state = 2}, + [2928] = {.lex_state = 627}, + [2929] = {.lex_state = 663}, + [2930] = {.lex_state = 110}, + [2931] = {.lex_state = 663}, + [2932] = {.lex_state = 2}, + [2933] = {.lex_state = 2}, + [2934] = {.lex_state = 663}, + [2935] = {.lex_state = 579}, + [2936] = {.lex_state = 635}, + [2937] = {.lex_state = 579}, + [2938] = {.lex_state = 579}, + [2939] = {.lex_state = 579}, + [2940] = {.lex_state = 575}, + [2941] = {.lex_state = 2}, + [2942] = {.lex_state = 635}, + [2943] = {.lex_state = 635}, + [2944] = {.lex_state = 579}, + [2945] = {.lex_state = 110}, + [2946] = {.lex_state = 627}, + [2947] = {.lex_state = 579}, + [2948] = {.lex_state = 630}, + [2949] = {.lex_state = 579}, + [2950] = {.lex_state = 579}, + [2951] = {.lex_state = 579}, + [2952] = {.lex_state = 579}, + [2953] = {.lex_state = 635}, [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 667}, - [2956] = {.lex_state = 639}, - [2957] = {.lex_state = 582}, - [2958] = {.lex_state = 124, .external_lex_state = 2}, - [2959] = {.lex_state = 661}, - [2960] = {.lex_state = 64}, - [2961] = {.lex_state = 631}, - [2962] = {.lex_state = 64}, - [2963] = {.lex_state = 582}, - [2964] = {.lex_state = 583}, - [2965] = {.lex_state = 631}, - [2966] = {.lex_state = 110}, - [2967] = {.lex_state = 110}, - [2968] = {.lex_state = 110}, - [2969] = {.lex_state = 2}, - [2970] = {.lex_state = 579}, - [2971] = {.lex_state = 2}, - [2972] = {.lex_state = 583}, - [2973] = {.lex_state = 634}, - [2974] = {.lex_state = 583}, - [2975] = {.lex_state = 579}, - [2976] = {.lex_state = 631}, + [2955] = {.lex_state = 2}, + [2956] = {.lex_state = 663}, + [2957] = {.lex_state = 579}, + [2958] = {.lex_state = 635}, + [2959] = {.lex_state = 663}, + [2960] = {.lex_state = 579}, + [2961] = {.lex_state = 579}, + [2962] = {.lex_state = 110}, + [2963] = {.lex_state = 110}, + [2964] = {.lex_state = 579}, + [2965] = {.lex_state = 124, .external_lex_state = 2}, + [2966] = {.lex_state = 579}, + [2967] = {.lex_state = 579}, + [2968] = {.lex_state = 663}, + [2969] = {.lex_state = 575}, + [2970] = {.lex_state = 2}, + [2971] = {.lex_state = 663}, + [2972] = {.lex_state = 575}, + [2973] = {.lex_state = 578}, + [2974] = {.lex_state = 110}, + [2975] = {.lex_state = 635}, + [2976] = {.lex_state = 2}, [2977] = {.lex_state = 2}, - [2978] = {.lex_state = 110}, - [2979] = {.lex_state = 639}, - [2980] = {.lex_state = 639}, - [2981] = {.lex_state = 639}, - [2982] = {.lex_state = 583}, + [2978] = {.lex_state = 67}, + [2979] = {.lex_state = 579}, + [2980] = {.lex_state = 579}, + [2981] = {.lex_state = 578}, + [2982] = {.lex_state = 578}, [2983] = {.lex_state = 2}, - [2984] = {.lex_state = 631}, - [2985] = {.lex_state = 631}, - [2986] = {.lex_state = 582}, + [2984] = {.lex_state = 2}, + [2985] = {.lex_state = 2}, + [2986] = {.lex_state = 579}, [2987] = {.lex_state = 2}, - [2988] = {.lex_state = 2}, - [2989] = {.lex_state = 2}, - [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 583}, - [2992] = {.lex_state = 631}, - [2993] = {.lex_state = 2}, + [2988] = {.lex_state = 630}, + [2989] = {.lex_state = 578}, + [2990] = {.lex_state = 630}, + [2991] = {.lex_state = 2}, + [2992] = {.lex_state = 2}, + [2993] = {.lex_state = 579}, [2994] = {.lex_state = 2}, - [2995] = {.lex_state = 67}, - [2996] = {.lex_state = 583}, - [2997] = {.lex_state = 2}, + [2995] = {.lex_state = 579}, + [2996] = {.lex_state = 72}, + [2997] = {.lex_state = 579}, [2998] = {.lex_state = 2}, - [2999] = {.lex_state = 667}, - [3000] = {.lex_state = 667}, - [3001] = {.lex_state = 583}, - [3002] = {.lex_state = 667}, - [3003] = {.lex_state = 583}, - [3004] = {.lex_state = 631}, - [3005] = {.lex_state = 667}, - [3006] = {.lex_state = 583}, - [3007] = {.lex_state = 582}, - [3008] = {.lex_state = 2}, - [3009] = {.lex_state = 639}, - [3010] = {.lex_state = 583}, - [3011] = {.lex_state = 667}, - [3012] = {.lex_state = 583}, - [3013] = {.lex_state = 667}, - [3014] = {.lex_state = 667}, - [3015] = {.lex_state = 667}, - [3016] = {.lex_state = 583}, - [3017] = {.lex_state = 583}, - [3018] = {.lex_state = 583}, + [2999] = {.lex_state = 635}, + [3000] = {.lex_state = 579}, + [3001] = {.lex_state = 627}, + [3002] = {.lex_state = 635}, + [3003] = {.lex_state = 627}, + [3004] = {.lex_state = 578}, + [3005] = {.lex_state = 2}, + [3006] = {.lex_state = 2}, + [3007] = {.lex_state = 2}, + [3008] = {.lex_state = 663}, + [3009] = {.lex_state = 578}, + [3010] = {.lex_state = 627}, + [3011] = {.lex_state = 578}, + [3012] = {.lex_state = 2}, + [3013] = {.lex_state = 2}, + [3014] = {.lex_state = 627}, + [3015] = {.lex_state = 663}, + [3016] = {.lex_state = 627}, + [3017] = {.lex_state = 657}, + [3018] = {.lex_state = 623}, [3019] = {.lex_state = 2}, [3020] = {.lex_state = 2}, - [3021] = {.lex_state = 583}, - [3022] = {.lex_state = 2}, - [3023] = {.lex_state = 583}, - [3024] = {.lex_state = 583}, - [3025] = {.lex_state = 583}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 110}, - [3028] = {.lex_state = 2}, - [3029] = {.lex_state = 583}, - [3030] = {.lex_state = 110}, - [3031] = {.lex_state = 583}, - [3032] = {.lex_state = 583}, - [3033] = {.lex_state = 583}, - [3034] = {.lex_state = 631}, - [3035] = {.lex_state = 583}, - [3036] = {.lex_state = 583}, - [3037] = {.lex_state = 634}, - [3038] = {.lex_state = 634}, - [3039] = {.lex_state = 583}, - [3040] = {.lex_state = 639}, - [3041] = {.lex_state = 667}, - [3042] = {.lex_state = 583}, - [3043] = {.lex_state = 634}, - [3044] = {.lex_state = 583}, - [3045] = {.lex_state = 583}, - [3046] = {.lex_state = 583}, - [3047] = {.lex_state = 2}, - [3048] = {.lex_state = 2}, - [3049] = {.lex_state = 634}, - [3050] = {.lex_state = 188}, - [3051] = {.lex_state = 634}, + [3021] = {.lex_state = 64}, + [3022] = {.lex_state = 663}, + [3023] = {.lex_state = 2}, + [3024] = {.lex_state = 579}, + [3025] = {.lex_state = 663}, + [3026] = {.lex_state = 579}, + [3027] = {.lex_state = 579}, + [3028] = {.lex_state = 663}, + [3029] = {.lex_state = 579}, + [3030] = {.lex_state = 663}, + [3031] = {.lex_state = 579}, + [3032] = {.lex_state = 579}, + [3033] = {.lex_state = 579}, + [3034] = {.lex_state = 627}, + [3035] = {.lex_state = 579}, + [3036] = {.lex_state = 579}, + [3037] = {.lex_state = 630}, + [3038] = {.lex_state = 630}, + [3039] = {.lex_state = 627}, + [3040] = {.lex_state = 578}, + [3041] = {.lex_state = 579}, + [3042] = {.lex_state = 2}, + [3043] = {.lex_state = 579}, + [3044] = {.lex_state = 579}, + [3045] = {.lex_state = 64}, + [3046] = {.lex_state = 579}, + [3047] = {.lex_state = 579}, + [3048] = {.lex_state = 579}, + [3049] = {.lex_state = 579}, + [3050] = {.lex_state = 578}, + [3051] = {.lex_state = 579}, [3052] = {.lex_state = 61}, - [3053] = {.lex_state = 634}, - [3054] = {.lex_state = 634}, - [3055] = {.lex_state = 634}, - [3056] = {.lex_state = 631}, - [3057] = {.lex_state = 634}, - [3058] = {.lex_state = 634}, - [3059] = {.lex_state = 583}, - [3060] = {.lex_state = 639}, - [3061] = {.lex_state = 65}, - [3062] = {.lex_state = 65}, - [3063] = {.lex_state = 631}, - [3064] = {.lex_state = 65}, - [3065] = {.lex_state = 631}, - [3066] = {.lex_state = 631}, - [3067] = {.lex_state = 65}, - [3068] = {.lex_state = 634}, - [3069] = {.lex_state = 65}, - [3070] = {.lex_state = 631}, - [3071] = {.lex_state = 65}, - [3072] = {.lex_state = 65}, - [3073] = {.lex_state = 634}, - [3074] = {.lex_state = 634}, - [3075] = {.lex_state = 68}, - [3076] = {.lex_state = 65}, - [3077] = {.lex_state = 631}, - [3078] = {.lex_state = 631}, - [3079] = {.lex_state = 65}, - [3080] = {.lex_state = 65}, - [3081] = {.lex_state = 2}, - [3082] = {.lex_state = 634}, - [3083] = {.lex_state = 634}, - [3084] = {.lex_state = 634}, - [3085] = {.lex_state = 634}, - [3086] = {.lex_state = 634}, - [3087] = {.lex_state = 634}, - [3088] = {.lex_state = 634}, - [3089] = {.lex_state = 583}, - [3090] = {.lex_state = 583}, - [3091] = {.lex_state = 583}, - [3092] = {.lex_state = 583}, - [3093] = {.lex_state = 583}, - [3094] = {.lex_state = 583}, - [3095] = {.lex_state = 634}, - [3096] = {.lex_state = 583}, - [3097] = {.lex_state = 634}, - [3098] = {.lex_state = 634}, - [3099] = {.lex_state = 583}, - [3100] = {.lex_state = 583}, - [3101] = {.lex_state = 583}, - [3102] = {.lex_state = 631}, - [3103] = {.lex_state = 634}, - [3104] = {.lex_state = 634}, - [3105] = {.lex_state = 70}, - [3106] = {.lex_state = 634}, - [3107] = {.lex_state = 634}, - [3108] = {.lex_state = 634}, - [3109] = {.lex_state = 582}, - [3110] = {.lex_state = 634}, - [3111] = {.lex_state = 583}, - [3112] = {.lex_state = 634}, - [3113] = {.lex_state = 634}, - [3114] = {.lex_state = 634}, - [3115] = {.lex_state = 634}, - [3116] = {.lex_state = 634}, - [3117] = {.lex_state = 634}, - [3118] = {.lex_state = 634}, - [3119] = {.lex_state = 70}, - [3120] = {.lex_state = 634}, - [3121] = {.lex_state = 634}, - [3122] = {.lex_state = 61}, - [3123] = {.lex_state = 65}, - [3124] = {.lex_state = 65}, - [3125] = {.lex_state = 65}, - [3126] = {.lex_state = 2}, - [3127] = {.lex_state = 631}, - [3128] = {.lex_state = 2}, - [3129] = {.lex_state = 2}, - [3130] = {.lex_state = 634}, - [3131] = {.lex_state = 583}, - [3132] = {.lex_state = 583}, - [3133] = {.lex_state = 583}, - [3134] = {.lex_state = 583}, - [3135] = {.lex_state = 634}, - [3136] = {.lex_state = 583}, - [3137] = {.lex_state = 583}, - [3138] = {.lex_state = 583}, - [3139] = {.lex_state = 634}, - [3140] = {.lex_state = 634}, - [3141] = {.lex_state = 634}, + [3053] = {.lex_state = 579}, + [3054] = {.lex_state = 579}, + [3055] = {.lex_state = 61}, + [3056] = {.lex_state = 2}, + [3057] = {.lex_state = 2}, + [3058] = {.lex_state = 630}, + [3059] = {.lex_state = 630}, + [3060] = {.lex_state = 630}, + [3061] = {.lex_state = 627}, + [3062] = {.lex_state = 61}, + [3063] = {.lex_state = 61}, + [3064] = {.lex_state = 627}, + [3065] = {.lex_state = 579}, + [3066] = {.lex_state = 579}, + [3067] = {.lex_state = 579}, + [3068] = {.lex_state = 630}, + [3069] = {.lex_state = 627}, + [3070] = {.lex_state = 579}, + [3071] = {.lex_state = 2}, + [3072] = {.lex_state = 627}, + [3073] = {.lex_state = 579}, + [3074] = {.lex_state = 62}, + [3075] = {.lex_state = 2}, + [3076] = {.lex_state = 188}, + [3077] = {.lex_state = 579}, + [3078] = {.lex_state = 579}, + [3079] = {.lex_state = 579}, + [3080] = {.lex_state = 578}, + [3081] = {.lex_state = 627}, + [3082] = {.lex_state = 630}, + [3083] = {.lex_state = 579}, + [3084] = {.lex_state = 627}, + [3085] = {.lex_state = 627}, + [3086] = {.lex_state = 627}, + [3087] = {.lex_state = 65}, + [3088] = {.lex_state = 67}, + [3089] = {.lex_state = 579}, + [3090] = {.lex_state = 65}, + [3091] = {.lex_state = 579}, + [3092] = {.lex_state = 65}, + [3093] = {.lex_state = 630}, + [3094] = {.lex_state = 579}, + [3095] = {.lex_state = 65}, + [3096] = {.lex_state = 65}, + [3097] = {.lex_state = 579}, + [3098] = {.lex_state = 579}, + [3099] = {.lex_state = 65}, + [3100] = {.lex_state = 578}, + [3101] = {.lex_state = 579}, + [3102] = {.lex_state = 630}, + [3103] = {.lex_state = 61}, + [3104] = {.lex_state = 65}, + [3105] = {.lex_state = 630}, + [3106] = {.lex_state = 579}, + [3107] = {.lex_state = 627}, + [3108] = {.lex_state = 630}, + [3109] = {.lex_state = 630}, + [3110] = {.lex_state = 630}, + [3111] = {.lex_state = 630}, + [3112] = {.lex_state = 627}, + [3113] = {.lex_state = 630}, + [3114] = {.lex_state = 630}, + [3115] = {.lex_state = 627}, + [3116] = {.lex_state = 630}, + [3117] = {.lex_state = 630}, + [3118] = {.lex_state = 627}, + [3119] = {.lex_state = 627}, + [3120] = {.lex_state = 627}, + [3121] = {.lex_state = 61}, + [3122] = {.lex_state = 630}, + [3123] = {.lex_state = 630}, + [3124] = {.lex_state = 630}, + [3125] = {.lex_state = 630}, + [3126] = {.lex_state = 627}, + [3127] = {.lex_state = 627}, + [3128] = {.lex_state = 627}, + [3129] = {.lex_state = 630}, + [3130] = {.lex_state = 630}, + [3131] = {.lex_state = 630}, + [3132] = {.lex_state = 630}, + [3133] = {.lex_state = 630}, + [3134] = {.lex_state = 630}, + [3135] = {.lex_state = 630}, + [3136] = {.lex_state = 630}, + [3137] = {.lex_state = 630}, + [3138] = {.lex_state = 630}, + [3139] = {.lex_state = 630}, + [3140] = {.lex_state = 579}, + [3141] = {.lex_state = 579}, [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 2}, - [3144] = {.lex_state = 634}, - [3145] = {.lex_state = 634}, - [3146] = {.lex_state = 66}, - [3147] = {.lex_state = 62}, - [3148] = {.lex_state = 583}, - [3149] = {.lex_state = 583}, - [3150] = {.lex_state = 583}, - [3151] = {.lex_state = 583}, - [3152] = {.lex_state = 583}, - [3153] = {.lex_state = 634}, - [3154] = {.lex_state = 583}, - [3155] = {.lex_state = 583}, - [3156] = {.lex_state = 583}, - [3157] = {.lex_state = 583}, - [3158] = {.lex_state = 583}, - [3159] = {.lex_state = 2}, - [3160] = {.lex_state = 583}, - [3161] = {.lex_state = 2}, - [3162] = {.lex_state = 2}, - [3163] = {.lex_state = 2}, - [3164] = {.lex_state = 631}, - [3165] = {.lex_state = 634}, - [3166] = {.lex_state = 634}, - [3167] = {.lex_state = 634}, - [3168] = {.lex_state = 634}, - [3169] = {.lex_state = 583}, - [3170] = {.lex_state = 2}, - [3171] = {.lex_state = 667}, - [3172] = {.lex_state = 583}, - [3173] = {.lex_state = 2}, + [3143] = {.lex_state = 579}, + [3144] = {.lex_state = 630}, + [3145] = {.lex_state = 630}, + [3146] = {.lex_state = 65}, + [3147] = {.lex_state = 579}, + [3148] = {.lex_state = 579}, + [3149] = {.lex_state = 70}, + [3150] = {.lex_state = 579}, + [3151] = {.lex_state = 579}, + [3152] = {.lex_state = 65}, + [3153] = {.lex_state = 630}, + [3154] = {.lex_state = 630}, + [3155] = {.lex_state = 630}, + [3156] = {.lex_state = 627}, + [3157] = {.lex_state = 579}, + [3158] = {.lex_state = 630}, + [3159] = {.lex_state = 579}, + [3160] = {.lex_state = 579}, + [3161] = {.lex_state = 630}, + [3162] = {.lex_state = 630}, + [3163] = {.lex_state = 630}, + [3164] = {.lex_state = 630}, + [3165] = {.lex_state = 630}, + [3166] = {.lex_state = 630}, + [3167] = {.lex_state = 630}, + [3168] = {.lex_state = 630}, + [3169] = {.lex_state = 579}, + [3170] = {.lex_state = 630}, + [3171] = {.lex_state = 70}, + [3172] = {.lex_state = 630}, + [3173] = {.lex_state = 630}, [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 2}, - [3176] = {.lex_state = 634}, - [3177] = {.lex_state = 634}, - [3178] = {.lex_state = 2}, - [3179] = {.lex_state = 583}, - [3180] = {.lex_state = 2}, + [3175] = {.lex_state = 630}, + [3176] = {.lex_state = 2}, + [3177] = {.lex_state = 2}, + [3178] = {.lex_state = 627}, + [3179] = {.lex_state = 630}, + [3180] = {.lex_state = 630}, [3181] = {.lex_state = 2}, - [3182] = {.lex_state = 583}, - [3183] = {.lex_state = 583}, - [3184] = {.lex_state = 634}, - [3185] = {.lex_state = 582}, - [3186] = {.lex_state = 583}, - [3187] = {.lex_state = 583}, - [3188] = {.lex_state = 583}, - [3189] = {.lex_state = 583}, - [3190] = {.lex_state = 583}, - [3191] = {.lex_state = 582}, - [3192] = {.lex_state = 582}, - [3193] = {.lex_state = 583}, - [3194] = {.lex_state = 583}, - [3195] = {.lex_state = 631}, - [3196] = {.lex_state = 634}, - [3197] = {.lex_state = 634}, - [3198] = {.lex_state = 634}, - [3199] = {.lex_state = 634}, - [3200] = {.lex_state = 634}, - [3201] = {.lex_state = 634}, - [3202] = {.lex_state = 67}, - [3203] = {.lex_state = 634}, - [3204] = {.lex_state = 634}, - [3205] = {.lex_state = 582}, - [3206] = {.lex_state = 634}, - [3207] = {.lex_state = 634}, + [3182] = {.lex_state = 627}, + [3183] = {.lex_state = 2}, + [3184] = {.lex_state = 579}, + [3185] = {.lex_state = 2}, + [3186] = {.lex_state = 578}, + [3187] = {.lex_state = 630}, + [3188] = {.lex_state = 630}, + [3189] = {.lex_state = 579}, + [3190] = {.lex_state = 66}, + [3191] = {.lex_state = 630}, + [3192] = {.lex_state = 630}, + [3193] = {.lex_state = 630}, + [3194] = {.lex_state = 579}, + [3195] = {.lex_state = 2}, + [3196] = {.lex_state = 2}, + [3197] = {.lex_state = 68}, + [3198] = {.lex_state = 579}, + [3199] = {.lex_state = 2}, + [3200] = {.lex_state = 579}, + [3201] = {.lex_state = 579}, + [3202] = {.lex_state = 630}, + [3203] = {.lex_state = 630}, + [3204] = {.lex_state = 630}, + [3205] = {.lex_state = 2}, + [3206] = {.lex_state = 2}, + [3207] = {.lex_state = 2}, [3208] = {.lex_state = 2}, - [3209] = {.lex_state = 582}, - [3210] = {.lex_state = 583}, - [3211] = {.lex_state = 583}, - [3212] = {.lex_state = 634}, - [3213] = {.lex_state = 583}, - [3214] = {.lex_state = 2}, - [3215] = {.lex_state = 2}, - [3216] = {.lex_state = 2}, - [3217] = {.lex_state = 639}, - [3218] = {.lex_state = 583}, - [3219] = {.lex_state = 634}, - [3220] = {.lex_state = 583}, - [3221] = {.lex_state = 583}, - [3222] = {.lex_state = 631}, - [3223] = {.lex_state = 583}, - [3224] = {.lex_state = 634}, - [3225] = {.lex_state = 634}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 2}, - [3228] = {.lex_state = 631}, - [3229] = {.lex_state = 634}, - [3230] = {.lex_state = 631}, - [3231] = {.lex_state = 61}, - [3232] = {.lex_state = 61}, - [3233] = {.lex_state = 639}, - [3234] = {.lex_state = 61}, - [3235] = {.lex_state = 631}, - [3236] = {.lex_state = 631}, - [3237] = {.lex_state = 61}, - [3238] = {.lex_state = 61}, - [3239] = {.lex_state = 631}, - [3240] = {.lex_state = 583}, - [3241] = {.lex_state = 631}, - [3242] = {.lex_state = 634}, + [3209] = {.lex_state = 2}, + [3210] = {.lex_state = 2}, + [3211] = {.lex_state = 2}, + [3212] = {.lex_state = 579}, + [3213] = {.lex_state = 579}, + [3214] = {.lex_state = 630}, + [3215] = {.lex_state = 578}, + [3216] = {.lex_state = 630}, + [3217] = {.lex_state = 579}, + [3218] = {.lex_state = 635}, + [3219] = {.lex_state = 579}, + [3220] = {.lex_state = 579}, + [3221] = {.lex_state = 579}, + [3222] = {.lex_state = 630}, + [3223] = {.lex_state = 630}, + [3224] = {.lex_state = 579}, + [3225] = {.lex_state = 579}, + [3226] = {.lex_state = 635}, + [3227] = {.lex_state = 61}, + [3228] = {.lex_state = 579}, + [3229] = {.lex_state = 579}, + [3230] = {.lex_state = 2}, + [3231] = {.lex_state = 2}, + [3232] = {.lex_state = 627}, + [3233] = {.lex_state = 579}, + [3234] = {.lex_state = 65}, + [3235] = {.lex_state = 49, .external_lex_state = 2}, + [3236] = {.lex_state = 627}, + [3237] = {.lex_state = 627}, + [3238] = {.lex_state = 579}, + [3239] = {.lex_state = 578}, + [3240] = {.lex_state = 630}, + [3241] = {.lex_state = 579}, + [3242] = {.lex_state = 2}, [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 631}, - [3246] = {.lex_state = 631}, - [3247] = {.lex_state = 631}, - [3248] = {.lex_state = 631}, - [3249] = {.lex_state = 634}, - [3250] = {.lex_state = 583}, - [3251] = {.lex_state = 631}, - [3252] = {.lex_state = 631}, - [3253] = {.lex_state = 634}, - [3254] = {.lex_state = 583}, - [3255] = {.lex_state = 49, .external_lex_state = 2}, - [3256] = {.lex_state = 634}, - [3257] = {.lex_state = 631}, - [3258] = {.lex_state = 631}, - [3259] = {.lex_state = 2}, - [3260] = {.lex_state = 634}, - [3261] = {.lex_state = 634}, - [3262] = {.lex_state = 71}, - [3263] = {.lex_state = 634}, - [3264] = {.lex_state = 583}, - [3265] = {.lex_state = 185}, - [3266] = {.lex_state = 634}, - [3267] = {.lex_state = 188}, - [3268] = {.lex_state = 634}, - [3269] = {.lex_state = 634}, - [3270] = {.lex_state = 2}, - [3271] = {.lex_state = 634}, - [3272] = {.lex_state = 69}, - [3273] = {.lex_state = 634}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, + [3244] = {.lex_state = 627}, + [3245] = {.lex_state = 579}, + [3246] = {.lex_state = 65}, + [3247] = {.lex_state = 630}, + [3248] = {.lex_state = 627}, + [3249] = {.lex_state = 65}, + [3250] = {.lex_state = 630}, + [3251] = {.lex_state = 578}, + [3252] = {.lex_state = 2}, + [3253] = {.lex_state = 2}, + [3254] = {.lex_state = 635}, + [3255] = {.lex_state = 579}, + [3256] = {.lex_state = 663}, + [3257] = {.lex_state = 627}, + [3258] = {.lex_state = 65}, + [3259] = {.lex_state = 630}, + [3260] = {.lex_state = 630}, + [3261] = {.lex_state = 579}, + [3262] = {.lex_state = 630}, + [3263] = {.lex_state = 630}, + [3264] = {.lex_state = 630}, + [3265] = {.lex_state = 630}, + [3266] = {.lex_state = 630}, + [3267] = {.lex_state = 579}, + [3268] = {.lex_state = 630}, + [3269] = {.lex_state = 579}, + [3270] = {.lex_state = 579}, + [3271] = {.lex_state = 630}, + [3272] = {.lex_state = 2}, + [3273] = {.lex_state = 630}, + [3274] = {.lex_state = 630}, + [3275] = {.lex_state = 630}, [3276] = {.lex_state = 2}, - [3277] = {.lex_state = 2}, - [3278] = {.lex_state = 583}, - [3279] = {.lex_state = 583}, - [3280] = {.lex_state = 583}, - [3281] = {.lex_state = 583}, - [3282] = {.lex_state = 2}, - [3283] = {.lex_state = 2}, - [3284] = {.lex_state = 185}, + [3277] = {.lex_state = 630}, + [3278] = {.lex_state = 630}, + [3279] = {.lex_state = 630}, + [3280] = {.lex_state = 627}, + [3281] = {.lex_state = 579}, + [3282] = {.lex_state = 630}, + [3283] = {.lex_state = 630}, + [3284] = {.lex_state = 2}, [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 583}, - [3287] = {.lex_state = 69}, - [3288] = {.lex_state = 583}, - [3289] = {.lex_state = 631}, - [3290] = {.lex_state = 634}, - [3291] = {.lex_state = 583}, - [3292] = {.lex_state = 631}, - [3293] = {.lex_state = 634}, - [3294] = {.lex_state = 634}, - [3295] = {.lex_state = 634}, - [3296] = {.lex_state = 634}, - [3297] = {.lex_state = 631}, - [3298] = {.lex_state = 583}, - [3299] = {.lex_state = 182}, - [3300] = {.lex_state = 634}, - [3301] = {.lex_state = 634}, - [3302] = {.lex_state = 631}, - [3303] = {.lex_state = 631}, - [3304] = {.lex_state = 634}, - [3305] = {.lex_state = 631}, - [3306] = {.lex_state = 639}, - [3307] = {.lex_state = 634}, - [3308] = {.lex_state = 583}, - [3309] = {.lex_state = 631}, - [3310] = {.lex_state = 634}, - [3311] = {.lex_state = 2}, - [3312] = {.lex_state = 2}, - [3313] = {.lex_state = 634}, - [3314] = {.lex_state = 634}, - [3315] = {.lex_state = 2}, - [3316] = {.lex_state = 67}, - [3317] = {.lex_state = 72}, - [3318] = {.lex_state = 67}, - [3319] = {.lex_state = 67}, - [3320] = {.lex_state = 67}, - [3321] = {.lex_state = 634}, - [3322] = {.lex_state = 634}, - [3323] = {.lex_state = 583}, - [3324] = {.lex_state = 583}, - [3325] = {.lex_state = 631}, - [3326] = {.lex_state = 2}, - [3327] = {.lex_state = 583}, - [3328] = {.lex_state = 634}, - [3329] = {.lex_state = 634}, - [3330] = {.lex_state = 634}, - [3331] = {.lex_state = 583}, - [3332] = {.lex_state = 583}, - [3333] = {.lex_state = 583}, - [3334] = {.lex_state = 634}, - [3335] = {.lex_state = 634}, - [3336] = {.lex_state = 634}, - [3337] = {.lex_state = 634}, - [3338] = {.lex_state = 65}, - [3339] = {.lex_state = 61}, - [3340] = {.lex_state = 631}, - [3341] = {.lex_state = 634}, - [3342] = {.lex_state = 634}, - [3343] = {.lex_state = 634}, - [3344] = {.lex_state = 634}, - [3345] = {.lex_state = 634}, - [3346] = {.lex_state = 2}, - [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 634}, - [3349] = {.lex_state = 2}, - [3350] = {.lex_state = 2}, - [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 2}, - [3353] = {.lex_state = 583}, - [3354] = {.lex_state = 2}, - [3355] = {.lex_state = 583}, - [3356] = {.lex_state = 634}, - [3357] = {.lex_state = 583}, - [3358] = {.lex_state = 583}, - [3359] = {.lex_state = 583}, - [3360] = {.lex_state = 583}, - [3361] = {.lex_state = 634}, - [3362] = {.lex_state = 634}, - [3363] = {.lex_state = 61}, - [3364] = {.lex_state = 2}, - [3365] = {.lex_state = 583}, - [3366] = {.lex_state = 634}, - [3367] = {.lex_state = 634}, - [3368] = {.lex_state = 634}, - [3369] = {.lex_state = 634}, - [3370] = {.lex_state = 583}, - [3371] = {.lex_state = 634}, - [3372] = {.lex_state = 583}, - [3373] = {.lex_state = 631}, - [3374] = {.lex_state = 634}, - [3375] = {.lex_state = 71}, - [3376] = {.lex_state = 634}, - [3377] = {.lex_state = 634}, - [3378] = {.lex_state = 634}, - [3379] = {.lex_state = 631}, - [3380] = {.lex_state = 631}, - [3381] = {.lex_state = 583}, - [3382] = {.lex_state = 634}, - [3383] = {.lex_state = 583}, - [3384] = {.lex_state = 583}, - [3385] = {.lex_state = 634}, - [3386] = {.lex_state = 186}, - [3387] = {.lex_state = 631}, - [3388] = {.lex_state = 634}, - [3389] = {.lex_state = 634}, - [3390] = {.lex_state = 631}, - [3391] = {.lex_state = 583}, - [3392] = {.lex_state = 583}, - [3393] = {.lex_state = 583}, - [3394] = {.lex_state = 583}, - [3395] = {.lex_state = 583}, - [3396] = {.lex_state = 583}, - [3397] = {.lex_state = 583}, - [3398] = {.lex_state = 583}, - [3399] = {.lex_state = 583}, - [3400] = {.lex_state = 583}, - [3401] = {.lex_state = 583}, - [3402] = {.lex_state = 583}, - [3403] = {.lex_state = 634}, - [3404] = {.lex_state = 634}, - [3405] = {.lex_state = 634}, - [3406] = {.lex_state = 634}, - [3407] = {.lex_state = 634}, - [3408] = {.lex_state = 634}, - [3409] = {.lex_state = 634}, - [3410] = {.lex_state = 49, .external_lex_state = 2}, - [3411] = {.lex_state = 634}, - [3412] = {.lex_state = 634}, - [3413] = {.lex_state = 182}, - [3414] = {.lex_state = 583}, - [3415] = {.lex_state = 634}, - [3416] = {.lex_state = 583}, - [3417] = {.lex_state = 583}, - [3418] = {.lex_state = 583}, - [3419] = {.lex_state = 2}, - [3420] = {.lex_state = 583}, - [3421] = {.lex_state = 2}, - [3422] = {.lex_state = 2}, + [3286] = {.lex_state = 630}, + [3287] = {.lex_state = 630}, + [3288] = {.lex_state = 630}, + [3289] = {.lex_state = 188}, + [3290] = {.lex_state = 579}, + [3291] = {.lex_state = 627}, + [3292] = {.lex_state = 69}, + [3293] = {.lex_state = 579}, + [3294] = {.lex_state = 2}, + [3295] = {.lex_state = 2}, + [3296] = {.lex_state = 630}, + [3297] = {.lex_state = 2}, + [3298] = {.lex_state = 2}, + [3299] = {.lex_state = 630}, + [3300] = {.lex_state = 71}, + [3301] = {.lex_state = 579}, + [3302] = {.lex_state = 2}, + [3303] = {.lex_state = 579}, + [3304] = {.lex_state = 579}, + [3305] = {.lex_state = 579}, + [3306] = {.lex_state = 579}, + [3307] = {.lex_state = 579}, + [3308] = {.lex_state = 579}, + [3309] = {.lex_state = 2}, + [3310] = {.lex_state = 2}, + [3311] = {.lex_state = 630}, + [3312] = {.lex_state = 630}, + [3313] = {.lex_state = 630}, + [3314] = {.lex_state = 630}, + [3315] = {.lex_state = 185}, + [3316] = {.lex_state = 69}, + [3317] = {.lex_state = 630}, + [3318] = {.lex_state = 630}, + [3319] = {.lex_state = 579}, + [3320] = {.lex_state = 630}, + [3321] = {.lex_state = 627}, + [3322] = {.lex_state = 579}, + [3323] = {.lex_state = 630}, + [3324] = {.lex_state = 2}, + [3325] = {.lex_state = 61}, + [3326] = {.lex_state = 182}, + [3327] = {.lex_state = 630}, + [3328] = {.lex_state = 630}, + [3329] = {.lex_state = 627}, + [3330] = {.lex_state = 630}, + [3331] = {.lex_state = 627}, + [3332] = {.lex_state = 630}, + [3333] = {.lex_state = 630}, + [3334] = {.lex_state = 579}, + [3335] = {.lex_state = 630}, + [3336] = {.lex_state = 630}, + [3337] = {.lex_state = 67}, + [3338] = {.lex_state = 630}, + [3339] = {.lex_state = 2}, + [3340] = {.lex_state = 2}, + [3341] = {.lex_state = 630}, + [3342] = {.lex_state = 627}, + [3343] = {.lex_state = 579}, + [3344] = {.lex_state = 61}, + [3345] = {.lex_state = 627}, + [3346] = {.lex_state = 630}, + [3347] = {.lex_state = 627}, + [3348] = {.lex_state = 2}, + [3349] = {.lex_state = 630}, + [3350] = {.lex_state = 627}, + [3351] = {.lex_state = 579}, + [3352] = {.lex_state = 71}, + [3353] = {.lex_state = 2}, + [3354] = {.lex_state = 72}, + [3355] = {.lex_state = 630}, + [3356] = {.lex_state = 635}, + [3357] = {.lex_state = 630}, + [3358] = {.lex_state = 630}, + [3359] = {.lex_state = 630}, + [3360] = {.lex_state = 630}, + [3361] = {.lex_state = 2}, + [3362] = {.lex_state = 630}, + [3363] = {.lex_state = 627}, + [3364] = {.lex_state = 630}, + [3365] = {.lex_state = 49, .external_lex_state = 2}, + [3366] = {.lex_state = 630}, + [3367] = {.lex_state = 630}, + [3368] = {.lex_state = 182}, + [3369] = {.lex_state = 579}, + [3370] = {.lex_state = 186}, + [3371] = {.lex_state = 579}, + [3372] = {.lex_state = 630}, + [3373] = {.lex_state = 630}, + [3374] = {.lex_state = 2}, + [3375] = {.lex_state = 67}, + [3376] = {.lex_state = 579}, + [3377] = {.lex_state = 579}, + [3378] = {.lex_state = 579}, + [3379] = {.lex_state = 579}, + [3380] = {.lex_state = 579}, + [3381] = {.lex_state = 579}, + [3382] = {.lex_state = 579}, + [3383] = {.lex_state = 579}, + [3384] = {.lex_state = 579}, + [3385] = {.lex_state = 579}, + [3386] = {.lex_state = 579}, + [3387] = {.lex_state = 579}, + [3388] = {.lex_state = 630}, + [3389] = {.lex_state = 2}, + [3390] = {.lex_state = 67}, + [3391] = {.lex_state = 627}, + [3392] = {.lex_state = 67}, + [3393] = {.lex_state = 185}, + [3394] = {.lex_state = 627}, + [3395] = {.lex_state = 630}, + [3396] = {.lex_state = 630}, + [3397] = {.lex_state = 630}, + [3398] = {.lex_state = 579}, + [3399] = {.lex_state = 65}, + [3400] = {.lex_state = 2}, + [3401] = {.lex_state = 579}, + [3402] = {.lex_state = 627}, + [3403] = {.lex_state = 627}, + [3404] = {.lex_state = 579}, + [3405] = {.lex_state = 579}, + [3406] = {.lex_state = 579}, + [3407] = {.lex_state = 630}, + [3408] = {.lex_state = 630}, + [3409] = {.lex_state = 630}, + [3410] = {.lex_state = 630}, + [3411] = {.lex_state = 579}, + [3412] = {.lex_state = 579}, + [3413] = {.lex_state = 630}, + [3414] = {.lex_state = 579}, + [3415] = {.lex_state = 579}, + [3416] = {.lex_state = 630}, + [3417] = {.lex_state = 630}, + [3418] = {.lex_state = 630}, + [3419] = {.lex_state = 579}, + [3420] = {.lex_state = 579}, + [3421] = {.lex_state = 184}, + [3422] = {.lex_state = 579}, [3423] = {.lex_state = 2}, [3424] = {.lex_state = 2}, - [3425] = {.lex_state = 583}, - [3426] = {.lex_state = 2}, - [3427] = {.lex_state = 2}, - [3428] = {.lex_state = 2156}, - [3429] = {.lex_state = 583}, - [3430] = {.lex_state = 583}, - [3431] = {.lex_state = 2}, - [3432] = {.lex_state = 2}, - [3433] = {.lex_state = 583}, + [3425] = {.lex_state = 579}, + [3426] = {.lex_state = 579}, + [3427] = {.lex_state = 579}, + [3428] = {.lex_state = 2154}, + [3429] = {.lex_state = 188}, + [3430] = {.lex_state = 188}, + [3431] = {.lex_state = 188}, + [3432] = {.lex_state = 184}, + [3433] = {.lex_state = 2}, [3434] = {.lex_state = 2}, - [3435] = {.lex_state = 2}, - [3436] = {.lex_state = 583}, - [3437] = {.lex_state = 2}, - [3438] = {.lex_state = 2}, - [3439] = {.lex_state = 583}, - [3440] = {.lex_state = 2}, - [3441] = {.lex_state = 92}, - [3442] = {.lex_state = 122}, - [3443] = {.lex_state = 583}, - [3444] = {.lex_state = 188}, - [3445] = {.lex_state = 583}, - [3446] = {.lex_state = 128}, - [3447] = {.lex_state = 2}, - [3448] = {.lex_state = 583}, - [3449] = {.lex_state = 80}, - [3450] = {.lex_state = 583}, - [3451] = {.lex_state = 583}, - [3452] = {.lex_state = 2}, - [3453] = {.lex_state = 583}, - [3454] = {.lex_state = 583}, - [3455] = {.lex_state = 583}, - [3456] = {.lex_state = 184}, - [3457] = {.lex_state = 583}, - [3458] = {.lex_state = 181}, - [3459] = {.lex_state = 583}, - [3460] = {.lex_state = 583}, - [3461] = {.lex_state = 583}, - [3462] = {.lex_state = 583}, - [3463] = {.lex_state = 583}, - [3464] = {.lex_state = 583}, - [3465] = {.lex_state = 583}, - [3466] = {.lex_state = 639}, - [3467] = {.lex_state = 583}, - [3468] = {.lex_state = 583}, - [3469] = {.lex_state = 2}, - [3470] = {.lex_state = 583}, - [3471] = {.lex_state = 2}, - [3472] = {.lex_state = 583}, - [3473] = {.lex_state = 583}, - [3474] = {.lex_state = 583}, - [3475] = {.lex_state = 583}, - [3476] = {.lex_state = 188}, - [3477] = {.lex_state = 188}, - [3478] = {.lex_state = 188}, - [3479] = {.lex_state = 188}, - [3480] = {.lex_state = 583}, - [3481] = {.lex_state = 583}, - [3482] = {.lex_state = 188}, - [3483] = {.lex_state = 188}, - [3484] = {.lex_state = 188}, - [3485] = {.lex_state = 583}, - [3486] = {.lex_state = 2156}, + [3435] = {.lex_state = 579}, + [3436] = {.lex_state = 579}, + [3437] = {.lex_state = 579}, + [3438] = {.lex_state = 579}, + [3439] = {.lex_state = 193}, + [3440] = {.lex_state = 579}, + [3441] = {.lex_state = 579}, + [3442] = {.lex_state = 579}, + [3443] = {.lex_state = 579}, + [3444] = {.lex_state = 183}, + [3445] = {.lex_state = 92}, + [3446] = {.lex_state = 579}, + [3447] = {.lex_state = 201}, + [3448] = {.lex_state = 2}, + [3449] = {.lex_state = 2}, + [3450] = {.lex_state = 2}, + [3451] = {.lex_state = 188}, + [3452] = {.lex_state = 188}, + [3453] = {.lex_state = 188}, + [3454] = {.lex_state = 188}, + [3455] = {.lex_state = 96}, + [3456] = {.lex_state = 579}, + [3457] = {.lex_state = 579}, + [3458] = {.lex_state = 579}, + [3459] = {.lex_state = 579}, + [3460] = {.lex_state = 579}, + [3461] = {.lex_state = 183}, + [3462] = {.lex_state = 2}, + [3463] = {.lex_state = 2}, + [3464] = {.lex_state = 579}, + [3465] = {.lex_state = 579}, + [3466] = {.lex_state = 579}, + [3467] = {.lex_state = 579}, + [3468] = {.lex_state = 2}, + [3469] = {.lex_state = 579}, + [3470] = {.lex_state = 579}, + [3471] = {.lex_state = 579}, + [3472] = {.lex_state = 579}, + [3473] = {.lex_state = 122}, + [3474] = {.lex_state = 182}, + [3475] = {.lex_state = 2}, + [3476] = {.lex_state = 579}, + [3477] = {.lex_state = 579}, + [3478] = {.lex_state = 579}, + [3479] = {.lex_state = 579}, + [3480] = {.lex_state = 635}, + [3481] = {.lex_state = 579}, + [3482] = {.lex_state = 579}, + [3483] = {.lex_state = 579}, + [3484] = {.lex_state = 579}, + [3485] = {.lex_state = 579}, + [3486] = {.lex_state = 2}, [3487] = {.lex_state = 2}, [3488] = {.lex_state = 2}, [3489] = {.lex_state = 2}, - [3490] = {.lex_state = 583}, - [3491] = {.lex_state = 2}, - [3492] = {.lex_state = 583}, + [3490] = {.lex_state = 2}, + [3491] = {.lex_state = 579}, + [3492] = {.lex_state = 2}, [3493] = {.lex_state = 2}, - [3494] = {.lex_state = 583}, + [3494] = {.lex_state = 2}, [3495] = {.lex_state = 2}, - [3496] = {.lex_state = 583}, - [3497] = {.lex_state = 583}, - [3498] = {.lex_state = 583}, - [3499] = {.lex_state = 583}, - [3500] = {.lex_state = 639}, - [3501] = {.lex_state = 639}, - [3502] = {.lex_state = 583}, + [3496] = {.lex_state = 635}, + [3497] = {.lex_state = 635}, + [3498] = {.lex_state = 635}, + [3499] = {.lex_state = 2}, + [3500] = {.lex_state = 2}, + [3501] = {.lex_state = 2}, + [3502] = {.lex_state = 2}, [3503] = {.lex_state = 2}, [3504] = {.lex_state = 2}, - [3505] = {.lex_state = 639}, + [3505] = {.lex_state = 2}, [3506] = {.lex_state = 2}, - [3507] = {.lex_state = 2}, - [3508] = {.lex_state = 583}, - [3509] = {.lex_state = 583}, - [3510] = {.lex_state = 96}, - [3511] = {.lex_state = 583}, - [3512] = {.lex_state = 2}, - [3513] = {.lex_state = 2}, - [3514] = {.lex_state = 583}, - [3515] = {.lex_state = 583}, - [3516] = {.lex_state = 583}, - [3517] = {.lex_state = 583}, - [3518] = {.lex_state = 583}, - [3519] = {.lex_state = 583}, - [3520] = {.lex_state = 583}, - [3521] = {.lex_state = 583}, - [3522] = {.lex_state = 583}, - [3523] = {.lex_state = 184}, - [3524] = {.lex_state = 583}, - [3525] = {.lex_state = 583}, - [3526] = {.lex_state = 2}, - [3527] = {.lex_state = 193}, - [3528] = {.lex_state = 2}, - [3529] = {.lex_state = 583}, - [3530] = {.lex_state = 583}, - [3531] = {.lex_state = 2}, + [3507] = {.lex_state = 78}, + [3508] = {.lex_state = 579}, + [3509] = {.lex_state = 579}, + [3510] = {.lex_state = 579}, + [3511] = {.lex_state = 579}, + [3512] = {.lex_state = 579}, + [3513] = {.lex_state = 579}, + [3514] = {.lex_state = 194}, + [3515] = {.lex_state = 80}, + [3516] = {.lex_state = 579}, + [3517] = {.lex_state = 579}, + [3518] = {.lex_state = 202}, + [3519] = {.lex_state = 579}, + [3520] = {.lex_state = 579}, + [3521] = {.lex_state = 579}, + [3522] = {.lex_state = 579}, + [3523] = {.lex_state = 579}, + [3524] = {.lex_state = 579}, + [3525] = {.lex_state = 2}, + [3526] = {.lex_state = 579}, + [3527] = {.lex_state = 579}, + [3528] = {.lex_state = 579}, + [3529] = {.lex_state = 2}, + [3530] = {.lex_state = 579}, + [3531] = {.lex_state = 579}, [3532] = {.lex_state = 2}, - [3533] = {.lex_state = 583}, - [3534] = {.lex_state = 583}, - [3535] = {.lex_state = 2}, - [3536] = {.lex_state = 2}, - [3537] = {.lex_state = 583}, - [3538] = {.lex_state = 583}, - [3539] = {.lex_state = 583}, - [3540] = {.lex_state = 583}, - [3541] = {.lex_state = 583}, - [3542] = {.lex_state = 2}, - [3543] = {.lex_state = 2}, - [3544] = {.lex_state = 583}, - [3545] = {.lex_state = 2}, - [3546] = {.lex_state = 583}, - [3547] = {.lex_state = 194}, - [3548] = {.lex_state = 631}, - [3549] = {.lex_state = 583}, - [3550] = {.lex_state = 583}, - [3551] = {.lex_state = 583}, - [3552] = {.lex_state = 583}, - [3553] = {.lex_state = 583}, - [3554] = {.lex_state = 583}, - [3555] = {.lex_state = 583}, - [3556] = {.lex_state = 583}, - [3557] = {.lex_state = 583}, - [3558] = {.lex_state = 583}, - [3559] = {.lex_state = 583}, - [3560] = {.lex_state = 583}, - [3561] = {.lex_state = 182}, - [3562] = {.lex_state = 202}, - [3563] = {.lex_state = 583}, - [3564] = {.lex_state = 583}, - [3565] = {.lex_state = 201}, - [3566] = {.lex_state = 583}, - [3567] = {.lex_state = 2}, - [3568] = {.lex_state = 583}, - [3569] = {.lex_state = 583}, - [3570] = {.lex_state = 583}, - [3571] = {.lex_state = 583}, - [3572] = {.lex_state = 583}, - [3573] = {.lex_state = 183}, - [3574] = {.lex_state = 583}, - [3575] = {.lex_state = 583}, - [3576] = {.lex_state = 583}, - [3577] = {.lex_state = 2}, - [3578] = {.lex_state = 183}, - [3579] = {.lex_state = 583}, - [3580] = {.lex_state = 2}, - [3581] = {.lex_state = 583}, - [3582] = {.lex_state = 583}, - [3583] = {.lex_state = 583}, - [3584] = {.lex_state = 583}, - [3585] = {.lex_state = 583}, - [3586] = {.lex_state = 583}, - [3587] = {.lex_state = 583}, - [3588] = {.lex_state = 583}, - [3589] = {.lex_state = 583}, - [3590] = {.lex_state = 583}, - [3591] = {.lex_state = 631}, - [3592] = {.lex_state = 583}, - [3593] = {.lex_state = 583}, - [3594] = {.lex_state = 583}, - [3595] = {.lex_state = 583}, - [3596] = {.lex_state = 583}, - [3597] = {.lex_state = 78}, - [3598] = {.lex_state = 583}, - [3599] = {.lex_state = 583}, - [3600] = {.lex_state = 583}, - [3601] = {.lex_state = 583}, - [3602] = {.lex_state = 583}, - [3603] = {.lex_state = 583}, - [3604] = {.lex_state = 583}, - [3605] = {.lex_state = 583}, - [3606] = {.lex_state = 583}, - [3607] = {.lex_state = 204}, - [3608] = {.lex_state = 122}, + [3533] = {.lex_state = 579}, + [3534] = {.lex_state = 2}, + [3535] = {.lex_state = 579}, + [3536] = {.lex_state = 579}, + [3537] = {.lex_state = 579}, + [3538] = {.lex_state = 579}, + [3539] = {.lex_state = 579}, + [3540] = {.lex_state = 579}, + [3541] = {.lex_state = 2}, + [3542] = {.lex_state = 579}, + [3543] = {.lex_state = 579}, + [3544] = {.lex_state = 579}, + [3545] = {.lex_state = 579}, + [3546] = {.lex_state = 181}, + [3547] = {.lex_state = 2}, + [3548] = {.lex_state = 2}, + [3549] = {.lex_state = 579}, + [3550] = {.lex_state = 579}, + [3551] = {.lex_state = 579}, + [3552] = {.lex_state = 2}, + [3553] = {.lex_state = 2}, + [3554] = {.lex_state = 579}, + [3555] = {.lex_state = 627}, + [3556] = {.lex_state = 579}, + [3557] = {.lex_state = 2}, + [3558] = {.lex_state = 579}, + [3559] = {.lex_state = 579}, + [3560] = {.lex_state = 579}, + [3561] = {.lex_state = 579}, + [3562] = {.lex_state = 579}, + [3563] = {.lex_state = 579}, + [3564] = {.lex_state = 579}, + [3565] = {.lex_state = 579}, + [3566] = {.lex_state = 579}, + [3567] = {.lex_state = 579}, + [3568] = {.lex_state = 579}, + [3569] = {.lex_state = 579}, + [3570] = {.lex_state = 579}, + [3571] = {.lex_state = 2}, + [3572] = {.lex_state = 579}, + [3573] = {.lex_state = 579}, + [3574] = {.lex_state = 579}, + [3575] = {.lex_state = 579}, + [3576] = {.lex_state = 2154}, + [3577] = {.lex_state = 579}, + [3578] = {.lex_state = 579}, + [3579] = {.lex_state = 579}, + [3580] = {.lex_state = 579}, + [3581] = {.lex_state = 579}, + [3582] = {.lex_state = 579}, + [3583] = {.lex_state = 579}, + [3584] = {.lex_state = 579}, + [3585] = {.lex_state = 579}, + [3586] = {.lex_state = 579}, + [3587] = {.lex_state = 579}, + [3588] = {.lex_state = 579}, + [3589] = {.lex_state = 579}, + [3590] = {.lex_state = 188}, + [3591] = {.lex_state = 627}, + [3592] = {.lex_state = 579}, + [3593] = {.lex_state = 579}, + [3594] = {.lex_state = 579}, + [3595] = {.lex_state = 579}, + [3596] = {.lex_state = 579}, + [3597] = {.lex_state = 579}, + [3598] = {.lex_state = 579}, + [3599] = {.lex_state = 579}, + [3600] = {.lex_state = 579}, + [3601] = {.lex_state = 579}, + [3602] = {.lex_state = 579}, + [3603] = {.lex_state = 579}, + [3604] = {.lex_state = 579}, + [3605] = {.lex_state = 128}, + [3606] = {.lex_state = 2}, + [3607] = {.lex_state = 2}, + [3608] = {.lex_state = 579}, [3609] = {.lex_state = 2}, - [3610] = {.lex_state = 187}, - [3611] = {.lex_state = 583}, - [3612] = {.lex_state = 128}, - [3613] = {.lex_state = 122}, - [3614] = {.lex_state = 2}, - [3615] = {.lex_state = 122}, - [3616] = {.lex_state = 93}, - [3617] = {.lex_state = 2}, + [3610] = {.lex_state = 2}, + [3611] = {.lex_state = 82}, + [3612] = {.lex_state = 81}, + [3613] = {.lex_state = 2}, + [3614] = {.lex_state = 614}, + [3615] = {.lex_state = 204}, + [3616] = {.lex_state = 203}, + [3617] = {.lex_state = 204}, [3618] = {.lex_state = 2}, - [3619] = {.lex_state = 618}, - [3620] = {.lex_state = 2}, - [3621] = {.lex_state = 618}, - [3622] = {.lex_state = 618}, - [3623] = {.lex_state = 128}, - [3624] = {.lex_state = 618}, - [3625] = {.lex_state = 233}, - [3626] = {.lex_state = 97}, - [3627] = {.lex_state = 2}, - [3628] = {.lex_state = 618}, - [3629] = {.lex_state = 587}, - [3630] = {.lex_state = 128}, - [3631] = {.lex_state = 128}, - [3632] = {.lex_state = 187}, - [3633] = {.lex_state = 195}, - [3634] = {.lex_state = 81}, - [3635] = {.lex_state = 583}, - [3636] = {.lex_state = 204}, - [3637] = {.lex_state = 203}, - [3638] = {.lex_state = 128}, - [3639] = {.lex_state = 128}, - [3640] = {.lex_state = 98}, - [3641] = {.lex_state = 82}, - [3642] = {.lex_state = 2}, - [3643] = {.lex_state = 203}, - [3644] = {.lex_state = 232}, - [3645] = {.lex_state = 188}, - [3646] = {.lex_state = 81}, - [3647] = {.lex_state = 122}, - [3648] = {.lex_state = 206}, - [3649] = {.lex_state = 2}, - [3650] = {.lex_state = 217}, - [3651] = {.lex_state = 98}, - [3652] = {.lex_state = 188}, - [3653] = {.lex_state = 1754, .external_lex_state = 2}, - [3654] = {.lex_state = 205}, - [3655] = {.lex_state = 197}, - [3656] = {.lex_state = 2098}, - [3657] = {.lex_state = 2098}, - [3658] = {.lex_state = 196}, - [3659] = {.lex_state = 2}, - [3660] = {.lex_state = 82}, - [3661] = {.lex_state = 100}, - [3662] = {.lex_state = 2098}, - [3663] = {.lex_state = 2202}, - [3664] = {.lex_state = 2157}, - [3665] = {.lex_state = 2098}, - [3666] = {.lex_state = 2098}, - [3667] = {.lex_state = 2098}, - [3668] = {.lex_state = 1754, .external_lex_state = 2}, - [3669] = {.lex_state = 218}, - [3670] = {.lex_state = 2098}, - [3671] = {.lex_state = 2098}, - [3672] = {.lex_state = 1754, .external_lex_state = 2}, - [3673] = {.lex_state = 2098}, - [3674] = {.lex_state = 2098}, - [3675] = {.lex_state = 1754, .external_lex_state = 2}, - [3676] = {.lex_state = 2098}, - [3677] = {.lex_state = 2098}, - [3678] = {.lex_state = 1754, .external_lex_state = 2}, - [3679] = {.lex_state = 2098}, - [3680] = {.lex_state = 2098}, - [3681] = {.lex_state = 1754, .external_lex_state = 2}, - [3682] = {.lex_state = 2098}, - [3683] = {.lex_state = 2098}, - [3684] = {.lex_state = 1754, .external_lex_state = 2}, - [3685] = {.lex_state = 2098}, - [3686] = {.lex_state = 2098}, - [3687] = {.lex_state = 1754, .external_lex_state = 2}, - [3688] = {.lex_state = 2098}, - [3689] = {.lex_state = 2098}, - [3690] = {.lex_state = 1754, .external_lex_state = 2}, - [3691] = {.lex_state = 1754, .external_lex_state = 2}, - [3692] = {.lex_state = 1754, .external_lex_state = 2}, - [3693] = {.lex_state = 1754, .external_lex_state = 2}, - [3694] = {.lex_state = 1754, .external_lex_state = 2}, - [3695] = {.lex_state = 1754, .external_lex_state = 2}, - [3696] = {.lex_state = 1754, .external_lex_state = 2}, - [3697] = {.lex_state = 1754, .external_lex_state = 2}, - [3698] = {.lex_state = 1754, .external_lex_state = 2}, - [3699] = {.lex_state = 219}, - [3700] = {.lex_state = 1754, .external_lex_state = 2}, - [3701] = {.lex_state = 218}, - [3702] = {.lex_state = 587}, - [3703] = {.lex_state = 79}, - [3704] = {.lex_state = 1754, .external_lex_state = 2}, - [3705] = {.lex_state = 100}, - [3706] = {.lex_state = 234}, - [3707] = {.lex_state = 100}, - [3708] = {.lex_state = 99}, - [3709] = {.lex_state = 234}, - [3710] = {.lex_state = 206}, - [3711] = {.lex_state = 100}, - [3712] = {.lex_state = 2098}, - [3713] = {.lex_state = 2098}, - [3714] = {.lex_state = 205}, - [3715] = {.lex_state = 205}, - [3716] = {.lex_state = 1754, .external_lex_state = 2}, - [3717] = {.lex_state = 208}, - [3718] = {.lex_state = 83}, - [3719] = {.lex_state = 2202}, - [3720] = {.lex_state = 94}, - [3721] = {.lex_state = 587}, - [3722] = {.lex_state = 2202}, - [3723] = {.lex_state = 99}, - [3724] = {.lex_state = 205}, - [3725] = {.lex_state = 587}, - [3726] = {.lex_state = 2098}, - [3727] = {.lex_state = 2098}, - [3728] = {.lex_state = 2157}, - [3729] = {.lex_state = 2157}, - [3730] = {.lex_state = 2157}, - [3731] = {.lex_state = 102}, - [3732] = {.lex_state = 128}, + [3619] = {.lex_state = 188}, + [3620] = {.lex_state = 614}, + [3621] = {.lex_state = 203}, + [3622] = {.lex_state = 614}, + [3623] = {.lex_state = 2}, + [3624] = {.lex_state = 579}, + [3625] = {.lex_state = 206}, + [3626] = {.lex_state = 614}, + [3627] = {.lex_state = 187}, + [3628] = {.lex_state = 187}, + [3629] = {.lex_state = 2}, + [3630] = {.lex_state = 217}, + [3631] = {.lex_state = 583}, + [3632] = {.lex_state = 128}, + [3633] = {.lex_state = 188}, + [3634] = {.lex_state = 122}, + [3635] = {.lex_state = 195}, + [3636] = {.lex_state = 122}, + [3637] = {.lex_state = 81}, + [3638] = {.lex_state = 122}, + [3639] = {.lex_state = 614}, + [3640] = {.lex_state = 233}, + [3641] = {.lex_state = 128}, + [3642] = {.lex_state = 98}, + [3643] = {.lex_state = 128}, + [3644] = {.lex_state = 93}, + [3645] = {.lex_state = 97}, + [3646] = {.lex_state = 98}, + [3647] = {.lex_state = 2}, + [3648] = {.lex_state = 579}, + [3649] = {.lex_state = 128}, + [3650] = {.lex_state = 128}, + [3651] = {.lex_state = 128}, + [3652] = {.lex_state = 2}, + [3653] = {.lex_state = 122}, + [3654] = {.lex_state = 2}, + [3655] = {.lex_state = 232}, + [3656] = {.lex_state = 2096}, + [3657] = {.lex_state = 205}, + [3658] = {.lex_state = 206}, + [3659] = {.lex_state = 2096}, + [3660] = {.lex_state = 2096}, + [3661] = {.lex_state = 1750, .external_lex_state = 2}, + [3662] = {.lex_state = 206}, + [3663] = {.lex_state = 82}, + [3664] = {.lex_state = 83}, + [3665] = {.lex_state = 2096}, + [3666] = {.lex_state = 2096}, + [3667] = {.lex_state = 1750, .external_lex_state = 2}, + [3668] = {.lex_state = 583}, + [3669] = {.lex_state = 583}, + [3670] = {.lex_state = 583}, + [3671] = {.lex_state = 2096}, + [3672] = {.lex_state = 2096}, + [3673] = {.lex_state = 1750, .external_lex_state = 2}, + [3674] = {.lex_state = 100}, + [3675] = {.lex_state = 100}, + [3676] = {.lex_state = 2096}, + [3677] = {.lex_state = 2096}, + [3678] = {.lex_state = 1750, .external_lex_state = 2}, + [3679] = {.lex_state = 2096}, + [3680] = {.lex_state = 2096}, + [3681] = {.lex_state = 1750, .external_lex_state = 2}, + [3682] = {.lex_state = 205}, + [3683] = {.lex_state = 2096}, + [3684] = {.lex_state = 2096}, + [3685] = {.lex_state = 1750, .external_lex_state = 2}, + [3686] = {.lex_state = 2096}, + [3687] = {.lex_state = 2096}, + [3688] = {.lex_state = 2096}, + [3689] = {.lex_state = 1750, .external_lex_state = 2}, + [3690] = {.lex_state = 2096}, + [3691] = {.lex_state = 2096}, + [3692] = {.lex_state = 1750, .external_lex_state = 2}, + [3693] = {.lex_state = 2096}, + [3694] = {.lex_state = 2096}, + [3695] = {.lex_state = 1750, .external_lex_state = 2}, + [3696] = {.lex_state = 100}, + [3697] = {.lex_state = 2096}, + [3698] = {.lex_state = 1750, .external_lex_state = 2}, + [3699] = {.lex_state = 2096}, + [3700] = {.lex_state = 2096}, + [3701] = {.lex_state = 1750, .external_lex_state = 2}, + [3702] = {.lex_state = 1750, .external_lex_state = 2}, + [3703] = {.lex_state = 1750, .external_lex_state = 2}, + [3704] = {.lex_state = 208}, + [3705] = {.lex_state = 1750, .external_lex_state = 2}, + [3706] = {.lex_state = 1750, .external_lex_state = 2}, + [3707] = {.lex_state = 1750, .external_lex_state = 2}, + [3708] = {.lex_state = 1750, .external_lex_state = 2}, + [3709] = {.lex_state = 1750, .external_lex_state = 2}, + [3710] = {.lex_state = 2096}, + [3711] = {.lex_state = 2155}, + [3712] = {.lex_state = 2155}, + [3713] = {.lex_state = 205}, + [3714] = {.lex_state = 1750, .external_lex_state = 2}, + [3715] = {.lex_state = 1750, .external_lex_state = 2}, + [3716] = {.lex_state = 234}, + [3717] = {.lex_state = 583}, + [3718] = {.lex_state = 197}, + [3719] = {.lex_state = 196}, + [3720] = {.lex_state = 2200}, + [3721] = {.lex_state = 218}, + [3722] = {.lex_state = 2096}, + [3723] = {.lex_state = 2200}, + [3724] = {.lex_state = 102}, + [3725] = {.lex_state = 94}, + [3726] = {.lex_state = 2096}, + [3727] = {.lex_state = 82}, + [3728] = {.lex_state = 2}, + [3729] = {.lex_state = 2096}, + [3730] = {.lex_state = 2096}, + [3731] = {.lex_state = 99}, + [3732] = {.lex_state = 1750, .external_lex_state = 2}, [3733] = {.lex_state = 206}, - [3734] = {.lex_state = 82}, - [3735] = {.lex_state = 2098}, - [3736] = {.lex_state = 2098}, - [3737] = {.lex_state = 1754, .external_lex_state = 2}, - [3738] = {.lex_state = 1754, .external_lex_state = 2}, - [3739] = {.lex_state = 2202}, - [3740] = {.lex_state = 587}, + [3734] = {.lex_state = 99}, + [3735] = {.lex_state = 234}, + [3736] = {.lex_state = 2155}, + [3737] = {.lex_state = 218}, + [3738] = {.lex_state = 100}, + [3739] = {.lex_state = 128}, + [3740] = {.lex_state = 205}, [3741] = {.lex_state = 207}, - [3742] = {.lex_state = 2098}, - [3743] = {.lex_state = 2098}, - [3744] = {.lex_state = 206}, - [3745] = {.lex_state = 82}, - [3746] = {.lex_state = 587}, - [3747] = {.lex_state = 587}, - [3748] = {.lex_state = 219}, - [3749] = {.lex_state = 587}, - [3750] = {.lex_state = 211}, - [3751] = {.lex_state = 587}, - [3752] = {.lex_state = 101}, - [3753] = {.lex_state = 635}, - [3754] = {.lex_state = 587}, - [3755] = {.lex_state = 235}, - [3756] = {.lex_state = 587}, - [3757] = {.lex_state = 587}, - [3758] = {.lex_state = 587}, - [3759] = {.lex_state = 587}, - [3760] = {.lex_state = 587}, - [3761] = {.lex_state = 587}, - [3762] = {.lex_state = 587}, - [3763] = {.lex_state = 587}, - [3764] = {.lex_state = 101}, - [3765] = {.lex_state = 90}, - [3766] = {.lex_state = 587}, - [3767] = {.lex_state = 129}, - [3768] = {.lex_state = 587}, - [3769] = {.lex_state = 587}, - [3770] = {.lex_state = 206}, - [3771] = {.lex_state = 587}, - [3772] = {.lex_state = 587}, - [3773] = {.lex_state = 587}, - [3774] = {.lex_state = 587}, - [3775] = {.lex_state = 219}, - [3776] = {.lex_state = 101}, - [3777] = {.lex_state = 587}, - [3778] = {.lex_state = 587}, - [3779] = {.lex_state = 587}, - [3780] = {.lex_state = 129}, - [3781] = {.lex_state = 587}, - [3782] = {.lex_state = 104}, - [3783] = {.lex_state = 129}, - [3784] = {.lex_state = 587}, - [3785] = {.lex_state = 209}, - [3786] = {.lex_state = 246}, - [3787] = {.lex_state = 587}, - [3788] = {.lex_state = 235}, - [3789] = {.lex_state = 587}, - [3790] = {.lex_state = 587}, - [3791] = {.lex_state = 635}, - [3792] = {.lex_state = 587}, - [3793] = {.lex_state = 587}, - [3794] = {.lex_state = 587}, - [3795] = {.lex_state = 587}, - [3796] = {.lex_state = 235}, - [3797] = {.lex_state = 209}, - [3798] = {.lex_state = 587}, - [3799] = {.lex_state = 587}, - [3800] = {.lex_state = 95}, - [3801] = {.lex_state = 129}, - [3802] = {.lex_state = 587}, - [3803] = {.lex_state = 587}, - [3804] = {.lex_state = 587}, - [3805] = {.lex_state = 219}, - [3806] = {.lex_state = 587}, - [3807] = {.lex_state = 220}, - [3808] = {.lex_state = 240}, - [3809] = {.lex_state = 129}, - [3810] = {.lex_state = 101}, + [3742] = {.lex_state = 2155}, + [3743] = {.lex_state = 82}, + [3744] = {.lex_state = 2200}, + [3745] = {.lex_state = 2200}, + [3746] = {.lex_state = 219}, + [3747] = {.lex_state = 79}, + [3748] = {.lex_state = 1750, .external_lex_state = 2}, + [3749] = {.lex_state = 235}, + [3750] = {.lex_state = 583}, + [3751] = {.lex_state = 583}, + [3752] = {.lex_state = 211}, + [3753] = {.lex_state = 583}, + [3754] = {.lex_state = 583}, + [3755] = {.lex_state = 583}, + [3756] = {.lex_state = 583}, + [3757] = {.lex_state = 583}, + [3758] = {.lex_state = 583}, + [3759] = {.lex_state = 583}, + [3760] = {.lex_state = 583}, + [3761] = {.lex_state = 583}, + [3762] = {.lex_state = 90}, + [3763] = {.lex_state = 583}, + [3764] = {.lex_state = 240}, + [3765] = {.lex_state = 583}, + [3766] = {.lex_state = 583}, + [3767] = {.lex_state = 583}, + [3768] = {.lex_state = 129}, + [3769] = {.lex_state = 101}, + [3770] = {.lex_state = 583}, + [3771] = {.lex_state = 103}, + [3772] = {.lex_state = 583}, + [3773] = {.lex_state = 104}, + [3774] = {.lex_state = 583}, + [3775] = {.lex_state = 583}, + [3776] = {.lex_state = 129}, + [3777] = {.lex_state = 583}, + [3778] = {.lex_state = 583}, + [3779] = {.lex_state = 583}, + [3780] = {.lex_state = 220}, + [3781] = {.lex_state = 129}, + [3782] = {.lex_state = 209}, + [3783] = {.lex_state = 631}, + [3784] = {.lex_state = 583}, + [3785] = {.lex_state = 583}, + [3786] = {.lex_state = 219}, + [3787] = {.lex_state = 104}, + [3788] = {.lex_state = 583}, + [3789] = {.lex_state = 206}, + [3790] = {.lex_state = 129}, + [3791] = {.lex_state = 583}, + [3792] = {.lex_state = 198}, + [3793] = {.lex_state = 129}, + [3794] = {.lex_state = 583}, + [3795] = {.lex_state = 583}, + [3796] = {.lex_state = 583}, + [3797] = {.lex_state = 90}, + [3798] = {.lex_state = 583}, + [3799] = {.lex_state = 583}, + [3800] = {.lex_state = 235}, + [3801] = {.lex_state = 583}, + [3802] = {.lex_state = 583}, + [3803] = {.lex_state = 95}, + [3804] = {.lex_state = 631}, + [3805] = {.lex_state = 84}, + [3806] = {.lex_state = 209}, + [3807] = {.lex_state = 583}, + [3808] = {.lex_state = 101}, + [3809] = {.lex_state = 211}, + [3810] = {.lex_state = 583}, [3811] = {.lex_state = 235}, - [3812] = {.lex_state = 587}, - [3813] = {.lex_state = 129}, - [3814] = {.lex_state = 587}, - [3815] = {.lex_state = 84}, - [3816] = {.lex_state = 587}, - [3817] = {.lex_state = 211}, - [3818] = {.lex_state = 587}, - [3819] = {.lex_state = 587}, - [3820] = {.lex_state = 90}, - [3821] = {.lex_state = 103}, - [3822] = {.lex_state = 82}, - [3823] = {.lex_state = 104}, - [3824] = {.lex_state = 90}, - [3825] = {.lex_state = 198}, - [3826] = {.lex_state = 84}, - [3827] = {.lex_state = 105}, - [3828] = {.lex_state = 210}, - [3829] = {.lex_state = 258}, - [3830] = {.lex_state = 584}, - [3831] = {.lex_state = 244}, + [3812] = {.lex_state = 101}, + [3813] = {.lex_state = 101}, + [3814] = {.lex_state = 583}, + [3815] = {.lex_state = 246}, + [3816] = {.lex_state = 219}, + [3817] = {.lex_state = 82}, + [3818] = {.lex_state = 583}, + [3819] = {.lex_state = 583}, + [3820] = {.lex_state = 235}, + [3821] = {.lex_state = 129}, + [3822] = {.lex_state = 90}, + [3823] = {.lex_state = 583}, + [3824] = {.lex_state = 583}, + [3825] = {.lex_state = 84}, + [3826] = {.lex_state = 583}, + [3827] = {.lex_state = 583}, + [3828] = {.lex_state = 219}, + [3829] = {.lex_state = 583}, + [3830] = {.lex_state = 244}, + [3831] = {.lex_state = 105}, [3832] = {.lex_state = 244}, - [3833] = {.lex_state = 105}, - [3834] = {.lex_state = 105}, - [3835] = {.lex_state = 85}, + [3833] = {.lex_state = 212}, + [3834] = {.lex_state = 85}, + [3835] = {.lex_state = 212}, [3836] = {.lex_state = 210}, - [3837] = {.lex_state = 244}, + [3837] = {.lex_state = 127}, [3838] = {.lex_state = 244}, - [3839] = {.lex_state = 244}, - [3840] = {.lex_state = 106}, - [3841] = {.lex_state = 247}, - [3842] = {.lex_state = 244}, - [3843] = {.lex_state = 127}, + [3839] = {.lex_state = 580}, + [3840] = {.lex_state = 247}, + [3841] = {.lex_state = 129}, + [3842] = {.lex_state = 105}, + [3843] = {.lex_state = 85}, [3844] = {.lex_state = 244}, - [3845] = {.lex_state = 105}, - [3846] = {.lex_state = 247}, - [3847] = {.lex_state = 85}, + [3845] = {.lex_state = 244}, + [3846] = {.lex_state = 85}, + [3847] = {.lex_state = 244}, [3848] = {.lex_state = 244}, - [3849] = {.lex_state = 2}, - [3850] = {.lex_state = 106}, - [3851] = {.lex_state = 276}, - [3852] = {.lex_state = 244}, - [3853] = {.lex_state = 244}, - [3854] = {.lex_state = 244}, - [3855] = {.lex_state = 129}, - [3856] = {.lex_state = 129}, + [3849] = {.lex_state = 244}, + [3850] = {.lex_state = 276}, + [3851] = {.lex_state = 212}, + [3852] = {.lex_state = 241}, + [3853] = {.lex_state = 85}, + [3854] = {.lex_state = 258}, + [3855] = {.lex_state = 105}, + [3856] = {.lex_state = 127}, [3857] = {.lex_state = 85}, - [3858] = {.lex_state = 244}, - [3859] = {.lex_state = 212}, - [3860] = {.lex_state = 212}, - [3861] = {.lex_state = 85}, - [3862] = {.lex_state = 244}, - [3863] = {.lex_state = 212}, - [3864] = {.lex_state = 127}, - [3865] = {.lex_state = 212}, - [3866] = {.lex_state = 221}, - [3867] = {.lex_state = 584}, - [3868] = {.lex_state = 105}, - [3869] = {.lex_state = 210}, - [3870] = {.lex_state = 241}, + [3858] = {.lex_state = 106}, + [3859] = {.lex_state = 244}, + [3860] = {.lex_state = 2}, + [3861] = {.lex_state = 244}, + [3862] = {.lex_state = 221}, + [3863] = {.lex_state = 247}, + [3864] = {.lex_state = 244}, + [3865] = {.lex_state = 244}, + [3866] = {.lex_state = 105}, + [3867] = {.lex_state = 580}, + [3868] = {.lex_state = 210}, + [3869] = {.lex_state = 106}, + [3870] = {.lex_state = 212}, [3871] = {.lex_state = 212}, - [3872] = {.lex_state = 85}, - [3873] = {.lex_state = 221}, - [3874] = {.lex_state = 256}, - [3875] = {.lex_state = 216}, - [3876] = {.lex_state = 127}, - [3877] = {.lex_state = 107}, - [3878] = {.lex_state = 107}, - [3879] = {.lex_state = 107}, - [3880] = {.lex_state = 584}, - [3881] = {.lex_state = 584}, - [3882] = {.lex_state = 222}, + [3872] = {.lex_state = 244}, + [3873] = {.lex_state = 105}, + [3874] = {.lex_state = 129}, + [3875] = {.lex_state = 221}, + [3876] = {.lex_state = 210}, + [3877] = {.lex_state = 259}, + [3878] = {.lex_state = 33}, + [3879] = {.lex_state = 248}, + [3880] = {.lex_state = 213}, + [3881] = {.lex_state = 275}, + [3882] = {.lex_state = 275}, [3883] = {.lex_state = 276}, - [3884] = {.lex_state = 122}, - [3885] = {.lex_state = 122}, - [3886] = {.lex_state = 222}, - [3887] = {.lex_state = 33}, - [3888] = {.lex_state = 122}, - [3889] = {.lex_state = 33}, - [3890] = {.lex_state = 47}, - [3891] = {.lex_state = 47}, - [3892] = {.lex_state = 122}, - [3893] = {.lex_state = 128}, - [3894] = {.lex_state = 129}, - [3895] = {.lex_state = 248}, - [3896] = {.lex_state = 115}, - [3897] = {.lex_state = 245}, - [3898] = {.lex_state = 47}, - [3899] = {.lex_state = 47}, - [3900] = {.lex_state = 275}, - [3901] = {.lex_state = 47}, - [3902] = {.lex_state = 210}, - [3903] = {.lex_state = 275}, - [3904] = {.lex_state = 275}, - [3905] = {.lex_state = 47}, - [3906] = {.lex_state = 249}, - [3907] = {.lex_state = 47}, - [3908] = {.lex_state = 129}, - [3909] = {.lex_state = 129}, - [3910] = {.lex_state = 87}, - [3911] = {.lex_state = 276}, - [3912] = {.lex_state = 90}, - [3913] = {.lex_state = 33}, - [3914] = {.lex_state = 129}, + [3884] = {.lex_state = 47}, + [3885] = {.lex_state = 47}, + [3886] = {.lex_state = 33}, + [3887] = {.lex_state = 127}, + [3888] = {.lex_state = 276}, + [3889] = {.lex_state = 222}, + [3890] = {.lex_state = 33}, + [3891] = {.lex_state = 33}, + [3892] = {.lex_state = 47}, + [3893] = {.lex_state = 33}, + [3894] = {.lex_state = 127}, + [3895] = {.lex_state = 129}, + [3896] = {.lex_state = 33}, + [3897] = {.lex_state = 47}, + [3898] = {.lex_state = 122}, + [3899] = {.lex_state = 107}, + [3900] = {.lex_state = 90}, + [3901] = {.lex_state = 205}, + [3902] = {.lex_state = 122}, + [3903] = {.lex_state = 122}, + [3904] = {.lex_state = 222}, + [3905] = {.lex_state = 129}, + [3906] = {.lex_state = 122}, + [3907] = {.lex_state = 248}, + [3908] = {.lex_state = 107}, + [3909] = {.lex_state = 242}, + [3910] = {.lex_state = 47}, + [3911] = {.lex_state = 122}, + [3912] = {.lex_state = 248}, + [3913] = {.lex_state = 222}, + [3914] = {.lex_state = 115}, [3915] = {.lex_state = 47}, - [3916] = {.lex_state = 210}, - [3917] = {.lex_state = 107}, - [3918] = {.lex_state = 47}, - [3919] = {.lex_state = 129}, - [3920] = {.lex_state = 129}, - [3921] = {.lex_state = 107}, - [3922] = {.lex_state = 90}, - [3923] = {.lex_state = 205}, - [3924] = {.lex_state = 129}, - [3925] = {.lex_state = 129}, + [3916] = {.lex_state = 245}, + [3917] = {.lex_state = 47}, + [3918] = {.lex_state = 210}, + [3919] = {.lex_state = 33}, + [3920] = {.lex_state = 47}, + [3921] = {.lex_state = 47}, + [3922] = {.lex_state = 47}, + [3923] = {.lex_state = 129}, + [3924] = {.lex_state = 47}, + [3925] = {.lex_state = 47}, [3926] = {.lex_state = 47}, - [3927] = {.lex_state = 122}, - [3928] = {.lex_state = 108}, - [3929] = {.lex_state = 33}, - [3930] = {.lex_state = 276}, - [3931] = {.lex_state = 33}, - [3932] = {.lex_state = 33}, - [3933] = {.lex_state = 90}, - [3934] = {.lex_state = 33}, - [3935] = {.lex_state = 127}, - [3936] = {.lex_state = 90}, - [3937] = {.lex_state = 33}, + [3927] = {.lex_state = 248}, + [3928] = {.lex_state = 47}, + [3929] = {.lex_state = 276}, + [3930] = {.lex_state = 90}, + [3931] = {.lex_state = 47}, + [3932] = {.lex_state = 107}, + [3933] = {.lex_state = 33}, + [3934] = {.lex_state = 47}, + [3935] = {.lex_state = 47}, + [3936] = {.lex_state = 222}, + [3937] = {.lex_state = 580}, [3938] = {.lex_state = 122}, - [3939] = {.lex_state = 242}, - [3940] = {.lex_state = 222}, - [3941] = {.lex_state = 122}, - [3942] = {.lex_state = 33}, - [3943] = {.lex_state = 222}, - [3944] = {.lex_state = 47}, - [3945] = {.lex_state = 222}, - [3946] = {.lex_state = 248}, - [3947] = {.lex_state = 86}, - [3948] = {.lex_state = 248}, - [3949] = {.lex_state = 47}, - [3950] = {.lex_state = 33}, - [3951] = {.lex_state = 47}, + [3939] = {.lex_state = 122}, + [3940] = {.lex_state = 580}, + [3941] = {.lex_state = 580}, + [3942] = {.lex_state = 580}, + [3943] = {.lex_state = 259}, + [3944] = {.lex_state = 256}, + [3945] = {.lex_state = 47}, + [3946] = {.lex_state = 47}, + [3947] = {.lex_state = 107}, + [3948] = {.lex_state = 90}, + [3949] = {.lex_state = 222}, + [3950] = {.lex_state = 107}, + [3951] = {.lex_state = 129}, [3952] = {.lex_state = 47}, - [3953] = {.lex_state = 47}, - [3954] = {.lex_state = 47}, - [3955] = {.lex_state = 47}, - [3956] = {.lex_state = 47}, - [3957] = {.lex_state = 47}, + [3953] = {.lex_state = 122}, + [3954] = {.lex_state = 122}, + [3955] = {.lex_state = 33}, + [3956] = {.lex_state = 129}, + [3957] = {.lex_state = 129}, [3958] = {.lex_state = 47}, - [3959] = {.lex_state = 47}, - [3960] = {.lex_state = 47}, - [3961] = {.lex_state = 47}, - [3962] = {.lex_state = 122}, - [3963] = {.lex_state = 584}, - [3964] = {.lex_state = 47}, + [3959] = {.lex_state = 33}, + [3960] = {.lex_state = 129}, + [3961] = {.lex_state = 580}, + [3962] = {.lex_state = 33}, + [3963] = {.lex_state = 108}, + [3964] = {.lex_state = 216}, [3965] = {.lex_state = 122}, - [3966] = {.lex_state = 584}, - [3967] = {.lex_state = 584}, - [3968] = {.lex_state = 584}, - [3969] = {.lex_state = 276}, + [3966] = {.lex_state = 580}, + [3967] = {.lex_state = 127}, + [3968] = {.lex_state = 90}, + [3969] = {.lex_state = 86}, [3970] = {.lex_state = 122}, - [3971] = {.lex_state = 127}, - [3972] = {.lex_state = 122}, - [3973] = {.lex_state = 33}, - [3974] = {.lex_state = 213}, + [3971] = {.lex_state = 122}, + [3972] = {.lex_state = 47}, + [3973] = {.lex_state = 249}, + [3974] = {.lex_state = 122}, [3975] = {.lex_state = 122}, - [3976] = {.lex_state = 122}, - [3977] = {.lex_state = 248}, - [3978] = {.lex_state = 259}, - [3979] = {.lex_state = 259}, + [3976] = {.lex_state = 276}, + [3977] = {.lex_state = 87}, + [3978] = {.lex_state = 129}, + [3979] = {.lex_state = 276}, [3980] = {.lex_state = 276}, - [3981] = {.lex_state = 276}, - [3982] = {.lex_state = 122}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 180}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 0}, + [3981] = {.lex_state = 210}, + [3982] = {.lex_state = 193}, + [3983] = {.lex_state = 275}, + [3984] = {.lex_state = 47}, + [3985] = {.lex_state = 47}, + [3986] = {.lex_state = 33}, + [3987] = {.lex_state = 641}, + [3988] = {.lex_state = 180}, + [3989] = {.lex_state = 275}, [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 645}, - [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 0}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, + [3991] = {.lex_state = 122}, + [3992] = {.lex_state = 90}, + [3993] = {.lex_state = 127}, + [3994] = {.lex_state = 641}, + [3995] = {.lex_state = 199}, + [3996] = {.lex_state = 108}, + [3997] = {.lex_state = 2097}, + [3998] = {.lex_state = 214}, + [3999] = {.lex_state = 641}, + [4000] = {.lex_state = 122}, + [4001] = {.lex_state = 122}, + [4002] = {.lex_state = 2097}, + [4003] = {.lex_state = 188}, + [4004] = {.lex_state = 127}, + [4005] = {.lex_state = 127}, [4006] = {.lex_state = 0}, - [4007] = {.lex_state = 0}, + [4007] = {.lex_state = 33}, [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, + [4009] = {.lex_state = 257}, [4010] = {.lex_state = 0}, [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, [4013] = {.lex_state = 0}, [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 122}, - [4016] = {.lex_state = 108}, - [4017] = {.lex_state = 584}, - [4018] = {.lex_state = 122}, - [4019] = {.lex_state = 645}, - [4020] = {.lex_state = 237}, - [4021] = {.lex_state = 122}, - [4022] = {.lex_state = 188}, - [4023] = {.lex_state = 33}, - [4024] = {.lex_state = 117}, - [4025] = {.lex_state = 122}, - [4026] = {.lex_state = 275}, - [4027] = {.lex_state = 250}, - [4028] = {.lex_state = 117}, - [4029] = {.lex_state = 127}, - [4030] = {.lex_state = 275}, - [4031] = {.lex_state = 584}, - [4032] = {.lex_state = 127}, - [4033] = {.lex_state = 127}, - [4034] = {.lex_state = 33}, - [4035] = {.lex_state = 116}, - [4036] = {.lex_state = 255}, - [4037] = {.lex_state = 33}, - [4038] = {.lex_state = 33}, - [4039] = {.lex_state = 257}, - [4040] = {.lex_state = 33}, - [4041] = {.lex_state = 275}, - [4042] = {.lex_state = 33}, - [4043] = {.lex_state = 127}, - [4044] = {.lex_state = 127}, - [4045] = {.lex_state = 127}, + [4015] = {.lex_state = 0}, + [4016] = {.lex_state = 0}, + [4017] = {.lex_state = 188}, + [4018] = {.lex_state = 0}, + [4019] = {.lex_state = 0}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 2097}, + [4022] = {.lex_state = 180}, + [4023] = {.lex_state = 122}, + [4024] = {.lex_state = 180}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 127}, + [4027] = {.lex_state = 0}, + [4028] = {.lex_state = 122}, + [4029] = {.lex_state = 122}, + [4030] = {.lex_state = 180}, + [4031] = {.lex_state = 127}, + [4032] = {.lex_state = 90}, + [4033] = {.lex_state = 0}, + [4034] = {.lex_state = 275}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 122}, + [4037] = {.lex_state = 128}, + [4038] = {.lex_state = 180}, + [4039] = {.lex_state = 180}, + [4040] = {.lex_state = 127}, + [4041] = {.lex_state = 261}, + [4042] = {.lex_state = 122}, + [4043] = {.lex_state = 0}, + [4044] = {.lex_state = 0}, + [4045] = {.lex_state = 641}, [4046] = {.lex_state = 275}, - [4047] = {.lex_state = 668}, - [4048] = {.lex_state = 645}, - [4049] = {.lex_state = 88}, - [4050] = {.lex_state = 257}, - [4051] = {.lex_state = 128}, - [4052] = {.lex_state = 128}, - [4053] = {.lex_state = 128}, - [4054] = {.lex_state = 180}, - [4055] = {.lex_state = 2099}, - [4056] = {.lex_state = 2099}, - [4057] = {.lex_state = 180}, - [4058] = {.lex_state = 88}, - [4059] = {.lex_state = 33}, + [4047] = {.lex_state = 2201}, + [4048] = {.lex_state = 275}, + [4049] = {.lex_state = 122}, + [4050] = {.lex_state = 0}, + [4051] = {.lex_state = 0}, + [4052] = {.lex_state = 226}, + [4053] = {.lex_state = 0}, + [4054] = {.lex_state = 260}, + [4055] = {.lex_state = 0}, + [4056] = {.lex_state = 2097}, + [4057] = {.lex_state = 0}, + [4058] = {.lex_state = 2097}, + [4059] = {.lex_state = 248}, [4060] = {.lex_state = 33}, - [4061] = {.lex_state = 122}, - [4062] = {.lex_state = 275}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 90}, - [4065] = {.lex_state = 122}, - [4066] = {.lex_state = 122}, + [4061] = {.lex_state = 275}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 641}, + [4064] = {.lex_state = 180}, + [4065] = {.lex_state = 250}, + [4066] = {.lex_state = 275}, [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 128}, - [4070] = {.lex_state = 250}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 129}, - [4073] = {.lex_state = 0}, + [4068] = {.lex_state = 223}, + [4069] = {.lex_state = 243}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 122}, + [4072] = {.lex_state = 250}, + [4073] = {.lex_state = 275}, [4074] = {.lex_state = 275}, - [4075] = {.lex_state = 188}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 0}, + [4075] = {.lex_state = 180}, + [4076] = {.lex_state = 88}, + [4077] = {.lex_state = 275}, + [4078] = {.lex_state = 33}, [4079] = {.lex_state = 0}, - [4080] = {.lex_state = 255}, + [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 0}, + [4082] = {.lex_state = 33}, [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 0}, + [4084] = {.lex_state = 260}, [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 33}, - [4087] = {.lex_state = 33}, - [4088] = {.lex_state = 275}, - [4089] = {.lex_state = 122}, + [4086] = {.lex_state = 112}, + [4087] = {.lex_state = 180}, + [4088] = {.lex_state = 0}, + [4089] = {.lex_state = 0}, [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 0}, - [4092] = {.lex_state = 248}, - [4093] = {.lex_state = 180}, - [4094] = {.lex_state = 223}, - [4095] = {.lex_state = 2099}, - [4096] = {.lex_state = 2099}, - [4097] = {.lex_state = 0}, - [4098] = {.lex_state = 90}, - [4099] = {.lex_state = 180}, - [4100] = {.lex_state = 180}, - [4101] = {.lex_state = 2099}, - [4102] = {.lex_state = 2099}, + [4091] = {.lex_state = 122}, + [4092] = {.lex_state = 0}, + [4093] = {.lex_state = 0}, + [4094] = {.lex_state = 122}, + [4095] = {.lex_state = 122}, + [4096] = {.lex_state = 122}, + [4097] = {.lex_state = 255}, + [4098] = {.lex_state = 0}, + [4099] = {.lex_state = 33}, + [4100] = {.lex_state = 260}, + [4101] = {.lex_state = 116}, + [4102] = {.lex_state = 200}, [4103] = {.lex_state = 0}, [4104] = {.lex_state = 180}, - [4105] = {.lex_state = 129}, - [4106] = {.lex_state = 180}, - [4107] = {.lex_state = 2099}, - [4108] = {.lex_state = 2099}, - [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 180}, + [4105] = {.lex_state = 255}, + [4106] = {.lex_state = 641}, + [4107] = {.lex_state = 275}, + [4108] = {.lex_state = 275}, + [4109] = {.lex_state = 275}, + [4110] = {.lex_state = 260}, [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 0}, + [4112] = {.lex_state = 180}, + [4113] = {.lex_state = 129}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 180}, - [4116] = {.lex_state = 645}, - [4117] = {.lex_state = 645}, - [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 180}, - [4120] = {.lex_state = 33}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 180}, + [4116] = {.lex_state = 0}, + [4117] = {.lex_state = 0}, + [4118] = {.lex_state = 128}, + [4119] = {.lex_state = 0}, + [4120] = {.lex_state = 0}, + [4121] = {.lex_state = 33}, + [4122] = {.lex_state = 248}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 122}, - [4125] = {.lex_state = 180}, - [4126] = {.lex_state = 243}, - [4127] = {.lex_state = 645}, - [4128] = {.lex_state = 122}, - [4129] = {.lex_state = 180}, - [4130] = {.lex_state = 180}, - [4131] = {.lex_state = 261}, - [4132] = {.lex_state = 180}, - [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 109}, - [4137] = {.lex_state = 127}, - [4138] = {.lex_state = 199}, - [4139] = {.lex_state = 226}, + [4124] = {.lex_state = 180}, + [4125] = {.lex_state = 128}, + [4126] = {.lex_state = 180}, + [4127] = {.lex_state = 33}, + [4128] = {.lex_state = 0}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 2097}, + [4131] = {.lex_state = 2097}, + [4132] = {.lex_state = 33}, + [4133] = {.lex_state = 180}, + [4134] = {.lex_state = 122}, + [4135] = {.lex_state = 580}, + [4136] = {.lex_state = 128}, + [4137] = {.lex_state = 0}, + [4138] = {.lex_state = 0}, + [4139] = {.lex_state = 0}, [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 0}, + [4141] = {.lex_state = 275}, + [4142] = {.lex_state = 180}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 275}, - [4145] = {.lex_state = 275}, - [4146] = {.lex_state = 0}, - [4147] = {.lex_state = 275}, - [4148] = {.lex_state = 112}, - [4149] = {.lex_state = 0}, - [4150] = {.lex_state = 0}, + [4144] = {.lex_state = 0}, + [4145] = {.lex_state = 33}, + [4146] = {.lex_state = 117}, + [4147] = {.lex_state = 2097}, + [4148] = {.lex_state = 122}, + [4149] = {.lex_state = 127}, + [4150] = {.lex_state = 33}, [4151] = {.lex_state = 0}, - [4152] = {.lex_state = 2099}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 127}, - [4157] = {.lex_state = 2203}, - [4158] = {.lex_state = 2203}, - [4159] = {.lex_state = 180}, - [4160] = {.lex_state = 180}, + [4152] = {.lex_state = 275}, + [4153] = {.lex_state = 275}, + [4154] = {.lex_state = 275}, + [4155] = {.lex_state = 180}, + [4156] = {.lex_state = 0}, + [4157] = {.lex_state = 257}, + [4158] = {.lex_state = 129}, + [4159] = {.lex_state = 0}, + [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 2099}, + [4162] = {.lex_state = 237}, [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 260}, - [4166] = {.lex_state = 122}, - [4167] = {.lex_state = 122}, - [4168] = {.lex_state = 122}, - [4169] = {.lex_state = 122}, - [4170] = {.lex_state = 2099}, - [4171] = {.lex_state = 33}, - [4172] = {.lex_state = 275}, - [4173] = {.lex_state = 275}, - [4174] = {.lex_state = 275}, - [4175] = {.lex_state = 2099}, - [4176] = {.lex_state = 248}, + [4164] = {.lex_state = 122}, + [4165] = {.lex_state = 275}, + [4166] = {.lex_state = 275}, + [4167] = {.lex_state = 275}, + [4168] = {.lex_state = 0}, + [4169] = {.lex_state = 0}, + [4170] = {.lex_state = 214}, + [4171] = {.lex_state = 2097}, + [4172] = {.lex_state = 0}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 0}, + [4175] = {.lex_state = 33}, + [4176] = {.lex_state = 580}, [4177] = {.lex_state = 122}, - [4178] = {.lex_state = 214}, - [4179] = {.lex_state = 122}, - [4180] = {.lex_state = 214}, - [4181] = {.lex_state = 200}, - [4182] = {.lex_state = 180}, - [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 275}, - [4185] = {.lex_state = 275}, - [4186] = {.lex_state = 275}, - [4187] = {.lex_state = 275}, - [4188] = {.lex_state = 275}, - [4189] = {.lex_state = 275}, - [4190] = {.lex_state = 260}, - [4191] = {.lex_state = 260}, - [4192] = {.lex_state = 260}, - [4193] = {.lex_state = 122}, + [4178] = {.lex_state = 109}, + [4179] = {.lex_state = 2201}, + [4180] = {.lex_state = 0}, + [4181] = {.lex_state = 0}, + [4182] = {.lex_state = 127}, + [4183] = {.lex_state = 90}, + [4184] = {.lex_state = 180}, + [4185] = {.lex_state = 180}, + [4186] = {.lex_state = 0}, + [4187] = {.lex_state = 0}, + [4188] = {.lex_state = 117}, + [4189] = {.lex_state = 88}, + [4190] = {.lex_state = 0}, + [4191] = {.lex_state = 0}, + [4192] = {.lex_state = 2097}, + [4193] = {.lex_state = 2097}, [4194] = {.lex_state = 122}, - [4195] = {.lex_state = 90}, - [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 122}, + [4195] = {.lex_state = 2097}, + [4196] = {.lex_state = 122}, + [4197] = {.lex_state = 664}, [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 122}, - [4200] = {.lex_state = 178}, - [4201] = {.lex_state = 188}, - [4202] = {.lex_state = 147}, - [4203] = {.lex_state = 277}, - [4204] = {.lex_state = 89}, - [4205] = {.lex_state = 178}, - [4206] = {.lex_state = 277}, - [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 277}, - [4209] = {.lex_state = 630}, - [4210] = {.lex_state = 122}, - [4211] = {.lex_state = 118}, - [4212] = {.lex_state = 224}, - [4213] = {.lex_state = 158}, - [4214] = {.lex_state = 122}, - [4215] = {.lex_state = 178}, - [4216] = {.lex_state = 277}, - [4217] = {.lex_state = 277}, - [4218] = {.lex_state = 90}, - [4219] = {.lex_state = 90}, - [4220] = {.lex_state = 275}, - [4221] = {.lex_state = 199}, - [4222] = {.lex_state = 277}, - [4223] = {.lex_state = 89}, - [4224] = {.lex_state = 89}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 178}, - [4227] = {.lex_state = 277}, - [4228] = {.lex_state = 33}, - [4229] = {.lex_state = 661}, - [4230] = {.lex_state = 215}, - [4231] = {.lex_state = 277}, - [4232] = {.lex_state = 275}, - [4233] = {.lex_state = 119}, - [4234] = {.lex_state = 89}, - [4235] = {.lex_state = 129}, - [4236] = {.lex_state = 33}, - [4237] = {.lex_state = 178}, - [4238] = {.lex_state = 277}, - [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 124}, - [4241] = {.lex_state = 118}, - [4242] = {.lex_state = 122}, - [4243] = {.lex_state = 277}, - [4244] = {.lex_state = 124}, - [4245] = {.lex_state = 89}, - [4246] = {.lex_state = 122}, - [4247] = {.lex_state = 178}, - [4248] = {.lex_state = 118}, - [4249] = {.lex_state = 127}, - [4250] = {.lex_state = 158}, - [4251] = {.lex_state = 587}, - [4252] = {.lex_state = 178}, - [4253] = {.lex_state = 262}, - [4254] = {.lex_state = 178}, - [4255] = {.lex_state = 89}, - [4256] = {.lex_state = 89}, - [4257] = {.lex_state = 178}, - [4258] = {.lex_state = 228}, - [4259] = {.lex_state = 178}, - [4260] = {.lex_state = 587}, - [4261] = {.lex_state = 178}, - [4262] = {.lex_state = 89}, - [4263] = {.lex_state = 38}, - [4264] = {.lex_state = 178}, - [4265] = {.lex_state = 251}, - [4266] = {.lex_state = 178}, - [4267] = {.lex_state = 178}, - [4268] = {.lex_state = 178}, - [4269] = {.lex_state = 178}, - [4270] = {.lex_state = 47}, - [4271] = {.lex_state = 178}, - [4272] = {.lex_state = 178}, - [4273] = {.lex_state = 228}, - [4274] = {.lex_state = 277}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 277}, - [4278] = {.lex_state = 251}, - [4279] = {.lex_state = 33}, - [4280] = {.lex_state = 147}, - [4281] = {.lex_state = 275}, - [4282] = {.lex_state = 630}, - [4283] = {.lex_state = 129}, - [4284] = {.lex_state = 124}, - [4285] = {.lex_state = 251}, - [4286] = {.lex_state = 118}, - [4287] = {.lex_state = 89}, - [4288] = {.lex_state = 118}, - [4289] = {.lex_state = 630}, - [4290] = {.lex_state = 89}, - [4291] = {.lex_state = 118}, - [4292] = {.lex_state = 35}, - [4293] = {.lex_state = 215}, + [4199] = {.lex_state = 0}, + [4200] = {.lex_state = 0}, + [4201] = {.lex_state = 0}, + [4202] = {.lex_state = 0}, + [4203] = {.lex_state = 178}, + [4204] = {.lex_state = 583}, + [4205] = {.lex_state = 127}, + [4206] = {.lex_state = 90}, + [4207] = {.lex_state = 122}, + [4208] = {.lex_state = 147}, + [4209] = {.lex_state = 147}, + [4210] = {.lex_state = 199}, + [4211] = {.lex_state = 33}, + [4212] = {.lex_state = 124}, + [4213] = {.lex_state = 0}, + [4214] = {.lex_state = 124}, + [4215] = {.lex_state = 215}, + [4216] = {.lex_state = 122}, + [4217] = {.lex_state = 215}, + [4218] = {.lex_state = 118}, + [4219] = {.lex_state = 215}, + [4220] = {.lex_state = 215}, + [4221] = {.lex_state = 118}, + [4222] = {.lex_state = 215}, + [4223] = {.lex_state = 118}, + [4224] = {.lex_state = 215}, + [4225] = {.lex_state = 277}, + [4226] = {.lex_state = 35}, + [4227] = {.lex_state = 0}, + [4228] = {.lex_state = 0}, + [4229] = {.lex_state = 178}, + [4230] = {.lex_state = 251}, + [4231] = {.lex_state = 626}, + [4232] = {.lex_state = 215}, + [4233] = {.lex_state = 121}, + [4234] = {.lex_state = 275}, + [4235] = {.lex_state = 33}, + [4236] = {.lex_state = 277}, + [4237] = {.lex_state = 122}, + [4238] = {.lex_state = 122}, + [4239] = {.lex_state = 215}, + [4240] = {.lex_state = 215}, + [4241] = {.lex_state = 122}, + [4242] = {.lex_state = 124}, + [4243] = {.lex_state = 89}, + [4244] = {.lex_state = 38}, + [4245] = {.lex_state = 47}, + [4246] = {.lex_state = 89}, + [4247] = {.lex_state = 89}, + [4248] = {.lex_state = 178}, + [4249] = {.lex_state = 277}, + [4250] = {.lex_state = 626}, + [4251] = {.lex_state = 129}, + [4252] = {.lex_state = 277}, + [4253] = {.lex_state = 275}, + [4254] = {.lex_state = 129}, + [4255] = {.lex_state = 90}, + [4256] = {.lex_state = 129}, + [4257] = {.lex_state = 33}, + [4258] = {.lex_state = 251}, + [4259] = {.lex_state = 2}, + [4260] = {.lex_state = 626}, + [4261] = {.lex_state = 277}, + [4262] = {.lex_state = 158}, + [4263] = {.lex_state = 122}, + [4264] = {.lex_state = 122}, + [4265] = {.lex_state = 0}, + [4266] = {.lex_state = 158}, + [4267] = {.lex_state = 0}, + [4268] = {.lex_state = 33}, + [4269] = {.lex_state = 0}, + [4270] = {.lex_state = 228}, + [4271] = {.lex_state = 122}, + [4272] = {.lex_state = 228}, + [4273] = {.lex_state = 0}, + [4274] = {.lex_state = 0}, + [4275] = {.lex_state = 118}, + [4276] = {.lex_state = 251}, + [4277] = {.lex_state = 225}, + [4278] = {.lex_state = 118}, + [4279] = {.lex_state = 215}, + [4280] = {.lex_state = 277}, + [4281] = {.lex_state = 215}, + [4282] = {.lex_state = 626}, + [4283] = {.lex_state = 215}, + [4284] = {.lex_state = 35}, + [4285] = {.lex_state = 277}, + [4286] = {.lex_state = 2}, + [4287] = {.lex_state = 251}, + [4288] = {.lex_state = 277}, + [4289] = {.lex_state = 118}, + [4290] = {.lex_state = 118}, + [4291] = {.lex_state = 277}, + [4292] = {.lex_state = 225}, + [4293] = {.lex_state = 583}, [4294] = {.lex_state = 178}, - [4295] = {.lex_state = 118}, - [4296] = {.lex_state = 90}, - [4297] = {.lex_state = 277}, - [4298] = {.lex_state = 119}, - [4299] = {.lex_state = 225}, - [4300] = {.lex_state = 127}, - [4301] = {.lex_state = 35}, - [4302] = {.lex_state = 251}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 215}, - [4305] = {.lex_state = 262}, - [4306] = {.lex_state = 2}, - [4307] = {.lex_state = 118}, - [4308] = {.lex_state = 122}, - [4309] = {.lex_state = 2}, - [4310] = {.lex_state = 630}, - [4311] = {.lex_state = 251}, - [4312] = {.lex_state = 215}, - [4313] = {.lex_state = 215}, - [4314] = {.lex_state = 277}, - [4315] = {.lex_state = 225}, - [4316] = {.lex_state = 583}, - [4317] = {.lex_state = 122}, - [4318] = {.lex_state = 275}, - [4319] = {.lex_state = 118}, + [4295] = {.lex_state = 277}, + [4296] = {.lex_state = 262}, + [4297] = {.lex_state = 118}, + [4298] = {.lex_state = 251}, + [4299] = {.lex_state = 262}, + [4300] = {.lex_state = 277}, + [4301] = {.lex_state = 178}, + [4302] = {.lex_state = 277}, + [4303] = {.lex_state = 118}, + [4304] = {.lex_state = 277}, + [4305] = {.lex_state = 118}, + [4306] = {.lex_state = 118}, + [4307] = {.lex_state = 657}, + [4308] = {.lex_state = 178}, + [4309] = {.lex_state = 277}, + [4310] = {.lex_state = 119}, + [4311] = {.lex_state = 89}, + [4312] = {.lex_state = 277}, + [4313] = {.lex_state = 119}, + [4314] = {.lex_state = 178}, + [4315] = {.lex_state = 277}, + [4316] = {.lex_state = 277}, + [4317] = {.lex_state = 178}, + [4318] = {.lex_state = 178}, + [4319] = {.lex_state = 89}, [4320] = {.lex_state = 118}, - [4321] = {.lex_state = 89}, - [4322] = {.lex_state = 215}, - [4323] = {.lex_state = 2}, + [4321] = {.lex_state = 118}, + [4322] = {.lex_state = 178}, + [4323] = {.lex_state = 215}, [4324] = {.lex_state = 178}, - [4325] = {.lex_state = 277}, - [4326] = {.lex_state = 122}, - [4327] = {.lex_state = 277}, - [4328] = {.lex_state = 122}, - [4329] = {.lex_state = 215}, - [4330] = {.lex_state = 33}, - [4331] = {.lex_state = 630}, - [4332] = {.lex_state = 215}, - [4333] = {.lex_state = 215}, - [4334] = {.lex_state = 118}, - [4335] = {.lex_state = 118}, - [4336] = {.lex_state = 122}, - [4337] = {.lex_state = 2}, - [4338] = {.lex_state = 215}, - [4339] = {.lex_state = 122}, - [4340] = {.lex_state = 277}, - [4341] = {.lex_state = 118}, - [4342] = {.lex_state = 2}, - [4343] = {.lex_state = 630}, - [4344] = {.lex_state = 118}, - [4345] = {.lex_state = 121}, - [4346] = {.lex_state = 89}, - [4347] = {.lex_state = 178}, - [4348] = {.lex_state = 2}, - [4349] = {.lex_state = 277}, - [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 215}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 215}, - [4354] = {.lex_state = 277}, - [4355] = {.lex_state = 215}, - [4356] = {.lex_state = 89}, - [4357] = {.lex_state = 122}, - [4358] = {.lex_state = 129}, - [4359] = {.lex_state = 188}, - [4360] = {.lex_state = 122}, - [4361] = {.lex_state = 224}, + [4325] = {.lex_state = 178}, + [4326] = {.lex_state = 178}, + [4327] = {.lex_state = 178}, + [4328] = {.lex_state = 178}, + [4329] = {.lex_state = 178}, + [4330] = {.lex_state = 275}, + [4331] = {.lex_state = 90}, + [4332] = {.lex_state = 178}, + [4333] = {.lex_state = 178}, + [4334] = {.lex_state = 178}, + [4335] = {.lex_state = 89}, + [4336] = {.lex_state = 89}, + [4337] = {.lex_state = 626}, + [4338] = {.lex_state = 89}, + [4339] = {.lex_state = 89}, + [4340] = {.lex_state = 275}, + [4341] = {.lex_state = 188}, + [4342] = {.lex_state = 89}, + [4343] = {.lex_state = 89}, + [4344] = {.lex_state = 178}, + [4345] = {.lex_state = 277}, + [4346] = {.lex_state = 2}, + [4347] = {.lex_state = 626}, + [4348] = {.lex_state = 224}, + [4349] = {.lex_state = 89}, + [4350] = {.lex_state = 89}, + [4351] = {.lex_state = 579}, + [4352] = {.lex_state = 122}, + [4353] = {.lex_state = 277}, + [4354] = {.lex_state = 122}, + [4355] = {.lex_state = 122}, + [4356] = {.lex_state = 2}, + [4357] = {.lex_state = 127}, + [4358] = {.lex_state = 118}, + [4359] = {.lex_state = 2}, + [4360] = {.lex_state = 2}, + [4361] = {.lex_state = 178}, [4362] = {.lex_state = 33}, [4363] = {.lex_state = 33}, - [4364] = {.lex_state = 33}, - [4365] = {.lex_state = 33}, - [4366] = {.lex_state = 33}, - [4367] = {.lex_state = 33}, - [4368] = {.lex_state = 33}, + [4364] = {.lex_state = 120}, + [4365] = {.lex_state = 224}, + [4366] = {.lex_state = 188}, + [4367] = {.lex_state = 224}, + [4368] = {.lex_state = 224}, [4369] = {.lex_state = 33}, - [4370] = {.lex_state = 33}, - [4371] = {.lex_state = 634}, - [4372] = {.lex_state = 33}, - [4373] = {.lex_state = 33}, + [4370] = {.lex_state = 120}, + [4371] = {.lex_state = 120}, + [4372] = {.lex_state = 188}, + [4373] = {.lex_state = 122}, [4374] = {.lex_state = 188}, - [4375] = {.lex_state = 121}, - [4376] = {.lex_state = 124}, - [4377] = {.lex_state = 33}, - [4378] = {.lex_state = 147}, - [4379] = {.lex_state = 583}, - [4380] = {.lex_state = 583}, - [4381] = {.lex_state = 120}, - [4382] = {.lex_state = 244}, - [4383] = {.lex_state = 583}, - [4384] = {.lex_state = 180}, - [4385] = {.lex_state = 122}, - [4386] = {.lex_state = 122}, - [4387] = {.lex_state = 224}, - [4388] = {.lex_state = 124}, - [4389] = {.lex_state = 147}, - [4390] = {.lex_state = 33}, - [4391] = {.lex_state = 33}, - [4392] = {.lex_state = 147}, - [4393] = {.lex_state = 33}, - [4394] = {.lex_state = 124}, + [4375] = {.lex_state = 120}, + [4376] = {.lex_state = 188}, + [4377] = {.lex_state = 120}, + [4378] = {.lex_state = 120}, + [4379] = {.lex_state = 178}, + [4380] = {.lex_state = 188}, + [4381] = {.lex_state = 188}, + [4382] = {.lex_state = 33}, + [4383] = {.lex_state = 33}, + [4384] = {.lex_state = 188}, + [4385] = {.lex_state = 188}, + [4386] = {.lex_state = 188}, + [4387] = {.lex_state = 33}, + [4388] = {.lex_state = 122}, + [4389] = {.lex_state = 33}, + [4390] = {.lex_state = 0}, + [4391] = {.lex_state = 630}, + [4392] = {.lex_state = 0}, + [4393] = {.lex_state = 0}, + [4394] = {.lex_state = 188}, [4395] = {.lex_state = 124}, - [4396] = {.lex_state = 630}, - [4397] = {.lex_state = 33}, - [4398] = {.lex_state = 33}, - [4399] = {.lex_state = 33}, - [4400] = {.lex_state = 33}, - [4401] = {.lex_state = 33}, - [4402] = {.lex_state = 33}, - [4403] = {.lex_state = 33}, - [4404] = {.lex_state = 33}, - [4405] = {.lex_state = 0}, + [4396] = {.lex_state = 180}, + [4397] = {.lex_state = 120}, + [4398] = {.lex_state = 229}, + [4399] = {.lex_state = 229}, + [4400] = {.lex_state = 124}, + [4401] = {.lex_state = 124}, + [4402] = {.lex_state = 180}, + [4403] = {.lex_state = 122}, + [4404] = {.lex_state = 120}, + [4405] = {.lex_state = 120}, [4406] = {.lex_state = 33}, - [4407] = {.lex_state = 122}, - [4408] = {.lex_state = 33}, - [4409] = {.lex_state = 33}, - [4410] = {.lex_state = 122}, - [4411] = {.lex_state = 224}, - [4412] = {.lex_state = 33}, - [4413] = {.lex_state = 33}, - [4414] = {.lex_state = 244}, - [4415] = {.lex_state = 33}, - [4416] = {.lex_state = 229}, - [4417] = {.lex_state = 229}, - [4418] = {.lex_state = 120}, - [4419] = {.lex_state = 120}, - [4420] = {.lex_state = 229}, + [4407] = {.lex_state = 124}, + [4408] = {.lex_state = 124}, + [4409] = {.lex_state = 124}, + [4410] = {.lex_state = 0}, + [4411] = {.lex_state = 626}, + [4412] = {.lex_state = 580}, + [4413] = {.lex_state = 0}, + [4414] = {.lex_state = 188}, + [4415] = {.lex_state = 122}, + [4416] = {.lex_state = 188}, + [4417] = {.lex_state = 33}, + [4418] = {.lex_state = 147}, + [4419] = {.lex_state = 147}, + [4420] = {.lex_state = 0}, [4421] = {.lex_state = 33}, - [4422] = {.lex_state = 188}, + [4422] = {.lex_state = 33}, [4423] = {.lex_state = 33}, [4424] = {.lex_state = 33}, [4425] = {.lex_state = 33}, - [4426] = {.lex_state = 33}, - [4427] = {.lex_state = 33}, - [4428] = {.lex_state = 33}, - [4429] = {.lex_state = 147}, - [4430] = {.lex_state = 188}, - [4431] = {.lex_state = 124}, - [4432] = {.lex_state = 188}, - [4433] = {.lex_state = 122}, - [4434] = {.lex_state = 124}, - [4435] = {.lex_state = 124}, - [4436] = {.lex_state = 251}, + [4426] = {.lex_state = 0}, + [4427] = {.lex_state = 0}, + [4428] = {.lex_state = 0}, + [4429] = {.lex_state = 0}, + [4430] = {.lex_state = 0}, + [4431] = {.lex_state = 33}, + [4432] = {.lex_state = 33}, + [4433] = {.lex_state = 229}, + [4434] = {.lex_state = 33}, + [4435] = {.lex_state = 263}, + [4436] = {.lex_state = 33}, [4437] = {.lex_state = 33}, - [4438] = {.lex_state = 124}, - [4439] = {.lex_state = 244}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 188}, - [4442] = {.lex_state = 229}, - [4443] = {.lex_state = 188}, - [4444] = {.lex_state = 188}, - [4445] = {.lex_state = 122}, - [4446] = {.lex_state = 224}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 244}, - [4449] = {.lex_state = 122}, - [4450] = {.lex_state = 33}, - [4451] = {.lex_state = 236}, - [4452] = {.lex_state = 120}, - [4453] = {.lex_state = 251}, - [4454] = {.lex_state = 188}, - [4455] = {.lex_state = 229}, - [4456] = {.lex_state = 188}, - [4457] = {.lex_state = 244}, - [4458] = {.lex_state = 33}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 236}, - [4461] = {.lex_state = 147}, - [4462] = {.lex_state = 33}, - [4463] = {.lex_state = 122}, - [4464] = {.lex_state = 122}, - [4465] = {.lex_state = 122}, - [4466] = {.lex_state = 634}, + [4438] = {.lex_state = 33}, + [4439] = {.lex_state = 229}, + [4440] = {.lex_state = 122}, + [4441] = {.lex_state = 229}, + [4442] = {.lex_state = 215}, + [4443] = {.lex_state = 224}, + [4444] = {.lex_state = 224}, + [4445] = {.lex_state = 147}, + [4446] = {.lex_state = 147}, + [4447] = {.lex_state = 579}, + [4448] = {.lex_state = 43}, + [4449] = {.lex_state = 147}, + [4450] = {.lex_state = 147}, + [4451] = {.lex_state = 122}, + [4452] = {.lex_state = 147}, + [4453] = {.lex_state = 122}, + [4454] = {.lex_state = 33}, + [4455] = {.lex_state = 33}, + [4456] = {.lex_state = 147}, + [4457] = {.lex_state = 147}, + [4458] = {.lex_state = 236}, + [4459] = {.lex_state = 244}, + [4460] = {.lex_state = 188}, + [4461] = {.lex_state = 33}, + [4462] = {.lex_state = 180}, + [4463] = {.lex_state = 33}, + [4464] = {.lex_state = 33}, + [4465] = {.lex_state = 147}, + [4466] = {.lex_state = 224}, [4467] = {.lex_state = 188}, [4468] = {.lex_state = 33}, - [4469] = {.lex_state = 188}, - [4470] = {.lex_state = 229}, - [4471] = {.lex_state = 188}, - [4472] = {.lex_state = 147}, - [4473] = {.lex_state = 244}, + [4469] = {.lex_state = 33}, + [4470] = {.lex_state = 33}, + [4471] = {.lex_state = 33}, + [4472] = {.lex_state = 43}, + [4473] = {.lex_state = 33}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 33}, - [4476] = {.lex_state = 147}, - [4477] = {.lex_state = 33}, - [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 188}, - [4480] = {.lex_state = 33}, + [4475] = {.lex_state = 0}, + [4476] = {.lex_state = 122}, + [4477] = {.lex_state = 224}, + [4478] = {.lex_state = 33}, + [4479] = {.lex_state = 33}, + [4480] = {.lex_state = 244}, [4481] = {.lex_state = 33}, - [4482] = {.lex_state = 33}, + [4482] = {.lex_state = 224}, [4483] = {.lex_state = 33}, - [4484] = {.lex_state = 122}, + [4484] = {.lex_state = 215}, [4485] = {.lex_state = 33}, [4486] = {.lex_state = 33}, [4487] = {.lex_state = 33}, - [4488] = {.lex_state = 244}, - [4489] = {.lex_state = 43}, + [4488] = {.lex_state = 33}, + [4489] = {.lex_state = 90}, [4490] = {.lex_state = 33}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 33}, - [4494] = {.lex_state = 33}, - [4495] = {.lex_state = 33}, - [4496] = {.lex_state = 263}, - [4497] = {.lex_state = 33}, - [4498] = {.lex_state = 244}, - [4499] = {.lex_state = 33}, - [4500] = {.lex_state = 33}, - [4501] = {.lex_state = 236}, - [4502] = {.lex_state = 188}, - [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 33}, - [4505] = {.lex_state = 244}, + [4491] = {.lex_state = 224}, + [4492] = {.lex_state = 229}, + [4493] = {.lex_state = 224}, + [4494] = {.lex_state = 251}, + [4495] = {.lex_state = 252}, + [4496] = {.lex_state = 33}, + [4497] = {.lex_state = 244}, + [4498] = {.lex_state = 229}, + [4499] = {.lex_state = 122}, + [4500] = {.lex_state = 263}, + [4501] = {.lex_state = 188}, + [4502] = {.lex_state = 120}, + [4503] = {.lex_state = 263}, + [4504] = {.lex_state = 224}, + [4505] = {.lex_state = 33}, [4506] = {.lex_state = 263}, - [4507] = {.lex_state = 33}, - [4508] = {.lex_state = 33}, - [4509] = {.lex_state = 215}, + [4507] = {.lex_state = 178}, + [4508] = {.lex_state = 236}, + [4509] = {.lex_state = 120}, [4510] = {.lex_state = 244}, - [4511] = {.lex_state = 263}, + [4511] = {.lex_state = 122}, [4512] = {.lex_state = 33}, - [4513] = {.lex_state = 224}, - [4514] = {.lex_state = 244}, - [4515] = {.lex_state = 229}, - [4516] = {.lex_state = 33}, - [4517] = {.lex_state = 224}, - [4518] = {.lex_state = 244}, - [4519] = {.lex_state = 188}, + [4513] = {.lex_state = 33}, + [4514] = {.lex_state = 33}, + [4515] = {.lex_state = 33}, + [4516] = {.lex_state = 122}, + [4517] = {.lex_state = 33}, + [4518] = {.lex_state = 229}, + [4519] = {.lex_state = 89}, [4520] = {.lex_state = 122}, - [4521] = {.lex_state = 127}, - [4522] = {.lex_state = 33}, - [4523] = {.lex_state = 120}, - [4524] = {.lex_state = 33}, - [4525] = {.lex_state = 43}, - [4526] = {.lex_state = 122}, - [4527] = {.lex_state = 229}, - [4528] = {.lex_state = 33}, - [4529] = {.lex_state = 188}, - [4530] = {.lex_state = 121}, - [4531] = {.lex_state = 229}, - [4532] = {.lex_state = 122}, - [4533] = {.lex_state = 122}, - [4534] = {.lex_state = 236}, - [4535] = {.lex_state = 229}, - [4536] = {.lex_state = 229}, + [4521] = {.lex_state = 579}, + [4522] = {.lex_state = 236}, + [4523] = {.lex_state = 236}, + [4524] = {.lex_state = 244}, + [4525] = {.lex_state = 129}, + [4526] = {.lex_state = 33}, + [4527] = {.lex_state = 120}, + [4528] = {.lex_state = 147}, + [4529] = {.lex_state = 122}, + [4530] = {.lex_state = 120}, + [4531] = {.lex_state = 120}, + [4532] = {.lex_state = 188}, + [4533] = {.lex_state = 0}, + [4534] = {.lex_state = 188}, + [4535] = {.lex_state = 0}, + [4536] = {.lex_state = 0}, [4537] = {.lex_state = 33}, - [4538] = {.lex_state = 229}, + [4538] = {.lex_state = 33}, [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 263}, - [4541] = {.lex_state = 43}, + [4540] = {.lex_state = 33}, + [4541] = {.lex_state = 33}, [4542] = {.lex_state = 33}, - [4543] = {.lex_state = 583}, + [4543] = {.lex_state = 33}, [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 120}, - [4546] = {.lex_state = 244}, - [4547] = {.lex_state = 224}, - [4548] = {.lex_state = 147}, - [4549] = {.lex_state = 236}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 236}, - [4552] = {.lex_state = 263}, - [4553] = {.lex_state = 33}, - [4554] = {.lex_state = 129}, - [4555] = {.lex_state = 120}, + [4545] = {.lex_state = 244}, + [4546] = {.lex_state = 251}, + [4547] = {.lex_state = 121}, + [4548] = {.lex_state = 188}, + [4549] = {.lex_state = 244}, + [4550] = {.lex_state = 244}, + [4551] = {.lex_state = 122}, + [4552] = {.lex_state = 122}, + [4553] = {.lex_state = 630}, + [4554] = {.lex_state = 244}, + [4555] = {.lex_state = 188}, [4556] = {.lex_state = 224}, - [4557] = {.lex_state = 120}, - [4558] = {.lex_state = 224}, + [4557] = {.lex_state = 33}, + [4558] = {.lex_state = 244}, [4559] = {.lex_state = 33}, [4560] = {.lex_state = 33}, - [4561] = {.lex_state = 188}, - [4562] = {.lex_state = 120}, + [4561] = {.lex_state = 33}, + [4562] = {.lex_state = 244}, [4563] = {.lex_state = 33}, [4564] = {.lex_state = 33}, - [4565] = {.lex_state = 120}, - [4566] = {.lex_state = 180}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 188}, - [4569] = {.lex_state = 120}, - [4570] = {.lex_state = 120}, - [4571] = {.lex_state = 583}, - [4572] = {.lex_state = 120}, - [4573] = {.lex_state = 121}, - [4574] = {.lex_state = 33}, + [4565] = {.lex_state = 33}, + [4566] = {.lex_state = 33}, + [4567] = {.lex_state = 579}, + [4568] = {.lex_state = 33}, + [4569] = {.lex_state = 33}, + [4570] = {.lex_state = 579}, + [4571] = {.lex_state = 33}, + [4572] = {.lex_state = 579}, + [4573] = {.lex_state = 33}, + [4574] = {.lex_state = 124}, [4575] = {.lex_state = 33}, - [4576] = {.lex_state = 33}, - [4577] = {.lex_state = 33}, + [4576] = {.lex_state = 122}, + [4577] = {.lex_state = 122}, [4578] = {.lex_state = 33}, - [4579] = {.lex_state = 188}, - [4580] = {.lex_state = 33}, - [4581] = {.lex_state = 33}, + [4579] = {.lex_state = 0}, + [4580] = {.lex_state = 147}, + [4581] = {.lex_state = 630}, [4582] = {.lex_state = 33}, - [4583] = {.lex_state = 244}, - [4584] = {.lex_state = 0}, - [4585] = {.lex_state = 122}, - [4586] = {.lex_state = 147}, - [4587] = {.lex_state = 33}, - [4588] = {.lex_state = 127}, - [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 252}, - [4591] = {.lex_state = 0}, - [4592] = {.lex_state = 0}, + [4583] = {.lex_state = 33}, + [4584] = {.lex_state = 33}, + [4585] = {.lex_state = 33}, + [4586] = {.lex_state = 579}, + [4587] = {.lex_state = 188}, + [4588] = {.lex_state = 33}, + [4589] = {.lex_state = 33}, + [4590] = {.lex_state = 33}, + [4591] = {.lex_state = 33}, + [4592] = {.lex_state = 33}, [4593] = {.lex_state = 33}, [4594] = {.lex_state = 33}, [4595] = {.lex_state = 33}, [4596] = {.lex_state = 33}, - [4597] = {.lex_state = 127}, + [4597] = {.lex_state = 33}, [4598] = {.lex_state = 33}, - [4599] = {.lex_state = 33}, + [4599] = {.lex_state = 188}, [4600] = {.lex_state = 33}, - [4601] = {.lex_state = 0}, + [4601] = {.lex_state = 33}, [4602] = {.lex_state = 33}, - [4603] = {.lex_state = 188}, - [4604] = {.lex_state = 178}, - [4605] = {.lex_state = 224}, - [4606] = {.lex_state = 244}, - [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 224}, - [4609] = {.lex_state = 33}, - [4610] = {.lex_state = 244}, - [4611] = {.lex_state = 244}, + [4603] = {.lex_state = 33}, + [4604] = {.lex_state = 33}, + [4605] = {.lex_state = 33}, + [4606] = {.lex_state = 188}, + [4607] = {.lex_state = 229}, + [4608] = {.lex_state = 188}, + [4609] = {.lex_state = 122}, + [4610] = {.lex_state = 229}, + [4611] = {.lex_state = 124}, [4612] = {.lex_state = 188}, [4613] = {.lex_state = 188}, - [4614] = {.lex_state = 147}, - [4615] = {.lex_state = 33}, - [4616] = {.lex_state = 120}, - [4617] = {.lex_state = 224}, - [4618] = {.lex_state = 215}, - [4619] = {.lex_state = 583}, - [4620] = {.lex_state = 147}, - [4621] = {.lex_state = 90}, - [4622] = {.lex_state = 583}, - [4623] = {.lex_state = 122}, - [4624] = {.lex_state = 267}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 188}, - [4627] = {.lex_state = 0}, - [4628] = {.lex_state = 33}, - [4629] = {.lex_state = 188}, - [4630] = {.lex_state = 33}, - [4631] = {.lex_state = 33}, + [4614] = {.lex_state = 33}, + [4615] = {.lex_state = 188}, + [4616] = {.lex_state = 122}, + [4617] = {.lex_state = 127}, + [4618] = {.lex_state = 244}, + [4619] = {.lex_state = 263}, + [4620] = {.lex_state = 188}, + [4621] = {.lex_state = 229}, + [4622] = {.lex_state = 188}, + [4623] = {.lex_state = 0}, + [4624] = {.lex_state = 33}, + [4625] = {.lex_state = 33}, + [4626] = {.lex_state = 579}, + [4627] = {.lex_state = 121}, + [4628] = {.lex_state = 122}, + [4629] = {.lex_state = 122}, + [4630] = {.lex_state = 188}, + [4631] = {.lex_state = 147}, [4632] = {.lex_state = 33}, [4633] = {.lex_state = 33}, - [4634] = {.lex_state = 244}, + [4634] = {.lex_state = 229}, [4635] = {.lex_state = 33}, - [4636] = {.lex_state = 229}, - [4637] = {.lex_state = 122}, - [4638] = {.lex_state = 147}, - [4639] = {.lex_state = 33}, - [4640] = {.lex_state = 122}, - [4641] = {.lex_state = 188}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 147}, - [4645] = {.lex_state = 0}, + [4636] = {.lex_state = 33}, + [4637] = {.lex_state = 188}, + [4638] = {.lex_state = 0}, + [4639] = {.lex_state = 236}, + [4640] = {.lex_state = 244}, + [4641] = {.lex_state = 33}, + [4642] = {.lex_state = 33}, + [4643] = {.lex_state = 244}, + [4644] = {.lex_state = 244}, + [4645] = {.lex_state = 33}, [4646] = {.lex_state = 122}, - [4647] = {.lex_state = 584}, + [4647] = {.lex_state = 244}, [4648] = {.lex_state = 0}, [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 33}, - [4651] = {.lex_state = 0}, + [4650] = {.lex_state = 127}, + [4651] = {.lex_state = 127}, [4652] = {.lex_state = 33}, - [4653] = {.lex_state = 188}, - [4654] = {.lex_state = 33}, + [4653] = {.lex_state = 229}, + [4654] = {.lex_state = 244}, [4655] = {.lex_state = 33}, - [4656] = {.lex_state = 188}, - [4657] = {.lex_state = 33}, - [4658] = {.lex_state = 178}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 188}, + [4656] = {.lex_state = 33}, + [4657] = {.lex_state = 236}, + [4658] = {.lex_state = 0}, + [4659] = {.lex_state = 33}, + [4660] = {.lex_state = 0}, [4661] = {.lex_state = 0}, [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, + [4663] = {.lex_state = 33}, + [4664] = {.lex_state = 43}, [4665] = {.lex_state = 33}, - [4666] = {.lex_state = 33}, - [4667] = {.lex_state = 89}, - [4668] = {.lex_state = 634}, - [4669] = {.lex_state = 188}, - [4670] = {.lex_state = 147}, - [4671] = {.lex_state = 180}, - [4672] = {.lex_state = 122}, - [4673] = {.lex_state = 239}, - [4674] = {.lex_state = 33}, - [4675] = {.lex_state = 122}, - [4676] = {.lex_state = 33}, - [4677] = {.lex_state = 33}, - [4678] = {.lex_state = 0}, + [4666] = {.lex_state = 121}, + [4667] = {.lex_state = 147}, + [4668] = {.lex_state = 0}, + [4669] = {.lex_state = 0}, + [4670] = {.lex_state = 0}, + [4671] = {.lex_state = 0}, + [4672] = {.lex_state = 33}, + [4673] = {.lex_state = 267}, + [4674] = {.lex_state = 0}, + [4675] = {.lex_state = 244}, + [4676] = {.lex_state = 122}, + [4677] = {.lex_state = 90}, + [4678] = {.lex_state = 33}, [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, + [4680] = {.lex_state = 634}, [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 90}, + [4682] = {.lex_state = 0}, [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 122}, - [4685] = {.lex_state = 122}, - [4686] = {.lex_state = 121}, - [4687] = {.lex_state = 634}, - [4688] = {.lex_state = 36}, + [4684] = {.lex_state = 36}, + [4685] = {.lex_state = 231}, + [4686] = {.lex_state = 0}, + [4687] = {.lex_state = 122}, + [4688] = {.lex_state = 0}, [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 147}, + [4690] = {.lex_state = 270}, + [4691] = {.lex_state = 122}, [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 122}, + [4693] = {.lex_state = 0}, [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 36}, + [4695] = {.lex_state = 630}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 36}, - [4699] = {.lex_state = 239}, - [4700] = {.lex_state = 122}, - [4701] = {.lex_state = 33}, - [4702] = {.lex_state = 122}, - [4703] = {.lex_state = 127}, - [4704] = {.lex_state = 122}, + [4697] = {.lex_state = 36}, + [4698] = {.lex_state = 0}, + [4699] = {.lex_state = 121}, + [4700] = {.lex_state = 121}, + [4701] = {.lex_state = 47}, + [4702] = {.lex_state = 47}, + [4703] = {.lex_state = 0}, + [4704] = {.lex_state = 47}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 188}, - [4708] = {.lex_state = 0}, - [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 270}, - [4711] = {.lex_state = 122}, - [4712] = {.lex_state = 122}, - [4713] = {.lex_state = 147}, - [4714] = {.lex_state = 277}, - [4715] = {.lex_state = 239}, - [4716] = {.lex_state = 277}, - [4717] = {.lex_state = 33}, - [4718] = {.lex_state = 147}, - [4719] = {.lex_state = 122}, - [4720] = {.lex_state = 36}, - [4721] = {.lex_state = 122}, - [4722] = {.lex_state = 36}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 188}, - [4725] = {.lex_state = 188}, - [4726] = {.lex_state = 188}, - [4727] = {.lex_state = 33}, - [4728] = {.lex_state = 122}, - [4729] = {.lex_state = 122}, - [4730] = {.lex_state = 122}, - [4731] = {.lex_state = 33}, - [4732] = {.lex_state = 33}, - [4733] = {.lex_state = 121}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 33}, - [4736] = {.lex_state = 188}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 47}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 0}, - [4742] = {.lex_state = 122}, + [4706] = {.lex_state = 239}, + [4707] = {.lex_state = 239}, + [4708] = {.lex_state = 122}, + [4709] = {.lex_state = 122}, + [4710] = {.lex_state = 122}, + [4711] = {.lex_state = 0}, + [4712] = {.lex_state = 188}, + [4713] = {.lex_state = 188}, + [4714] = {.lex_state = 188}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 33}, + [4717] = {.lex_state = 0}, + [4718] = {.lex_state = 0}, + [4719] = {.lex_state = 0}, + [4720] = {.lex_state = 0}, + [4721] = {.lex_state = 0}, + [4722] = {.lex_state = 0}, + [4723] = {.lex_state = 127}, + [4724] = {.lex_state = 0}, + [4725] = {.lex_state = 0}, + [4726] = {.lex_state = 0}, + [4727] = {.lex_state = 0}, + [4728] = {.lex_state = 0}, + [4729] = {.lex_state = 0}, + [4730] = {.lex_state = 0}, + [4731] = {.lex_state = 0}, + [4732] = {.lex_state = 0}, + [4733] = {.lex_state = 0}, + [4734] = {.lex_state = 122}, + [4735] = {.lex_state = 122}, + [4736] = {.lex_state = 147}, + [4737] = {.lex_state = 122}, + [4738] = {.lex_state = 0}, + [4739] = {.lex_state = 239}, + [4740] = {.lex_state = 227}, + [4741] = {.lex_state = 277}, + [4742] = {.lex_state = 0}, [4743] = {.lex_state = 147}, - [4744] = {.lex_state = 0}, - [4745] = {.lex_state = 239}, - [4746] = {.lex_state = 0}, + [4744] = {.lex_state = 33}, + [4745] = {.lex_state = 147}, + [4746] = {.lex_state = 239}, [4747] = {.lex_state = 188}, - [4748] = {.lex_state = 188}, - [4749] = {.lex_state = 188}, - [4750] = {.lex_state = 0}, - [4751] = {.lex_state = 239}, - [4752] = {.lex_state = 227}, + [4748] = {.lex_state = 33}, + [4749] = {.lex_state = 122}, + [4750] = {.lex_state = 239}, + [4751] = {.lex_state = 227}, + [4752] = {.lex_state = 0}, [4753] = {.lex_state = 36}, - [4754] = {.lex_state = 147}, - [4755] = {.lex_state = 0}, - [4756] = {.lex_state = 122}, - [4757] = {.lex_state = 253}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 0}, - [4760] = {.lex_state = 0}, + [4754] = {.lex_state = 122}, + [4755] = {.lex_state = 124}, + [4756] = {.lex_state = 36}, + [4757] = {.lex_state = 36}, + [4758] = {.lex_state = 36}, + [4759] = {.lex_state = 122}, + [4760] = {.lex_state = 122}, [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 0}, - [4763] = {.lex_state = 33}, - [4764] = {.lex_state = 230}, - [4765] = {.lex_state = 239}, + [4762] = {.lex_state = 33}, + [4763] = {.lex_state = 239}, + [4764] = {.lex_state = 33}, + [4765] = {.lex_state = 147}, [4766] = {.lex_state = 122}, - [4767] = {.lex_state = 43}, + [4767] = {.lex_state = 0}, [4768] = {.lex_state = 239}, - [4769] = {.lex_state = 124}, - [4770] = {.lex_state = 33}, + [4769] = {.lex_state = 188}, + [4770] = {.lex_state = 122}, [4771] = {.lex_state = 0}, [4772] = {.lex_state = 122}, [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 583}, + [4774] = {.lex_state = 122}, [4775] = {.lex_state = 122}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 239}, - [4778] = {.lex_state = 33}, + [4776] = {.lex_state = 122}, + [4777] = {.lex_state = 33}, + [4778] = {.lex_state = 230}, [4779] = {.lex_state = 239}, - [4780] = {.lex_state = 0}, + [4780] = {.lex_state = 122}, [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 277}, - [4784] = {.lex_state = 0}, + [4782] = {.lex_state = 122}, + [4783] = {.lex_state = 239}, + [4784] = {.lex_state = 268}, [4785] = {.lex_state = 0}, - [4786] = {.lex_state = 122}, - [4787] = {.lex_state = 122}, - [4788] = {.lex_state = 239}, - [4789] = {.lex_state = 147}, - [4790] = {.lex_state = 33}, - [4791] = {.lex_state = 122}, - [4792] = {.lex_state = 122}, - [4793] = {.lex_state = 239}, - [4794] = {.lex_state = 239}, - [4795] = {.lex_state = 0}, - [4796] = {.lex_state = 0}, + [4786] = {.lex_state = 0}, + [4787] = {.lex_state = 90}, + [4788] = {.lex_state = 147}, + [4789] = {.lex_state = 0}, + [4790] = {.lex_state = 0}, + [4791] = {.lex_state = 0}, + [4792] = {.lex_state = 239}, + [4793] = {.lex_state = 0}, + [4794] = {.lex_state = 0}, + [4795] = {.lex_state = 239}, + [4796] = {.lex_state = 147}, [4797] = {.lex_state = 33}, - [4798] = {.lex_state = 122}, - [4799] = {.lex_state = 33}, + [4798] = {.lex_state = 0}, + [4799] = {.lex_state = 124}, [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 227}, - [4802] = {.lex_state = 0}, - [4803] = {.lex_state = 178}, - [4804] = {.lex_state = 0}, - [4805] = {.lex_state = 147}, - [4806] = {.lex_state = 0}, + [4801] = {.lex_state = 122}, + [4802] = {.lex_state = 147}, + [4803] = {.lex_state = 47}, + [4804] = {.lex_state = 188}, + [4805] = {.lex_state = 36}, + [4806] = {.lex_state = 33}, [4807] = {.lex_state = 0}, - [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 270}, - [4810] = {.lex_state = 0}, + [4808] = {.lex_state = 122}, + [4809] = {.lex_state = 147}, + [4810] = {.lex_state = 36}, [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 0}, + [4812] = {.lex_state = 230}, [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 0}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 0}, + [4814] = {.lex_state = 188}, + [4815] = {.lex_state = 188}, + [4816] = {.lex_state = 188}, [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 122}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 188}, + [4818] = {.lex_state = 188}, + [4819] = {.lex_state = 0}, + [4820] = {.lex_state = 188}, + [4821] = {.lex_state = 0}, [4822] = {.lex_state = 0}, [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 121}, - [4825] = {.lex_state = 122}, - [4826] = {.lex_state = 47}, - [4827] = {.lex_state = 0}, - [4828] = {.lex_state = 121}, - [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 122}, - [4831] = {.lex_state = 0}, + [4824] = {.lex_state = 0}, + [4825] = {.lex_state = 0}, + [4826] = {.lex_state = 239}, + [4827] = {.lex_state = 122}, + [4828] = {.lex_state = 0}, + [4829] = {.lex_state = 188}, + [4830] = {.lex_state = 188}, + [4831] = {.lex_state = 188}, [4832] = {.lex_state = 147}, - [4833] = {.lex_state = 0}, - [4834] = {.lex_state = 0}, - [4835] = {.lex_state = 121}, - [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 188}, - [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 147}, - [4840] = {.lex_state = 188}, - [4841] = {.lex_state = 124}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 33}, + [4833] = {.lex_state = 147}, + [4834] = {.lex_state = 122}, + [4835] = {.lex_state = 0}, + [4836] = {.lex_state = 253}, + [4837] = {.lex_state = 127}, + [4838] = {.lex_state = 121}, + [4839] = {.lex_state = 239}, + [4840] = {.lex_state = 33}, + [4841] = {.lex_state = 147}, + [4842] = {.lex_state = 147}, + [4843] = {.lex_state = 178}, [4844] = {.lex_state = 122}, - [4845] = {.lex_state = 122}, - [4846] = {.lex_state = 33}, - [4847] = {.lex_state = 47}, + [4845] = {.lex_state = 147}, + [4846] = {.lex_state = 0}, + [4847] = {.lex_state = 0}, [4848] = {.lex_state = 0}, - [4849] = {.lex_state = 224}, - [4850] = {.lex_state = 229}, - [4851] = {.lex_state = 188}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 122}, - [4854] = {.lex_state = 0}, + [4849] = {.lex_state = 121}, + [4850] = {.lex_state = 33}, + [4851] = {.lex_state = 0}, + [4852] = {.lex_state = 121}, + [4853] = {.lex_state = 121}, + [4854] = {.lex_state = 122}, [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 90}, - [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 122}, - [4860] = {.lex_state = 147}, - [4861] = {.lex_state = 239}, - [4862] = {.lex_state = 0}, - [4863] = {.lex_state = 127}, - [4864] = {.lex_state = 122}, - [4865] = {.lex_state = 33}, - [4866] = {.lex_state = 121}, - [4867] = {.lex_state = 239}, - [4868] = {.lex_state = 239}, - [4869] = {.lex_state = 0}, - [4870] = {.lex_state = 127}, - [4871] = {.lex_state = 0}, + [4856] = {.lex_state = 239}, + [4857] = {.lex_state = 47}, + [4858] = {.lex_state = 122}, + [4859] = {.lex_state = 227}, + [4860] = {.lex_state = 0}, + [4861] = {.lex_state = 188}, + [4862] = {.lex_state = 224}, + [4863] = {.lex_state = 43}, + [4864] = {.lex_state = 33}, + [4865] = {.lex_state = 147}, + [4866] = {.lex_state = 147}, + [4867] = {.lex_state = 122}, + [4868] = {.lex_state = 634}, + [4869] = {.lex_state = 122}, + [4870] = {.lex_state = 122}, + [4871] = {.lex_state = 579}, [4872] = {.lex_state = 122}, - [4873] = {.lex_state = 147}, - [4874] = {.lex_state = 638}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 36}, - [4877] = {.lex_state = 147}, - [4878] = {.lex_state = 33}, + [4873] = {.lex_state = 122}, + [4874] = {.lex_state = 47}, + [4875] = {.lex_state = 122}, + [4876] = {.lex_state = 0}, + [4877] = {.lex_state = 0}, + [4878] = {.lex_state = 270}, [4879] = {.lex_state = 239}, - [4880] = {.lex_state = 227}, - [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 122}, - [4883] = {.lex_state = 268}, - [4884] = {.lex_state = 122}, + [4880] = {.lex_state = 122}, + [4881] = {.lex_state = 33}, + [4882] = {.lex_state = 33}, + [4883] = {.lex_state = 0}, + [4884] = {.lex_state = 33}, [4885] = {.lex_state = 122}, [4886] = {.lex_state = 33}, - [4887] = {.lex_state = 122}, + [4887] = {.lex_state = 47}, [4888] = {.lex_state = 33}, - [4889] = {.lex_state = 36}, + [4889] = {.lex_state = 122}, [4890] = {.lex_state = 33}, - [4891] = {.lex_state = 122}, - [4892] = {.lex_state = 0}, - [4893] = {.lex_state = 122}, + [4891] = {.lex_state = 33}, + [4892] = {.lex_state = 33}, + [4893] = {.lex_state = 33}, [4894] = {.lex_state = 122}, - [4895] = {.lex_state = 47}, - [4896] = {.lex_state = 47}, - [4897] = {.lex_state = 147}, - [4898] = {.lex_state = 47}, - [4899] = {.lex_state = 147}, - [4900] = {.lex_state = 33}, - [4901] = {.lex_state = 122}, + [4895] = {.lex_state = 0}, + [4896] = {.lex_state = 0}, + [4897] = {.lex_state = 122}, + [4898] = {.lex_state = 277}, + [4899] = {.lex_state = 0}, + [4900] = {.lex_state = 122}, + [4901] = {.lex_state = 33}, [4902] = {.lex_state = 0}, - [4903] = {.lex_state = 122}, - [4904] = {.lex_state = 33}, - [4905] = {.lex_state = 638}, - [4906] = {.lex_state = 227}, - [4907] = {.lex_state = 583}, - [4908] = {.lex_state = 231}, - [4909] = {.lex_state = 0}, - [4910] = {.lex_state = 230}, - [4911] = {.lex_state = 188}, - [4912] = {.lex_state = 188}, - [4913] = {.lex_state = 188}, + [4903] = {.lex_state = 0}, + [4904] = {.lex_state = 0}, + [4905] = {.lex_state = 579}, + [4906] = {.lex_state = 0}, + [4907] = {.lex_state = 0}, + [4908] = {.lex_state = 122}, + [4909] = {.lex_state = 127}, + [4910] = {.lex_state = 0}, + [4911] = {.lex_state = 122}, + [4912] = {.lex_state = 0}, + [4913] = {.lex_state = 239}, [4914] = {.lex_state = 33}, - [4915] = {.lex_state = 122}, + [4915] = {.lex_state = 227}, [4916] = {.lex_state = 122}, - [4917] = {.lex_state = 147}, - [4918] = {.lex_state = 0}, + [4917] = {.lex_state = 603}, + [4918] = {.lex_state = 122}, [4919] = {.lex_state = 122}, - [4920] = {.lex_state = 607}, - [4921] = {.lex_state = 33}, - [4922] = {.lex_state = 47}, + [4920] = {.lex_state = 0}, + [4921] = {.lex_state = 277}, + [4922] = {.lex_state = 122}, [4923] = {.lex_state = 122}, - [4924] = {.lex_state = 122}, - [4925] = {.lex_state = 122}, - [4926] = {.lex_state = 147}, + [4924] = {.lex_state = 33}, + [4925] = {.lex_state = 229}, + [4926] = {.lex_state = 122}, [4927] = {.lex_state = 122}, - [4928] = {.lex_state = 0}, - [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 227}, + [4928] = {.lex_state = 33}, + [4929] = {.lex_state = 147}, + [4930] = {.lex_state = 33}, [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 2213}, + [4932] = {.lex_state = 0}, [4933] = {.lex_state = 227}, [4934] = {.lex_state = 227}, [4935] = {.lex_state = 0}, - [4936] = {.lex_state = 0}, + [4936] = {.lex_state = 1737}, [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 0}, - [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 0}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 147}, - [4943] = {.lex_state = 147}, - [4944] = {.lex_state = 2209}, - [4945] = {.lex_state = 0}, - [4946] = {.lex_state = 122}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 122}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 122}, - [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 2213}, - [4953] = {.lex_state = 0}, - [4954] = {.lex_state = 0}, - [4955] = {.lex_state = 272}, - [4956] = {.lex_state = 0}, - [4957] = {.lex_state = 0}, + [4938] = {.lex_state = 579}, + [4939] = {.lex_state = 122}, + [4940] = {.lex_state = 122}, + [4941] = {.lex_state = 36}, + [4942] = {.lex_state = 0}, + [4943] = {.lex_state = 0}, + [4944] = {.lex_state = 122}, + [4945] = {.lex_state = 2211}, + [4946] = {.lex_state = 630}, + [4947] = {.lex_state = 227}, + [4948] = {.lex_state = 0}, + [4949] = {.lex_state = 630}, + [4950] = {.lex_state = 0}, + [4951] = {.lex_state = 227}, + [4952] = {.lex_state = 227}, + [4953] = {.lex_state = 122}, + [4954] = {.lex_state = 579}, + [4955] = {.lex_state = 2211}, + [4956] = {.lex_state = 122}, + [4957] = {.lex_state = 2211}, [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 2209}, - [4960] = {.lex_state = 122}, - [4961] = {.lex_state = 583}, - [4962] = {.lex_state = 2209}, - [4963] = {.lex_state = 122}, + [4959] = {.lex_state = 2211}, + [4960] = {.lex_state = 0}, + [4961] = {.lex_state = 147}, + [4962] = {.lex_state = 122}, + [4963] = {.lex_state = 0}, [4964] = {.lex_state = 227}, - [4965] = {.lex_state = 227}, + [4965] = {.lex_state = 122}, [4966] = {.lex_state = 122}, - [4967] = {.lex_state = 122}, - [4968] = {.lex_state = 227}, - [4969] = {.lex_state = 121}, - [4970] = {.lex_state = 2209}, - [4971] = {.lex_state = 0}, + [4967] = {.lex_state = 2211}, + [4968] = {.lex_state = 2209}, + [4969] = {.lex_state = 0}, + [4970] = {.lex_state = 2}, + [4971] = {.lex_state = 122}, [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 122}, - [4974] = {.lex_state = 122}, - [4975] = {.lex_state = 2209}, - [4976] = {.lex_state = 584}, + [4973] = {.lex_state = 121}, + [4974] = {.lex_state = 2207}, + [4975] = {.lex_state = 0}, + [4976] = {.lex_state = 2207}, [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 0}, + [4978] = {.lex_state = 124}, [4979] = {.lex_state = 0}, - [4980] = {.lex_state = 147}, - [4981] = {.lex_state = 583}, - [4982] = {.lex_state = 122}, + [4980] = {.lex_state = 227}, + [4981] = {.lex_state = 0}, + [4982] = {.lex_state = 0}, [4983] = {.lex_state = 0}, [4984] = {.lex_state = 122}, - [4985] = {.lex_state = 2209}, - [4986] = {.lex_state = 2213}, - [4987] = {.lex_state = 0}, - [4988] = {.lex_state = 224}, - [4989] = {.lex_state = 124}, - [4990] = {.lex_state = 0}, + [4985] = {.lex_state = 0}, + [4986] = {.lex_state = 122}, + [4987] = {.lex_state = 2207}, + [4988] = {.lex_state = 0}, + [4989] = {.lex_state = 147}, + [4990] = {.lex_state = 122}, [4991] = {.lex_state = 0}, - [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 2211}, - [4995] = {.lex_state = 122}, - [4996] = {.lex_state = 227}, + [4992] = {.lex_state = 122}, + [4993] = {.lex_state = 122}, + [4994] = {.lex_state = 122}, + [4995] = {.lex_state = 0}, + [4996] = {.lex_state = 272}, [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 0}, - [4999] = {.lex_state = 122}, - [5000] = {.lex_state = 2209}, - [5001] = {.lex_state = 638}, - [5002] = {.lex_state = 122}, - [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 122}, - [5005] = {.lex_state = 124}, - [5006] = {.lex_state = 122}, - [5007] = {.lex_state = 147}, + [4998] = {.lex_state = 2209}, + [4999] = {.lex_state = 239}, + [5000] = {.lex_state = 0}, + [5001] = {.lex_state = 0}, + [5002] = {.lex_state = 0}, + [5003] = {.lex_state = 634}, + [5004] = {.lex_state = 272}, + [5005] = {.lex_state = 2207}, + [5006] = {.lex_state = 2207}, + [5007] = {.lex_state = 0}, [5008] = {.lex_state = 122}, - [5009] = {.lex_state = 122}, + [5009] = {.lex_state = 0}, [5010] = {.lex_state = 122}, - [5011] = {.lex_state = 0}, - [5012] = {.lex_state = 36}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 122}, + [5011] = {.lex_state = 580}, + [5012] = {.lex_state = 122}, + [5013] = {.lex_state = 122}, + [5014] = {.lex_state = 0}, [5015] = {.lex_state = 0}, [5016] = {.lex_state = 122}, - [5017] = {.lex_state = 121}, - [5018] = {.lex_state = 634}, + [5017] = {.lex_state = 122}, + [5018] = {.lex_state = 0}, [5019] = {.lex_state = 0}, - [5020] = {.lex_state = 2211}, - [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 227}, - [5023] = {.lex_state = 227}, - [5024] = {.lex_state = 227}, + [5020] = {.lex_state = 122}, + [5021] = {.lex_state = 122}, + [5022] = {.lex_state = 2209}, + [5023] = {.lex_state = 122}, + [5024] = {.lex_state = 122}, [5025] = {.lex_state = 0}, - [5026] = {.lex_state = 227}, - [5027] = {.lex_state = 122}, - [5028] = {.lex_state = 2211}, - [5029] = {.lex_state = 122}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 0}, + [5028] = {.lex_state = 0}, + [5029] = {.lex_state = 0}, [5030] = {.lex_state = 0}, [5031] = {.lex_state = 0}, [5032] = {.lex_state = 0}, - [5033] = {.lex_state = 0}, - [5034] = {.lex_state = 122}, - [5035] = {.lex_state = 239}, + [5033] = {.lex_state = 122}, + [5034] = {.lex_state = 227}, + [5035] = {.lex_state = 122}, [5036] = {.lex_state = 0}, [5037] = {.lex_state = 122}, - [5038] = {.lex_state = 227}, - [5039] = {.lex_state = 1741}, - [5040] = {.lex_state = 122}, - [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 2213}, - [5043] = {.lex_state = 0}, - [5044] = {.lex_state = 2213}, - [5045] = {.lex_state = 2209}, - [5046] = {.lex_state = 122}, - [5047] = {.lex_state = 122}, - [5048] = {.lex_state = 0}, - [5049] = {.lex_state = 2209}, - [5050] = {.lex_state = 2211}, - [5051] = {.lex_state = 122}, - [5052] = {.lex_state = 2209}, + [5038] = {.lex_state = 122}, + [5039] = {.lex_state = 2211}, + [5040] = {.lex_state = 2209}, + [5041] = {.lex_state = 2211}, + [5042] = {.lex_state = 2211}, + [5043] = {.lex_state = 122}, + [5044] = {.lex_state = 2207}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 2211}, + [5047] = {.lex_state = 33}, + [5048] = {.lex_state = 2209}, + [5049] = {.lex_state = 122}, + [5050] = {.lex_state = 121}, + [5051] = {.lex_state = 2207}, + [5052] = {.lex_state = 0}, [5053] = {.lex_state = 0}, - [5054] = {.lex_state = 2209}, - [5055] = {.lex_state = 272}, + [5054] = {.lex_state = 0}, + [5055] = {.lex_state = 0}, [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 227}, + [5057] = {.lex_state = 0}, [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 227}, + [5059] = {.lex_state = 122}, [5060] = {.lex_state = 0}, - [5061] = {.lex_state = 33}, - [5062] = {.lex_state = 2213}, - [5063] = {.lex_state = 33}, - [5064] = {.lex_state = 122}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 122}, - [5068] = {.lex_state = 0}, - [5069] = {.lex_state = 122}, - [5070] = {.lex_state = 2209}, - [5071] = {.lex_state = 2209}, + [5061] = {.lex_state = 0}, + [5062] = {.lex_state = 224}, + [5063] = {.lex_state = 0}, + [5064] = {.lex_state = 2207}, + [5065] = {.lex_state = 122}, + [5066] = {.lex_state = 33}, + [5067] = {.lex_state = 227}, + [5068] = {.lex_state = 2207}, + [5069] = {.lex_state = 2207}, + [5070] = {.lex_state = 124}, + [5071] = {.lex_state = 122}, [5072] = {.lex_state = 0}, - [5073] = {.lex_state = 634}, - [5074] = {.lex_state = 2209}, - [5075] = {.lex_state = 2209}, - [5076] = {.lex_state = 2209}, + [5073] = {.lex_state = 124}, + [5074] = {.lex_state = 122}, + [5075] = {.lex_state = 0}, + [5076] = {.lex_state = 0}, [5077] = {.lex_state = 0}, - [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 2209}, - [5080] = {.lex_state = 2213}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 2}, - [5083] = {.lex_state = 0}, - [5084] = {.lex_state = 2213}, - [5085] = {.lex_state = 2213}, - [5086] = {.lex_state = 0}, - [5087] = {.lex_state = 122}, - [5088] = {.lex_state = 124}, - [5089] = {.lex_state = 122}, - [5090] = {.lex_state = 122}, - [5091] = {.lex_state = 122}, - [5092] = {.lex_state = 122}, - [5093] = {.lex_state = 0}, + [5078] = {.lex_state = 147}, + [5079] = {.lex_state = 2207}, + [5080] = {.lex_state = 2207}, + [5081] = {.lex_state = 2207}, + [5082] = {.lex_state = 2207}, + [5083] = {.lex_state = 2207}, + [5084] = {.lex_state = 122}, + [5085] = {.lex_state = 0}, + [5086] = {.lex_state = 122}, + [5087] = {.lex_state = 2207}, + [5088] = {.lex_state = 122}, + [5089] = {.lex_state = 147}, + [5090] = {.lex_state = 227}, + [5091] = {.lex_state = 0}, + [5092] = {.lex_state = 2207}, + [5093] = {.lex_state = 227}, [5094] = {.lex_state = 122}, - [5095] = {.lex_state = 122}, - [5096] = {.lex_state = 2211}, - [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 33}, + [5095] = {.lex_state = 227}, + [5096] = {.lex_state = 227}, + [5097] = {.lex_state = 227}, + [5098] = {.lex_state = 0}, [5099] = {.lex_state = 0}, - [5100] = {.lex_state = 33}, - [5101] = {.lex_state = 227}, - [5102] = {.lex_state = 1211}, - [5103] = {.lex_state = 630}, - [5104] = {.lex_state = 121}, - [5105] = {.lex_state = 0, .external_lex_state = 3}, - [5106] = {.lex_state = 227}, - [5107] = {.lex_state = 230}, - [5108] = {.lex_state = 33}, - [5109] = {.lex_state = 0}, - [5110] = {.lex_state = 31}, - [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 227}, - [5113] = {.lex_state = 0}, - [5114] = {.lex_state = 583}, - [5115] = {.lex_state = 583}, - [5116] = {.lex_state = 33}, - [5117] = {.lex_state = 31}, - [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 0}, - [5120] = {.lex_state = 0, .external_lex_state = 3}, - [5121] = {.lex_state = 2}, - [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 33}, - [5124] = {.lex_state = 0}, + [5100] = {.lex_state = 0}, + [5101] = {.lex_state = 33}, + [5102] = {.lex_state = 0}, + [5103] = {.lex_state = 33}, + [5104] = {.lex_state = 579}, + [5105] = {.lex_state = 31}, + [5106] = {.lex_state = 626}, + [5107] = {.lex_state = 0, .external_lex_state = 3}, + [5108] = {.lex_state = 0, .external_lex_state = 3}, + [5109] = {.lex_state = 33}, + [5110] = {.lex_state = 230}, + [5111] = {.lex_state = 630}, + [5112] = {.lex_state = 0}, + [5113] = {.lex_state = 1712}, + [5114] = {.lex_state = 0}, + [5115] = {.lex_state = 33}, + [5116] = {.lex_state = 0}, + [5117] = {.lex_state = 579}, + [5118] = {.lex_state = 579}, + [5119] = {.lex_state = 33}, + [5120] = {.lex_state = 227}, + [5121] = {.lex_state = 0, .external_lex_state = 3}, + [5122] = {.lex_state = 33}, + [5123] = {.lex_state = 0, .external_lex_state = 3}, + [5124] = {.lex_state = 31}, [5125] = {.lex_state = 0}, - [5126] = {.lex_state = 0}, + [5126] = {.lex_state = 0, .external_lex_state = 3}, [5127] = {.lex_state = 0}, - [5128] = {.lex_state = 583}, - [5129] = {.lex_state = 583}, - [5130] = {.lex_state = 33}, - [5131] = {.lex_state = 237}, - [5132] = {.lex_state = 0}, - [5133] = {.lex_state = 1211}, - [5134] = {.lex_state = 0, .external_lex_state = 3}, - [5135] = {.lex_state = 630}, - [5136] = {.lex_state = 0}, + [5128] = {.lex_state = 1716}, + [5129] = {.lex_state = 0}, + [5130] = {.lex_state = 2209}, + [5131] = {.lex_state = 0}, + [5132] = {.lex_state = 579}, + [5133] = {.lex_state = 579}, + [5134] = {.lex_state = 33}, + [5135] = {.lex_state = 626}, + [5136] = {.lex_state = 230}, [5137] = {.lex_state = 0}, - [5138] = {.lex_state = 0}, - [5139] = {.lex_state = 230}, - [5140] = {.lex_state = 0}, - [5141] = {.lex_state = 583}, - [5142] = {.lex_state = 583}, - [5143] = {.lex_state = 274}, - [5144] = {.lex_state = 227}, - [5145] = {.lex_state = 0, .external_lex_state = 3}, - [5146] = {.lex_state = 0}, - [5147] = {.lex_state = 0}, - [5148] = {.lex_state = 583}, - [5149] = {.lex_state = 0}, + [5138] = {.lex_state = 0, .external_lex_state = 3}, + [5139] = {.lex_state = 626}, + [5140] = {.lex_state = 227}, + [5141] = {.lex_state = 33}, + [5142] = {.lex_state = 0}, + [5143] = {.lex_state = 121}, + [5144] = {.lex_state = 0}, + [5145] = {.lex_state = 579}, + [5146] = {.lex_state = 579}, + [5147] = {.lex_state = 230}, + [5148] = {.lex_state = 230}, + [5149] = {.lex_state = 0, .external_lex_state = 3}, [5150] = {.lex_state = 0}, - [5151] = {.lex_state = 0}, - [5152] = {.lex_state = 583}, - [5153] = {.lex_state = 583}, - [5154] = {.lex_state = 583}, - [5155] = {.lex_state = 0, .external_lex_state = 3}, - [5156] = {.lex_state = 0, .external_lex_state = 3}, - [5157] = {.lex_state = 583}, - [5158] = {.lex_state = 630}, - [5159] = {.lex_state = 1211}, - [5160] = {.lex_state = 121}, - [5161] = {.lex_state = 0}, - [5162] = {.lex_state = 583}, - [5163] = {.lex_state = 583}, + [5151] = {.lex_state = 227}, + [5152] = {.lex_state = 33}, + [5153] = {.lex_state = 0}, + [5154] = {.lex_state = 0}, + [5155] = {.lex_state = 0}, + [5156] = {.lex_state = 579}, + [5157] = {.lex_state = 579}, + [5158] = {.lex_state = 2209}, + [5159] = {.lex_state = 2}, + [5160] = {.lex_state = 0, .external_lex_state = 3}, + [5161] = {.lex_state = 2}, + [5162] = {.lex_state = 0}, + [5163] = {.lex_state = 0}, [5164] = {.lex_state = 0}, - [5165] = {.lex_state = 1720}, - [5166] = {.lex_state = 0, .external_lex_state = 3}, - [5167] = {.lex_state = 1741}, - [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 583}, - [5170] = {.lex_state = 583}, - [5171] = {.lex_state = 0}, + [5165] = {.lex_state = 0}, + [5166] = {.lex_state = 579}, + [5167] = {.lex_state = 579}, + [5168] = {.lex_state = 33}, + [5169] = {.lex_state = 0}, + [5170] = {.lex_state = 0, .external_lex_state = 3}, + [5171] = {.lex_state = 579}, [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 0, .external_lex_state = 3}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 0}, - [5176] = {.lex_state = 583}, - [5177] = {.lex_state = 583}, + [5173] = {.lex_state = 579}, + [5174] = {.lex_state = 579}, + [5175] = {.lex_state = 579}, + [5176] = {.lex_state = 227}, + [5177] = {.lex_state = 0, .external_lex_state = 3}, [5178] = {.lex_state = 0}, [5179] = {.lex_state = 0}, - [5180] = {.lex_state = 0, .external_lex_state = 3}, - [5181] = {.lex_state = 33}, - [5182] = {.lex_state = 0}, - [5183] = {.lex_state = 583}, - [5184] = {.lex_state = 583}, - [5185] = {.lex_state = 1716}, - [5186] = {.lex_state = 1211}, - [5187] = {.lex_state = 0, .external_lex_state = 3}, - [5188] = {.lex_state = 227}, - [5189] = {.lex_state = 0}, - [5190] = {.lex_state = 583}, - [5191] = {.lex_state = 583}, - [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 230}, - [5194] = {.lex_state = 0, .external_lex_state = 3}, - [5195] = {.lex_state = 227}, - [5196] = {.lex_state = 0}, - [5197] = {.lex_state = 583}, - [5198] = {.lex_state = 583}, - [5199] = {.lex_state = 33}, - [5200] = {.lex_state = 0, .external_lex_state = 3}, - [5201] = {.lex_state = 31}, - [5202] = {.lex_state = 0}, - [5203] = {.lex_state = 583}, - [5204] = {.lex_state = 583}, - [5205] = {.lex_state = 0}, - [5206] = {.lex_state = 0, .external_lex_state = 3}, - [5207] = {.lex_state = 121}, - [5208] = {.lex_state = 0}, - [5209] = {.lex_state = 583}, - [5210] = {.lex_state = 583}, - [5211] = {.lex_state = 121}, - [5212] = {.lex_state = 0, .external_lex_state = 4}, - [5213] = {.lex_state = 0}, - [5214] = {.lex_state = 0}, - [5215] = {.lex_state = 33}, - [5216] = {.lex_state = 0}, - [5217] = {.lex_state = 1716}, - [5218] = {.lex_state = 1720}, + [5180] = {.lex_state = 579}, + [5181] = {.lex_state = 579}, + [5182] = {.lex_state = 2207}, + [5183] = {.lex_state = 0}, + [5184] = {.lex_state = 0, .external_lex_state = 3}, + [5185] = {.lex_state = 0}, + [5186] = {.lex_state = 0}, + [5187] = {.lex_state = 579}, + [5188] = {.lex_state = 579}, + [5189] = {.lex_state = 1207}, + [5190] = {.lex_state = 0}, + [5191] = {.lex_state = 0, .external_lex_state = 3}, + [5192] = {.lex_state = 33}, + [5193] = {.lex_state = 0}, + [5194] = {.lex_state = 579}, + [5195] = {.lex_state = 579}, + [5196] = {.lex_state = 33}, + [5197] = {.lex_state = 0}, + [5198] = {.lex_state = 0, .external_lex_state = 3}, + [5199] = {.lex_state = 579}, + [5200] = {.lex_state = 0}, + [5201] = {.lex_state = 579}, + [5202] = {.lex_state = 579}, + [5203] = {.lex_state = 579}, + [5204] = {.lex_state = 0, .external_lex_state = 3}, + [5205] = {.lex_state = 2}, + [5206] = {.lex_state = 0}, + [5207] = {.lex_state = 579}, + [5208] = {.lex_state = 579}, + [5209] = {.lex_state = 0}, + [5210] = {.lex_state = 0, .external_lex_state = 3}, + [5211] = {.lex_state = 31}, + [5212] = {.lex_state = 0}, + [5213] = {.lex_state = 579}, + [5214] = {.lex_state = 579}, + [5215] = {.lex_state = 1207}, + [5216] = {.lex_state = 0, .external_lex_state = 4}, + [5217] = {.lex_state = 626}, + [5218] = {.lex_state = 0}, [5219] = {.lex_state = 0}, - [5220] = {.lex_state = 630}, - [5221] = {.lex_state = 33}, - [5222] = {.lex_state = 33}, - [5223] = {.lex_state = 33}, - [5224] = {.lex_state = 33}, - [5225] = {.lex_state = 0}, + [5220] = {.lex_state = 0}, + [5221] = {.lex_state = 1712}, + [5222] = {.lex_state = 1716}, + [5223] = {.lex_state = 31}, + [5224] = {.lex_state = 0}, + [5225] = {.lex_state = 33}, [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 0}, - [5228] = {.lex_state = 0, .external_lex_state = 3}, - [5229] = {.lex_state = 0}, - [5230] = {.lex_state = 0, .external_lex_state = 3}, - [5231] = {.lex_state = 2211}, + [5227] = {.lex_state = 1207}, + [5228] = {.lex_state = 230}, + [5229] = {.lex_state = 626}, + [5230] = {.lex_state = 0}, + [5231] = {.lex_state = 0}, [5232] = {.lex_state = 0}, - [5233] = {.lex_state = 33}, - [5234] = {.lex_state = 2}, - [5235] = {.lex_state = 33}, - [5236] = {.lex_state = 0}, - [5237] = {.lex_state = 673}, - [5238] = {.lex_state = 634}, - [5239] = {.lex_state = 227}, + [5233] = {.lex_state = 0}, + [5234] = {.lex_state = 33}, + [5235] = {.lex_state = 0}, + [5236] = {.lex_state = 33}, + [5237] = {.lex_state = 33}, + [5238] = {.lex_state = 0}, + [5239] = {.lex_state = 0}, [5240] = {.lex_state = 0}, - [5241] = {.lex_state = 0, .external_lex_state = 3}, - [5242] = {.lex_state = 0}, - [5243] = {.lex_state = 0}, - [5244] = {.lex_state = 630}, - [5245] = {.lex_state = 33}, - [5246] = {.lex_state = 31}, - [5247] = {.lex_state = 0}, - [5248] = {.lex_state = 630}, - [5249] = {.lex_state = 33}, + [5241] = {.lex_state = 2}, + [5242] = {.lex_state = 630}, + [5243] = {.lex_state = 0, .external_lex_state = 3}, + [5244] = {.lex_state = 121}, + [5245] = {.lex_state = 626}, + [5246] = {.lex_state = 0}, + [5247] = {.lex_state = 1207}, + [5248] = {.lex_state = 121}, + [5249] = {.lex_state = 2207}, [5250] = {.lex_state = 0}, [5251] = {.lex_state = 0}, - [5252] = {.lex_state = 0}, - [5253] = {.lex_state = 146}, + [5252] = {.lex_state = 626}, + [5253] = {.lex_state = 626}, [5254] = {.lex_state = 227}, - [5255] = {.lex_state = 0}, - [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 47}, - [5258] = {.lex_state = 33}, - [5259] = {.lex_state = 630}, - [5260] = {.lex_state = 0}, - [5261] = {.lex_state = 630}, - [5262] = {.lex_state = 227}, - [5263] = {.lex_state = 0}, - [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 2}, - [5266] = {.lex_state = 0}, - [5267] = {.lex_state = 0}, - [5268] = {.lex_state = 0}, + [5255] = {.lex_state = 2}, + [5256] = {.lex_state = 237}, + [5257] = {.lex_state = 231}, + [5258] = {.lex_state = 0, .external_lex_state = 3}, + [5259] = {.lex_state = 146}, + [5260] = {.lex_state = 274}, + [5261] = {.lex_state = 47}, + [5262] = {.lex_state = 0}, + [5263] = {.lex_state = 626}, + [5264] = {.lex_state = 33}, + [5265] = {.lex_state = 626}, + [5266] = {.lex_state = 227}, + [5267] = {.lex_state = 1207}, + [5268] = {.lex_state = 31}, [5269] = {.lex_state = 0}, - [5270] = {.lex_state = 1211}, - [5271] = {.lex_state = 33}, - [5272] = {.lex_state = 2213}, + [5270] = {.lex_state = 0}, + [5271] = {.lex_state = 227}, + [5272] = {.lex_state = 33}, [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 231}, + [5274] = {.lex_state = 0}, [5275] = {.lex_state = 0}, - [5276] = {.lex_state = 583}, - [5277] = {.lex_state = 230}, - [5278] = {.lex_state = 0}, - [5279] = {.lex_state = 583}, - [5280] = {.lex_state = 2213}, - [5281] = {.lex_state = 146}, - [5282] = {.lex_state = 583}, - [5283] = {.lex_state = 0}, + [5276] = {.lex_state = 33}, + [5277] = {.lex_state = 0}, + [5278] = {.lex_state = 121}, + [5279] = {.lex_state = 0}, + [5280] = {.lex_state = 33}, + [5281] = {.lex_state = 0}, + [5282] = {.lex_state = 0}, + [5283] = {.lex_state = 2207}, [5284] = {.lex_state = 0}, - [5285] = {.lex_state = 1211}, + [5285] = {.lex_state = 669}, [5286] = {.lex_state = 33}, [5287] = {.lex_state = 0}, - [5288] = {.lex_state = 583}, - [5289] = {.lex_state = 0}, - [5290] = {.lex_state = 583}, + [5288] = {.lex_state = 0}, + [5289] = {.lex_state = 579}, + [5290] = {.lex_state = 1207}, [5291] = {.lex_state = 0}, - [5292] = {.lex_state = 583}, + [5292] = {.lex_state = 579}, [5293] = {.lex_state = 0}, - [5294] = {.lex_state = 0}, - [5295] = {.lex_state = 146}, - [5296] = {.lex_state = 1211}, - [5297] = {.lex_state = 630}, - [5298] = {.lex_state = 0, .external_lex_state = 4}, - [5299] = {.lex_state = 583}, + [5294] = {.lex_state = 31}, + [5295] = {.lex_state = 0, .external_lex_state = 3}, + [5296] = {.lex_state = 1207}, + [5297] = {.lex_state = 0}, + [5298] = {.lex_state = 0}, + [5299] = {.lex_state = 626}, [5300] = {.lex_state = 0}, [5301] = {.lex_state = 0}, - [5302] = {.lex_state = 33}, - [5303] = {.lex_state = 230}, - [5304] = {.lex_state = 1211}, - [5305] = {.lex_state = 630}, - [5306] = {.lex_state = 2211}, - [5307] = {.lex_state = 673}, - [5308] = {.lex_state = 33}, - [5309] = {.lex_state = 33}, - [5310] = {.lex_state = 0}, - [5311] = {.lex_state = 31}, + [5302] = {.lex_state = 0}, + [5303] = {.lex_state = 227}, + [5304] = {.lex_state = 0}, + [5305] = {.lex_state = 0}, + [5306] = {.lex_state = 1737}, + [5307] = {.lex_state = 33}, + [5308] = {.lex_state = 0}, + [5309] = {.lex_state = 0}, + [5310] = {.lex_state = 1207}, + [5311] = {.lex_state = 33}, [5312] = {.lex_state = 0}, [5313] = {.lex_state = 0}, - [5314] = {.lex_state = 33}, - [5315] = {.lex_state = 1211}, + [5314] = {.lex_state = 579}, + [5315] = {.lex_state = 33}, [5316] = {.lex_state = 0}, - [5317] = {.lex_state = 0}, - [5318] = {.lex_state = 273}, - [5319] = {.lex_state = 0}, - [5320] = {.lex_state = 630}, + [5317] = {.lex_state = 47}, + [5318] = {.lex_state = 2}, + [5319] = {.lex_state = 230}, + [5320] = {.lex_state = 0}, [5321] = {.lex_state = 121}, - [5322] = {.lex_state = 0}, + [5322] = {.lex_state = 33}, [5323] = {.lex_state = 0}, - [5324] = {.lex_state = 630}, - [5325] = {.lex_state = 0}, - [5326] = {.lex_state = 0}, + [5324] = {.lex_state = 579}, + [5325] = {.lex_state = 579}, + [5326] = {.lex_state = 31}, [5327] = {.lex_state = 33}, - [5328] = {.lex_state = 33}, - [5329] = {.lex_state = 634}, - [5330] = {.lex_state = 33}, - [5331] = {.lex_state = 0, .external_lex_state = 3}, - [5332] = {.lex_state = 31}, - [5333] = {.lex_state = 2}, - [5334] = {.lex_state = 33}, - [5335] = {.lex_state = 0}, - [5336] = {.lex_state = 31}, - [5337] = {.lex_state = 227}, + [5328] = {.lex_state = 0}, + [5329] = {.lex_state = 0}, + [5330] = {.lex_state = 0}, + [5331] = {.lex_state = 230}, + [5332] = {.lex_state = 0, .external_lex_state = 3}, + [5333] = {.lex_state = 0}, + [5334] = {.lex_state = 579}, + [5335] = {.lex_state = 1207}, + [5336] = {.lex_state = 626}, + [5337] = {.lex_state = 33}, [5338] = {.lex_state = 0}, - [5339] = {.lex_state = 0}, - [5340] = {.lex_state = 0}, - [5341] = {.lex_state = 0}, - [5342] = {.lex_state = 0, .external_lex_state = 3}, - [5343] = {.lex_state = 0}, - [5344] = {.lex_state = 0}, - [5345] = {.lex_state = 33}, - [5346] = {.lex_state = 0}, + [5339] = {.lex_state = 579}, + [5340] = {.lex_state = 579}, + [5341] = {.lex_state = 227}, + [5342] = {.lex_state = 230}, + [5343] = {.lex_state = 626}, + [5344] = {.lex_state = 33}, + [5345] = {.lex_state = 0}, + [5346] = {.lex_state = 626}, [5347] = {.lex_state = 33}, - [5348] = {.lex_state = 0}, - [5349] = {.lex_state = 2209}, - [5350] = {.lex_state = 0}, - [5351] = {.lex_state = 227}, + [5348] = {.lex_state = 227}, + [5349] = {.lex_state = 0}, + [5350] = {.lex_state = 33}, + [5351] = {.lex_state = 0}, [5352] = {.lex_state = 0}, [5353] = {.lex_state = 0}, - [5354] = {.lex_state = 33}, - [5355] = {.lex_state = 33}, + [5354] = {.lex_state = 0}, + [5355] = {.lex_state = 0}, [5356] = {.lex_state = 0}, - [5357] = {.lex_state = 1211}, - [5358] = {.lex_state = 0}, - [5359] = {.lex_state = 0, .external_lex_state = 4}, + [5357] = {.lex_state = 0}, + [5358] = {.lex_state = 669}, + [5359] = {.lex_state = 33}, [5360] = {.lex_state = 0}, - [5361] = {.lex_state = 1716}, - [5362] = {.lex_state = 1720}, - [5363] = {.lex_state = 47}, - [5364] = {.lex_state = 2224}, - [5365] = {.lex_state = 0}, - [5366] = {.lex_state = 634}, - [5367] = {.lex_state = 0}, + [5361] = {.lex_state = 626}, + [5362] = {.lex_state = 579}, + [5363] = {.lex_state = 0, .external_lex_state = 4}, + [5364] = {.lex_state = 0}, + [5365] = {.lex_state = 1712}, + [5366] = {.lex_state = 1716}, + [5367] = {.lex_state = 579}, [5368] = {.lex_state = 0}, - [5369] = {.lex_state = 33}, - [5370] = {.lex_state = 0}, - [5371] = {.lex_state = 227}, - [5372] = {.lex_state = 230}, - [5373] = {.lex_state = 230}, + [5369] = {.lex_state = 1207}, + [5370] = {.lex_state = 630}, + [5371] = {.lex_state = 626}, + [5372] = {.lex_state = 33}, + [5373] = {.lex_state = 1207}, [5374] = {.lex_state = 0}, - [5375] = {.lex_state = 230}, - [5376] = {.lex_state = 0}, - [5377] = {.lex_state = 583}, - [5378] = {.lex_state = 583}, + [5375] = {.lex_state = 146}, + [5376] = {.lex_state = 626}, + [5377] = {.lex_state = 0}, + [5378] = {.lex_state = 0}, [5379] = {.lex_state = 0}, - [5380] = {.lex_state = 0}, - [5381] = {.lex_state = 630}, - [5382] = {.lex_state = 1211}, + [5380] = {.lex_state = 31}, + [5381] = {.lex_state = 230}, + [5382] = {.lex_state = 0}, [5383] = {.lex_state = 0}, - [5384] = {.lex_state = 1211}, - [5385] = {.lex_state = 0}, + [5384] = {.lex_state = 0}, + [5385] = {.lex_state = 33}, [5386] = {.lex_state = 0}, [5387] = {.lex_state = 0}, [5388] = {.lex_state = 33}, [5389] = {.lex_state = 0}, - [5390] = {.lex_state = 33}, - [5391] = {.lex_state = 0}, - [5392] = {.lex_state = 1211}, + [5390] = {.lex_state = 0}, + [5391] = {.lex_state = 230}, + [5392] = {.lex_state = 0}, [5393] = {.lex_state = 0}, - [5394] = {.lex_state = 630}, - [5395] = {.lex_state = 0}, - [5396] = {.lex_state = 33}, - [5397] = {.lex_state = 31}, - [5398] = {.lex_state = 227}, + [5394] = {.lex_state = 0}, + [5395] = {.lex_state = 1207}, + [5396] = {.lex_state = 1207}, + [5397] = {.lex_state = 0}, + [5398] = {.lex_state = 0}, [5399] = {.lex_state = 33}, - [5400] = {.lex_state = 230}, - [5401] = {.lex_state = 121}, - [5402] = {.lex_state = 0, .external_lex_state = 4}, - [5403] = {.lex_state = 0}, - [5404] = {.lex_state = 1716}, - [5405] = {.lex_state = 1720}, - [5406] = {.lex_state = 33}, - [5407] = {.lex_state = 634}, - [5408] = {.lex_state = 33}, - [5409] = {.lex_state = 33}, + [5400] = {.lex_state = 2209}, + [5401] = {.lex_state = 0, .external_lex_state = 4}, + [5402] = {.lex_state = 230}, + [5403] = {.lex_state = 121}, + [5404] = {.lex_state = 0}, + [5405] = {.lex_state = 33}, + [5406] = {.lex_state = 0, .external_lex_state = 4}, + [5407] = {.lex_state = 0}, + [5408] = {.lex_state = 1712}, + [5409] = {.lex_state = 1716}, [5410] = {.lex_state = 33}, [5411] = {.lex_state = 630}, - [5412] = {.lex_state = 0, .external_lex_state = 4}, - [5413] = {.lex_state = 0}, - [5414] = {.lex_state = 1716}, - [5415] = {.lex_state = 1720}, + [5412] = {.lex_state = 33}, + [5413] = {.lex_state = 2211}, + [5414] = {.lex_state = 0}, + [5415] = {.lex_state = 0, .external_lex_state = 3}, [5416] = {.lex_state = 0, .external_lex_state = 4}, [5417] = {.lex_state = 0}, - [5418] = {.lex_state = 1716}, - [5419] = {.lex_state = 1720}, + [5418] = {.lex_state = 1712}, + [5419] = {.lex_state = 1716}, [5420] = {.lex_state = 0, .external_lex_state = 4}, [5421] = {.lex_state = 0}, - [5422] = {.lex_state = 1716}, - [5423] = {.lex_state = 1720}, + [5422] = {.lex_state = 1712}, + [5423] = {.lex_state = 1716}, [5424] = {.lex_state = 0, .external_lex_state = 4}, - [5425] = {.lex_state = 1716}, - [5426] = {.lex_state = 1720}, - [5427] = {.lex_state = 0, .external_lex_state = 4}, - [5428] = {.lex_state = 1716}, - [5429] = {.lex_state = 1720}, - [5430] = {.lex_state = 0, .external_lex_state = 4}, - [5431] = {.lex_state = 1716}, - [5432] = {.lex_state = 1720}, - [5433] = {.lex_state = 0, .external_lex_state = 4}, - [5434] = {.lex_state = 1716}, - [5435] = {.lex_state = 1720}, - [5436] = {.lex_state = 0, .external_lex_state = 4}, - [5437] = {.lex_state = 1716}, - [5438] = {.lex_state = 1720}, - [5439] = {.lex_state = 0, .external_lex_state = 4}, - [5440] = {.lex_state = 1716}, - [5441] = {.lex_state = 1720}, - [5442] = {.lex_state = 0, .external_lex_state = 4}, - [5443] = {.lex_state = 1716}, - [5444] = {.lex_state = 1720}, - [5445] = {.lex_state = 0, .external_lex_state = 4}, - [5446] = {.lex_state = 1716}, - [5447] = {.lex_state = 1720}, - [5448] = {.lex_state = 0, .external_lex_state = 4}, - [5449] = {.lex_state = 1716}, - [5450] = {.lex_state = 1720}, - [5451] = {.lex_state = 0, .external_lex_state = 4}, - [5452] = {.lex_state = 1716}, - [5453] = {.lex_state = 1720}, - [5454] = {.lex_state = 0, .external_lex_state = 4}, - [5455] = {.lex_state = 1716}, - [5456] = {.lex_state = 1720}, - [5457] = {.lex_state = 0, .external_lex_state = 4}, - [5458] = {.lex_state = 1716}, - [5459] = {.lex_state = 1720}, - [5460] = {.lex_state = 0, .external_lex_state = 4}, - [5461] = {.lex_state = 1716}, - [5462] = {.lex_state = 1720}, - [5463] = {.lex_state = 0, .external_lex_state = 4}, - [5464] = {.lex_state = 1716}, - [5465] = {.lex_state = 1720}, - [5466] = {.lex_state = 0}, - [5467] = {.lex_state = 0, .external_lex_state = 3}, - [5468] = {.lex_state = 0}, - [5469] = {.lex_state = 146}, - [5470] = {.lex_state = 2213}, - [5471] = {.lex_state = 33}, - [5472] = {.lex_state = 583}, - [5473] = {.lex_state = 0}, + [5425] = {.lex_state = 0}, + [5426] = {.lex_state = 1712}, + [5427] = {.lex_state = 1716}, + [5428] = {.lex_state = 0, .external_lex_state = 4}, + [5429] = {.lex_state = 1712}, + [5430] = {.lex_state = 1716}, + [5431] = {.lex_state = 0, .external_lex_state = 4}, + [5432] = {.lex_state = 1712}, + [5433] = {.lex_state = 1716}, + [5434] = {.lex_state = 0, .external_lex_state = 4}, + [5435] = {.lex_state = 1712}, + [5436] = {.lex_state = 1716}, + [5437] = {.lex_state = 0, .external_lex_state = 4}, + [5438] = {.lex_state = 1712}, + [5439] = {.lex_state = 1716}, + [5440] = {.lex_state = 0, .external_lex_state = 4}, + [5441] = {.lex_state = 1712}, + [5442] = {.lex_state = 1716}, + [5443] = {.lex_state = 0, .external_lex_state = 4}, + [5444] = {.lex_state = 1712}, + [5445] = {.lex_state = 1716}, + [5446] = {.lex_state = 0, .external_lex_state = 4}, + [5447] = {.lex_state = 1712}, + [5448] = {.lex_state = 1716}, + [5449] = {.lex_state = 0, .external_lex_state = 4}, + [5450] = {.lex_state = 1712}, + [5451] = {.lex_state = 1716}, + [5452] = {.lex_state = 0, .external_lex_state = 4}, + [5453] = {.lex_state = 1712}, + [5454] = {.lex_state = 1716}, + [5455] = {.lex_state = 0, .external_lex_state = 4}, + [5456] = {.lex_state = 1712}, + [5457] = {.lex_state = 1716}, + [5458] = {.lex_state = 0, .external_lex_state = 4}, + [5459] = {.lex_state = 1712}, + [5460] = {.lex_state = 1716}, + [5461] = {.lex_state = 0, .external_lex_state = 4}, + [5462] = {.lex_state = 1712}, + [5463] = {.lex_state = 1716}, + [5464] = {.lex_state = 0, .external_lex_state = 4}, + [5465] = {.lex_state = 1712}, + [5466] = {.lex_state = 1716}, + [5467] = {.lex_state = 0, .external_lex_state = 4}, + [5468] = {.lex_state = 1712}, + [5469] = {.lex_state = 1716}, + [5470] = {.lex_state = 0}, + [5471] = {.lex_state = 2222}, + [5472] = {.lex_state = 0}, + [5473] = {.lex_state = 2211}, [5474] = {.lex_state = 0}, - [5475] = {.lex_state = 0}, - [5476] = {.lex_state = 31}, - [5477] = {.lex_state = 230}, + [5475] = {.lex_state = 33}, + [5476] = {.lex_state = 579}, + [5477] = {.lex_state = 0}, [5478] = {.lex_state = 33}, - [5479] = {.lex_state = 33}, + [5479] = {.lex_state = 0}, [5480] = {.lex_state = 33}, - [5481] = {.lex_state = 0}, - [5482] = {.lex_state = 2}, + [5481] = {.lex_state = 146}, + [5482] = {.lex_state = 0}, [5483] = {.lex_state = 0}, - [5484] = {.lex_state = 583}, - [5485] = {.lex_state = 583}, - [5486] = {.lex_state = 33}, - [5487] = {.lex_state = 630}, - [5488] = {.lex_state = 33}, + [5484] = {.lex_state = 33}, + [5485] = {.lex_state = 0}, + [5486] = {.lex_state = 579}, + [5487] = {.lex_state = 579}, + [5488] = {.lex_state = 227}, [5489] = {.lex_state = 0}, - [5490] = {.lex_state = 1211}, - [5491] = {.lex_state = 1211}, - [5492] = {.lex_state = 2}, - [5493] = {.lex_state = 0}, - [5494] = {.lex_state = 0}, + [5490] = {.lex_state = 33}, + [5491] = {.lex_state = 1207}, + [5492] = {.lex_state = 33}, + [5493] = {.lex_state = 33}, + [5494] = {.lex_state = 146}, [5495] = {.lex_state = 33}, - [5496] = {.lex_state = 227}, - [5497] = {.lex_state = 1211}, - [5498] = {.lex_state = 31}, - [5499] = {.lex_state = 0}, - [5500] = {.lex_state = 630}, - [5501] = {.lex_state = 0}, - [5502] = {.lex_state = 121}, - [5503] = {.lex_state = 2209}, - [5504] = {.lex_state = 121}, + [5496] = {.lex_state = 0}, + [5497] = {.lex_state = 0}, + [5498] = {.lex_state = 33}, + [5499] = {.lex_state = 1207}, + [5500] = {.lex_state = 33}, + [5501] = {.lex_state = 33}, + [5502] = {.lex_state = 0}, + [5503] = {.lex_state = 31}, + [5504] = {.lex_state = 227}, [5505] = {.lex_state = 0}, - [5506] = {.lex_state = 583}, - [5507] = {.lex_state = 583}, - [5508] = {.lex_state = 0, .external_lex_state = 3}, + [5506] = {.lex_state = 626}, + [5507] = {.lex_state = 0}, + [5508] = {.lex_state = 227}, [5509] = {.lex_state = 0}, - [5510] = {.lex_state = 33}, - [5511] = {.lex_state = 2209}, + [5510] = {.lex_state = 273}, + [5511] = {.lex_state = 1207}, [5512] = {.lex_state = 0}, - [5513] = {.lex_state = 583}, - [5514] = {.lex_state = 230}, - [5515] = {.lex_state = 33}, - [5516] = {.lex_state = 0}, - [5517] = {.lex_state = 0}, - [5518] = {.lex_state = 33}, - [5519] = {.lex_state = 2211}, - [5520] = {.lex_state = 230}, + [5513] = {.lex_state = 121}, + [5514] = {.lex_state = 33}, + [5515] = {.lex_state = 0, .external_lex_state = 3}, + [5516] = {.lex_state = 33}, + [5517] = {.lex_state = 230}, + [5518] = {.lex_state = 0}, + [5519] = {.lex_state = 33}, + [5520] = {.lex_state = 0}, [5521] = {.lex_state = 0}, - [5522] = {.lex_state = 0, .external_lex_state = 3}, + [5522] = {.lex_state = 0}, [5523] = {.lex_state = 0}, - [5524] = {.lex_state = 583}, - [5525] = {.lex_state = 583}, - [5526] = {.lex_state = 630}, - [5527] = {.lex_state = 33}, - [5528] = {.lex_state = 0}, - [5529] = {(TSStateId)(-1),}, + [5524] = {.lex_state = 0}, + [5525] = {.lex_state = 2211}, + [5526] = {.lex_state = 121}, + [5527] = {.lex_state = 0}, + [5528] = {.lex_state = 579}, + [5529] = {.lex_state = 579}, + [5530] = {.lex_state = 31}, + [5531] = {.lex_state = 227}, + [5532] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -39433,6 +39430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(1), [anon_sym_DOT2] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), [sym__unquoted_pattern_in_record] = ACTIONS(1), [aux_sym__unquoted_in_record_token1] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(3), @@ -39441,77 +39439,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(5341), - [sym_shebang] = STATE(59), - [sym__block_body_statement] = STATE(4627), - [sym__declaration] = STATE(4780), - [sym_decl_alias] = STATE(4857), - [sym_stmt_let] = STATE(4909), - [sym_stmt_mut] = STATE(4909), - [sym_stmt_const] = STATE(4909), - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym__statement] = STATE(4780), - [sym_pipeline] = STATE(4909), - [sym__block_body] = STATE(5300), - [sym_cmd_identifier] = STATE(2943), - [aux_sym__repeat_newline] = STATE(4905), - [sym_attribute_list] = STATE(4774), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4857), - [sym_decl_export] = STATE(4857), - [sym_decl_extern] = STATE(4857), - [sym_decl_module] = STATE(4857), - [sym_decl_use] = STATE(4857), - [sym__ctrl_statement] = STATE(4909), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_for] = STATE(4680), - [sym_ctrl_loop] = STATE(4680), - [sym_ctrl_while] = STATE(4680), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [sym_nu_script] = STATE(5377), + [sym_shebang] = STATE(52), + [sym__block_body_statement] = STATE(4410), + [sym__declaration] = STATE(4682), + [sym_decl_alias] = STATE(4683), + [sym_stmt_let] = STATE(4686), + [sym_stmt_mut] = STATE(4686), + [sym_stmt_const] = STATE(4686), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym__statement] = STATE(4682), + [sym_pipeline] = STATE(4686), + [sym__block_body] = STATE(5239), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(4868), + [sym_attribute_list] = STATE(4871), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4683), + [sym_decl_export] = STATE(4683), + [sym_decl_extern] = STATE(4683), + [sym_decl_module] = STATE(4683), + [sym_decl_use] = STATE(4683), + [sym__ctrl_statement] = STATE(4686), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_for] = STATE(4696), + [sym_ctrl_loop] = STATE(4696), + [sym_ctrl_while] = STATE(4696), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(181), [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(287), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -39571,7742 +39569,6883 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5278), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5178), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(70), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym__match_pattern_record_body] = STATE(5322), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(385), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5283), - [sym_record_entry] = STATE(4684), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym__match_pattern_record_body] = STATE(5509), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(398), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5190), + [sym_record_entry] = STATE(4880), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym__match_pattern_record_body_repeat1] = STATE(701), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(489), + [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(163), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5287), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5374), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5240), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5269), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(219), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5278), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5178), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(70), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5283), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5190), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5213), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5523), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5240), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5269), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5505), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5496), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(70), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5283), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5190), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(221), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5126), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5329), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5252), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5333), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5118), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5505), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5252), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5333), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(225), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5132), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5300), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5137), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5312), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5242), - [sym_cmd_identifier] = STATE(2707), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5266), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5349), + [sym_cmd_identifier] = STATE(2666), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5353), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5353), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5349), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5367), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5483), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(235), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5263), - [sym_cmd_identifier] = STATE(2707), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5269), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5281), + [sym_cmd_identifier] = STATE(2666), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5284), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(237), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5353), - [sym_cmd_identifier] = STATE(2707), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5481), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5150), + [sym_cmd_identifier] = STATE(2666), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5154), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5287), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5374), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5236), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5240), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5126), - [sym_cmd_identifier] = STATE(2707), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5329), + [sym_cmd_identifier] = STATE(2666), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(807), - [sym__spread_parenthesized] = STATE(4966), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(1225), - [sym__val_number_decimal] = STATE(102), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(1225), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(1225), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5350), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(796), + [sym__spread_parenthesized] = STATE(4962), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(1165), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(1165), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(1165), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5354), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_pipe_element_repeat2] = STATE(284), - [aux_sym_record_body_repeat1] = STATE(716), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [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), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(109), + [anon_sym_alias] = ACTIONS(111), + [anon_sym_let] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(117), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_export_DASHenv] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(127), + [anon_sym_module] = ACTIONS(129), + [anon_sym_for] = ACTIONS(131), + [anon_sym_loop] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(141), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(143), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [anon_sym_null] = ACTIONS(149), + [aux_sym_cmd_identifier_token3] = ACTIONS(151), + [aux_sym_cmd_identifier_token4] = ACTIONS(151), + [aux_sym_cmd_identifier_token5] = ACTIONS(151), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(185), + [aux_sym__val_number_decimal_token2] = ACTIONS(187), + [aux_sym__val_number_decimal_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token4] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5126), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5374), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(289), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5466), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(48), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5274), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(297), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5256), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5477), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(299), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5287), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5329), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(301), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5118), - [sym_cmd_identifier] = STATE(2819), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5505), + [sym_cmd_identifier] = STATE(2920), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(303), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5340), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(51), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5270), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(305), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5213), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5302), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(64), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(307), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5294), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5523), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(309), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5174), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5357), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(311), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5339), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5219), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(313), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5386), - [sym_cmd_identifier] = STATE(2819), - [aux_sym__repeat_newline] = STATE(1372), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5379), + [sym_cmd_identifier] = STATE(2920), + [aux_sym__repeat_newline] = STATE(1338), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym_parameter_pipes] = STATE(67), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(285), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), [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(315), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5233), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5405), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(335), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(339), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5224), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5286), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(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), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(353), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5271), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5168), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(351), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5347), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5141), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(353), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(355), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(361), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5479), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5347), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(365), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5123), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5480), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(369), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5527), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5359), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(335), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5355), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5237), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(351), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [anon_sym_RPAREN2] = ACTIONS(339), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5100), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5311), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5399), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5279), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(37)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5527), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5322), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(37), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(38)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5171), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5405), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(375), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5223), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5383), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(39), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(377), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(40)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5271), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5388), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(40), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(379), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(41)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5243), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5226), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(42)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5365), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5479), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(383), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5369), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5101), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(44)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5393), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5236), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(387), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(45)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5264), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5293), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(389), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5308), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5141), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5258), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5234), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(393), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(48)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5370), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5277), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(395), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(49)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5179), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5280), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5181), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5482), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(399), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(51)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5494), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5359), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(51), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(401), - [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(52)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5489), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(52), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(403), - [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(53)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5215), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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(405), - [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(54)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5347), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(55)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5355), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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(409), - [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(56)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5301), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(411), - [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(57)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5302), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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(413), - [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(58)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5310), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(415), - [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), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(59)] = { - [sym__block_body_statement] = STATE(4627), - [sym__declaration] = STATE(4780), - [sym_decl_alias] = STATE(4857), - [sym_stmt_let] = STATE(4909), - [sym_stmt_mut] = STATE(4909), - [sym_stmt_const] = STATE(4909), - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym__statement] = STATE(4780), - [sym_pipeline] = STATE(4909), - [sym__block_body] = STATE(5268), - [sym_cmd_identifier] = STATE(2943), - [sym_attribute_list] = STATE(4774), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4857), - [sym_decl_export] = STATE(4857), - [sym_decl_extern] = STATE(4857), - [sym_decl_module] = STATE(4857), - [sym_decl_use] = STATE(4857), - [sym__ctrl_statement] = STATE(4909), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_for] = STATE(4680), - [sym_ctrl_loop] = STATE(4680), - [sym_ctrl_while] = STATE(4680), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [STATE(52)] = { + [sym__block_body_statement] = STATE(4410), + [sym__declaration] = STATE(4682), + [sym_decl_alias] = STATE(4683), + [sym_stmt_let] = STATE(4686), + [sym_stmt_mut] = STATE(4686), + [sym_stmt_const] = STATE(4686), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym__statement] = STATE(4682), + [sym_pipeline] = STATE(4686), + [sym__block_body] = STATE(5470), + [sym_cmd_identifier] = STATE(2973), + [sym_attribute_list] = STATE(4871), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4683), + [sym_decl_export] = STATE(4683), + [sym_decl_extern] = STATE(4683), + [sym_decl_module] = STATE(4683), + [sym_decl_use] = STATE(4683), + [sym__ctrl_statement] = STATE(4686), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_for] = STATE(4696), + [sym_ctrl_loop] = STATE(4696), + [sym_ctrl_while] = STATE(4696), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), - [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(176), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(52), + [aux_sym_pipeline_repeat1] = STATE(181), [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(417), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(409), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -47364,2414 +46503,3350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(60)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5383), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [STATE(53)] = { + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5168), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(419), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(61)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5389), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [STATE(54)] = { + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5368), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(54), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(55)] = { + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5372), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(178), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(55), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(56)] = { + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5404), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(57)] = { + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5276), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(58)] = { + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5224), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_RBRACE] = ACTIONS(421), - [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), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5390), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [STATE(59)] = { + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5225), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_RPAREN] = ACTIONS(423), - [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), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(60)] = { + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5232), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(61)] = { + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5347), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(62)] = { + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5305), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(63)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5395), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5307), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(425), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(64)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5123), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5313), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(427), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(65)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5495), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5384), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(66)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5309), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5385), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(431), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5116), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5397), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(433), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5130), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5498), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(69)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5221), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5103), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(70)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5344), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5119), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(70), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(439), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(445), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(71)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5345), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5134), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(447), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5233), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5237), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [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), - [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_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(73)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5192), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5520), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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(445), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(74)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5408), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4235), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_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(457), - [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), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat1] = STATE(1316), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(453), + [anon_sym_alias] = ACTIONS(455), + [anon_sym_let] = ACTIONS(457), + [anon_sym_mut] = ACTIONS(459), + [anon_sym_const] = ACTIONS(461), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(75)] = { - [sym__block_body_statement_parenthesized] = STATE(4040), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5495), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [aux_sym__parenthesized_body_repeat2] = STATE(89), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(459), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(76)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5354), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement_parenthesized] = STATE(3986), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(1316), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(77)] = { - [sym__block_body_statement] = STATE(4236), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5272), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(77), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_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(457), - [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), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(453), + [anon_sym_alias] = ACTIONS(455), + [anon_sym_let] = ACTIONS(457), + [anon_sym_mut] = ACTIONS(459), + [anon_sym_const] = ACTIONS(461), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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), - [aux_sym_expr_unary_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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(78)] = { - [sym__block_body_statement] = STATE(4591), - [sym__declaration] = STATE(4780), - [sym_decl_alias] = STATE(4857), - [sym_stmt_let] = STATE(4909), - [sym_stmt_mut] = STATE(4909), - [sym_stmt_const] = STATE(4909), - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym__statement] = STATE(4780), - [sym_pipeline] = STATE(4909), - [sym_cmd_identifier] = STATE(2943), - [sym_attribute_list] = STATE(4774), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4857), - [sym_decl_export] = STATE(4857), - [sym_decl_extern] = STATE(4857), - [sym_decl_module] = STATE(4857), - [sym_decl_use] = STATE(4857), - [sym__ctrl_statement] = STATE(4909), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_for] = STATE(4680), - [sym_ctrl_loop] = STATE(4680), - [sym_ctrl_while] = STATE(4680), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [sym__block_body_statement] = STATE(4623), + [sym__declaration] = STATE(4682), + [sym_decl_alias] = STATE(4683), + [sym_stmt_let] = STATE(4686), + [sym_stmt_mut] = STATE(4686), + [sym_stmt_const] = STATE(4686), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym__statement] = STATE(4682), + [sym_pipeline] = STATE(4686), + [sym_cmd_identifier] = STATE(2973), + [sym_attribute_list] = STATE(4871), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4683), + [sym_decl_export] = STATE(4683), + [sym_decl_extern] = STATE(4683), + [sym_decl_module] = STATE(4683), + [sym_decl_use] = STATE(4683), + [sym__ctrl_statement] = STATE(4686), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_for] = STATE(4696), + [sym_ctrl_loop] = STATE(4696), + [sym_ctrl_while] = STATE(4696), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(181), [aux_sym__block_body_repeat1] = STATE(1382), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(461), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(465), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49829,463 +49904,719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(79)] = { - [sym__block_body_statement] = STATE(4236), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement] = STATE(4235), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat1] = STATE(1370), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat1] = STATE(1316), [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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), - [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(80)] = { - [sym__block_body_statement] = STATE(4279), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym__block_body] = STATE(5249), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__block_body_statement_parenthesized] = STATE(4132), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym__parenthesized_body] = STATE(5410), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_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(457), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(4171), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym__parenthesized_body] = STATE(5410), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym__block_body_statement] = STATE(4211), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym__block_body] = STATE(5475), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(453), + [anon_sym_alias] = ACTIONS(455), + [anon_sym_let] = ACTIONS(457), + [anon_sym_mut] = ACTIONS(459), + [anon_sym_const] = ACTIONS(461), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), [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), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(82)] = { - [sym__block_body_statement] = STATE(4584), - [sym__declaration] = STATE(4780), - [sym_decl_alias] = STATE(4857), - [sym_stmt_let] = STATE(4909), - [sym_stmt_mut] = STATE(4909), - [sym_stmt_const] = STATE(4909), - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym__statement] = STATE(4780), - [sym_pipeline] = STATE(4909), - [sym_cmd_identifier] = STATE(2943), - [sym_attribute_list] = STATE(4774), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4857), - [sym_decl_export] = STATE(4857), - [sym_decl_extern] = STATE(4857), - [sym_decl_module] = STATE(4857), - [sym_decl_use] = STATE(4857), - [sym__ctrl_statement] = STATE(4909), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_for] = STATE(4680), - [sym_ctrl_loop] = STATE(4680), - [sym_ctrl_while] = STATE(4680), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), + [sym__block_body_statement] = STATE(4681), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(472), + [anon_sym_let] = ACTIONS(475), + [anon_sym_mut] = ACTIONS(478), + [anon_sym_const] = ACTIONS(481), + [aux_sym_cmd_identifier_token1] = ACTIONS(484), + [anon_sym_def] = ACTIONS(487), + [anon_sym_use] = ACTIONS(490), + [anon_sym_export_DASHenv] = ACTIONS(493), + [anon_sym_extern] = ACTIONS(496), + [anon_sym_module] = ACTIONS(499), + [anon_sym_for] = ACTIONS(502), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(508), + [anon_sym_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(514), + [anon_sym_try] = ACTIONS(517), + [anon_sym_catch] = ACTIONS(514), + [anon_sym_finally] = ACTIONS(514), + [anon_sym_match] = ACTIONS(520), + [anon_sym_in] = ACTIONS(523), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [anon_sym_null] = ACTIONS(529), + [aux_sym_cmd_identifier_token3] = ACTIONS(532), + [aux_sym_cmd_identifier_token4] = ACTIONS(532), + [aux_sym_cmd_identifier_token5] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_DASH2] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_where] = ACTIONS(556), + [aux_sym_expr_unary_token1] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DOT_DOT_LT] = ACTIONS(562), + [aux_sym__val_number_decimal_token1] = ACTIONS(565), + [aux_sym__val_number_decimal_token2] = ACTIONS(568), + [aux_sym__val_number_decimal_token3] = ACTIONS(571), + [aux_sym__val_number_decimal_token4] = ACTIONS(571), + [aux_sym__val_number_token1] = ACTIONS(574), + [aux_sym__val_number_token2] = ACTIONS(574), + [aux_sym__val_number_token3] = ACTIONS(574), + [anon_sym_0b] = ACTIONS(577), + [anon_sym_0o] = ACTIONS(580), + [anon_sym_0x] = ACTIONS(580), + [sym_val_date] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(595), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(607), + }, + [STATE(83)] = { + [sym__block_body_statement_parenthesized] = STATE(4393), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(83), + [anon_sym_export] = ACTIONS(610), + [anon_sym_alias] = ACTIONS(613), + [anon_sym_let] = ACTIONS(616), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_const] = ACTIONS(622), + [aux_sym_cmd_identifier_token1] = ACTIONS(625), + [anon_sym_def] = ACTIONS(628), + [anon_sym_use] = ACTIONS(631), + [anon_sym_export_DASHenv] = ACTIONS(634), + [anon_sym_extern] = ACTIONS(637), + [anon_sym_module] = ACTIONS(640), + [anon_sym_for] = ACTIONS(643), + [anon_sym_loop] = ACTIONS(646), + [anon_sym_while] = ACTIONS(649), + [anon_sym_if] = ACTIONS(652), + [anon_sym_else] = ACTIONS(655), + [anon_sym_try] = ACTIONS(658), + [anon_sym_catch] = ACTIONS(655), + [anon_sym_finally] = ACTIONS(655), + [anon_sym_match] = ACTIONS(661), + [anon_sym_in] = ACTIONS(664), + [anon_sym_true] = ACTIONS(667), + [anon_sym_false] = ACTIONS(667), + [anon_sym_null] = ACTIONS(670), + [aux_sym_cmd_identifier_token3] = ACTIONS(673), + [aux_sym_cmd_identifier_token4] = ACTIONS(673), + [aux_sym_cmd_identifier_token5] = ACTIONS(673), + [anon_sym_AT] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DASH2] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_where] = ACTIONS(697), + [aux_sym_expr_unary_token1] = ACTIONS(700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(703), + [anon_sym_DOT_DOT_LT] = ACTIONS(703), + [aux_sym__val_number_decimal_token1] = ACTIONS(706), + [aux_sym__val_number_decimal_token2] = ACTIONS(709), + [aux_sym__val_number_decimal_token3] = ACTIONS(712), + [aux_sym__val_number_decimal_token4] = ACTIONS(712), + [aux_sym__val_number_token1] = ACTIONS(715), + [aux_sym__val_number_token2] = ACTIONS(715), + [aux_sym__val_number_token3] = ACTIONS(715), + [anon_sym_0b] = ACTIONS(718), + [anon_sym_0o] = ACTIONS(721), + [anon_sym_0x] = ACTIONS(721), + [sym_val_date] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(739), + [anon_sym_CARET] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(748), + }, + [STATE(84)] = { + [sym__block_body_statement] = STATE(4623), + [sym__declaration] = STATE(4682), + [sym_decl_alias] = STATE(4683), + [sym_stmt_let] = STATE(4686), + [sym_stmt_mut] = STATE(4686), + [sym_stmt_const] = STATE(4686), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym__statement] = STATE(4682), + [sym_pipeline] = STATE(4686), + [sym_cmd_identifier] = STATE(2973), + [sym_attribute_list] = STATE(4871), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4683), + [sym_decl_export] = STATE(4683), + [sym_decl_extern] = STATE(4683), + [sym_decl_module] = STATE(4683), + [sym_decl_use] = STATE(4683), + [sym__ctrl_statement] = STATE(4686), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_for] = STATE(4696), + [sym_ctrl_loop] = STATE(4696), + [sym_ctrl_while] = STATE(4696), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -50341,76 +50672,833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(83)] = { - [sym__block_body_statement] = STATE(4591), - [sym__declaration] = STATE(4780), - [sym_decl_alias] = STATE(4857), - [sym_stmt_let] = STATE(4909), - [sym_stmt_mut] = STATE(4909), - [sym_stmt_const] = STATE(4909), - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym__statement] = STATE(4780), - [sym_pipeline] = STATE(4909), - [sym_cmd_identifier] = STATE(2943), - [sym_attribute_list] = STATE(4774), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4857), - [sym_decl_export] = STATE(4857), - [sym_decl_extern] = STATE(4857), - [sym_decl_module] = STATE(4857), - [sym_decl_use] = STATE(4857), - [sym__ctrl_statement] = STATE(4909), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_for] = STATE(4680), - [sym_ctrl_loop] = STATE(4680), - [sym_ctrl_while] = STATE(4680), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [STATE(85)] = { + [sym__block_body_statement_parenthesized] = STATE(4175), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(83), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(86)] = { + [sym__block_body_statement] = STATE(4235), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(86), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(453), + [anon_sym_alias] = ACTIONS(455), + [anon_sym_let] = ACTIONS(457), + [anon_sym_mut] = ACTIONS(459), + [anon_sym_const] = ACTIONS(461), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(87)] = { + [sym__block_body_statement] = STATE(4268), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(453), + [anon_sym_alias] = ACTIONS(455), + [anon_sym_let] = ACTIONS(457), + [anon_sym_mut] = ACTIONS(459), + [anon_sym_const] = ACTIONS(461), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(88)] = { + [sym__block_body_statement_parenthesized] = STATE(3986), + [sym__declaration_parenthesized] = STATE(4882), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4678), + [sym_stmt_mut_parenthesized] = STATE(4678), + [sym_stmt_const_parenthesized] = STATE(4678), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym__statement_parenthesized] = STATE(4882), + [sym_pipeline_parenthesized] = STATE(4678), + [sym_cmd_identifier] = STATE(2982), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4678), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(83), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(89)] = { + [sym__block_body_statement] = STATE(4235), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(90)] = { + [sym__block_body_statement] = STATE(4268), + [sym__declaration] = STATE(4557), + [sym_decl_alias] = STATE(4561), + [sym_stmt_let] = STATE(4585), + [sym_stmt_mut] = STATE(4585), + [sym_stmt_const] = STATE(4585), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym__statement] = STATE(4557), + [sym_pipeline] = STATE(4585), + [sym_cmd_identifier] = STATE(2920), + [sym_attribute_list] = STATE(4905), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4561), + [sym_decl_export] = STATE(4561), + [sym_decl_extern] = STATE(4561), + [sym_decl_module] = STATE(4561), + [sym_decl_use] = STATE(4561), + [sym__ctrl_statement] = STATE(4585), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_for] = STATE(4614), + [sym_ctrl_loop] = STATE(4614), + [sym_ctrl_while] = STATE(4614), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(91)] = { + [sym__block_body_statement] = STATE(4413), + [sym__declaration] = STATE(4682), + [sym_decl_alias] = STATE(4683), + [sym_stmt_let] = STATE(4686), + [sym_stmt_mut] = STATE(4686), + [sym_stmt_const] = STATE(4686), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym__statement] = STATE(4682), + [sym_pipeline] = STATE(4686), + [sym_cmd_identifier] = STATE(2973), + [sym_attribute_list] = STATE(4871), + [sym_attribute] = STATE(5029), + [sym_decl_def] = STATE(4683), + [sym_decl_export] = STATE(4683), + [sym_decl_extern] = STATE(4683), + [sym_decl_module] = STATE(4683), + [sym_decl_use] = STATE(4683), + [sym__ctrl_statement] = STATE(4686), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_for] = STATE(4696), + [sym_ctrl_loop] = STATE(4696), + [sym_ctrl_while] = STATE(4696), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), - [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -50466,7113 +51554,6123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(84)] = { - [sym__block_body_statement_parenthesized] = STATE(4405), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [aux_sym__parenthesized_body_repeat2] = STATE(84), - [anon_sym_export] = ACTIONS(463), - [anon_sym_alias] = ACTIONS(466), - [anon_sym_let] = ACTIONS(469), - [anon_sym_mut] = ACTIONS(472), - [anon_sym_const] = ACTIONS(475), - [aux_sym_cmd_identifier_token1] = ACTIONS(478), - [anon_sym_def] = ACTIONS(481), - [anon_sym_use] = ACTIONS(484), - [anon_sym_export_DASHenv] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(490), - [anon_sym_module] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_while] = ACTIONS(502), - [anon_sym_if] = ACTIONS(505), - [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), - [anon_sym_false] = ACTIONS(520), - [anon_sym_null] = ACTIONS(523), - [aux_sym_cmd_identifier_token3] = ACTIONS(526), - [aux_sym_cmd_identifier_token4] = ACTIONS(526), - [aux_sym_cmd_identifier_token5] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(538), - [anon_sym_DASH2] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(547), - [anon_sym_where] = ACTIONS(550), - [aux_sym_expr_unary_token1] = ACTIONS(553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(556), - [anon_sym_DOT_DOT_LT] = ACTIONS(556), - [aux_sym__val_number_decimal_token1] = ACTIONS(559), - [aux_sym__val_number_decimal_token2] = ACTIONS(562), - [aux_sym__val_number_decimal_token3] = ACTIONS(565), - [aux_sym__val_number_decimal_token4] = ACTIONS(565), - [aux_sym__val_number_token1] = ACTIONS(568), - [aux_sym__val_number_token2] = ACTIONS(568), - [aux_sym__val_number_token3] = ACTIONS(568), - [anon_sym_0b] = ACTIONS(571), - [anon_sym_0o] = ACTIONS(574), - [anon_sym_0x] = ACTIONS(574), - [sym_val_date] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(598), - }, - [STATE(85)] = { - [sym__block_body_statement] = STATE(4869), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(292), - [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(86)] = { - [sym__block_body_statement] = STATE(4236), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_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(457), - [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_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4228), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_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(457), - [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_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(88)] = { - [sym__block_body_statement_parenthesized] = STATE(4040), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [aux_sym__parenthesized_body_repeat2] = STATE(84), - [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), - [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(89)] = { - [sym__block_body_statement_parenthesized] = STATE(4042), - [sym__declaration_parenthesized] = STATE(4878), - [sym_decl_alias_parenthesized] = STATE(4888), - [sym_stmt_let_parenthesized] = STATE(4890), - [sym_stmt_mut_parenthesized] = STATE(4890), - [sym_stmt_const_parenthesized] = STATE(4890), - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym__statement_parenthesized] = STATE(4878), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2963), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [aux_sym__parenthesized_body_repeat2] = STATE(84), - [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), - [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(90)] = { - [sym__block_body_statement] = STATE(4228), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(91)] = { - [sym__block_body_statement] = STATE(4236), - [sym__declaration] = STATE(4425), - [sym_decl_alias] = STATE(4427), - [sym_stmt_let] = STATE(4428), - [sym_stmt_mut] = STATE(4428), - [sym_stmt_const] = STATE(4428), - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym__statement] = STATE(4425), - [sym_pipeline] = STATE(4428), - [sym_cmd_identifier] = STATE(2819), - [sym_attribute_list] = STATE(4907), - [sym_attribute] = STATE(4998), - [sym_decl_def] = STATE(4427), - [sym_decl_export] = STATE(4427), - [sym_decl_extern] = STATE(4427), - [sym_decl_module] = STATE(4427), - [sym_decl_use] = STATE(4427), - [sym__ctrl_statement] = STATE(4428), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_for] = STATE(4437), - [sym_ctrl_loop] = STATE(4437), - [sym_ctrl_while] = STATE(4437), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4031), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(92)] = { [sym_comment] = STATE(92), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_COLON2] = ACTIONS(751), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(93)] = { [sym_comment] = STATE(93), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(751), - [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), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(763), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_COLON2] = ACTIONS(759), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [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), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(755), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(95)] = { [sym_comment] = STATE(95), - [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_token1] = ACTIONS(759), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(771), + [aux_sym__immediate_decimal_token5] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(96)] = { [sym_comment] = STATE(96), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [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), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(97)] = { [sym_comment] = STATE(97), - [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_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), - [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), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(779), + [aux_sym__immediate_decimal_token5] = ACTIONS(781), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(98)] = { [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(783), + [aux_sym__immediate_decimal_token5] = ACTIONS(785), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(99)] = { [sym_comment] = STATE(99), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(771), - [aux_sym__immediate_decimal_token5] = ACTIONS(773), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(100)] = { [sym_comment] = STATE(100), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_COLON2] = ACTIONS(775), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_COLON2] = ACTIONS(751), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(101)] = { [sym_comment] = STATE(101), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [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), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_COLON2] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(102)] = { [sym_comment] = STATE(102), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(787), - [anon_sym_SLASH_SLASH] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_bit_DASHshl] = ACTIONS(787), - [anon_sym_bit_DASHshr] = ACTIONS(787), - [anon_sym_EQ_TILDE] = ACTIONS(787), - [anon_sym_BANG_TILDE] = ACTIONS(787), - [anon_sym_like] = ACTIONS(787), - [anon_sym_not_DASHlike] = ACTIONS(787), - [anon_sym_bit_DASHand] = ACTIONS(787), - [anon_sym_bit_DASHxor] = ACTIONS(787), - [anon_sym_bit_DASHor] = ACTIONS(787), - [anon_sym_and] = ACTIONS(787), - [anon_sym_xor] = ACTIONS(787), - [anon_sym_or] = ACTIONS(787), - [anon_sym_in2] = ACTIONS(787), - [anon_sym_not_DASHin] = ACTIONS(787), - [anon_sym_has] = ACTIONS(787), - [anon_sym_not_DASHhas] = ACTIONS(787), - [anon_sym_starts_DASHwith] = ACTIONS(787), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(787), - [anon_sym_ends_DASHwith] = ACTIONS(787), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(787), - [anon_sym_EQ_EQ] = ACTIONS(787), - [anon_sym_BANG_EQ] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(787), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(797), - [sym_duration_unit] = ACTIONS(799), - [anon_sym_COLON2] = ACTIONS(785), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(785), - [anon_sym_out_GT_GT] = ACTIONS(785), - [anon_sym_e_GT_GT] = ACTIONS(785), - [anon_sym_o_GT_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(799), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(103)] = { - [sym_expr_parenthesized] = STATE(2710), - [sym__spread_parenthesized] = STATE(3196), - [sym_val_range] = STATE(3197), - [sym__val_range] = STATE(4752), - [sym__value] = STATE(3197), - [sym_val_nothing] = STATE(3097), - [sym_val_bool] = STATE(2788), - [sym__spread_variable] = STATE(3198), - [sym_val_variable] = STATE(2714), - [sym_val_cellpath] = STATE(3097), - [sym_val_number] = STATE(3097), - [sym__val_number_decimal] = STATE(2409), - [sym__val_number] = STATE(3098), - [sym_val_duration] = STATE(3097), - [sym_val_filesize] = STATE(3097), - [sym_val_binary] = STATE(3097), - [sym_val_string] = STATE(3097), - [sym__raw_str] = STATE(2476), - [sym__str_double_quotes] = STATE(2476), - [sym__str_single_quotes] = STATE(2476), - [sym__str_back_ticks] = STATE(2476), - [sym_val_interpolated] = STATE(3097), - [sym__inter_single_quotes] = STATE(3135), - [sym__inter_double_quotes] = STATE(3139), - [sym_val_list] = STATE(3097), - [sym__spread_list] = STATE(3196), - [sym_val_record] = STATE(3097), - [sym_val_table] = STATE(3097), - [sym_val_closure] = STATE(3097), - [sym__cmd_arg] = STATE(3199), - [sym_redirection] = STATE(3200), - [sym__flag] = STATE(3201), - [sym_short_flag] = STATE(3203), - [sym_long_flag] = STATE(3203), - [sym_unquoted] = STATE(2835), - [sym__unquoted_with_expr] = STATE(3204), - [sym__unquoted_anonymous_prefix] = STATE(4752), [sym_comment] = STATE(103), - [anon_sym_true] = ACTIONS(801), - [anon_sym_false] = ACTIONS(801), - [anon_sym_null] = ACTIONS(803), - [aux_sym_cmd_identifier_token3] = ACTIONS(805), - [aux_sym_cmd_identifier_token4] = ACTIONS(805), - [aux_sym_cmd_identifier_token5] = ACTIONS(805), - [sym__newline] = ACTIONS(807), - [sym__space] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_err_GT_PIPE] = ACTIONS(807), - [anon_sym_out_GT_PIPE] = ACTIONS(807), - [anon_sym_e_GT_PIPE] = ACTIONS(807), - [anon_sym_o_GT_PIPE] = ACTIONS(807), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(807), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(807), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_DASH2] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(827), - [anon_sym_DOT_DOT_LT] = ACTIONS(827), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), - [aux_sym__val_number_decimal_token1] = ACTIONS(831), - [aux_sym__val_number_decimal_token2] = ACTIONS(831), - [aux_sym__val_number_decimal_token3] = ACTIONS(833), - [aux_sym__val_number_decimal_token4] = ACTIONS(833), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(837), - [anon_sym_0o] = ACTIONS(839), - [anon_sym_0x] = ACTIONS(839), - [sym_val_date] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_SQUOTE] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), - [anon_sym_err_GT] = ACTIONS(855), - [anon_sym_out_GT] = ACTIONS(855), - [anon_sym_e_GT] = ACTIONS(855), - [anon_sym_o_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT] = ACTIONS(855), - [anon_sym_err_GT_GT] = ACTIONS(855), - [anon_sym_out_GT_GT] = ACTIONS(855), - [anon_sym_e_GT_GT] = ACTIONS(855), - [anon_sym_o_GT_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), - [aux_sym_unquoted_token1] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(859), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(801), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(104)] = { [sym_comment] = STATE(104), - [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), - [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), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(105)] = { - [sym_expr_parenthesized] = STATE(2710), - [sym__spread_parenthesized] = STATE(3196), - [sym_val_range] = STATE(3197), - [sym__val_range] = STATE(4752), - [sym__value] = STATE(3197), - [sym_val_nothing] = STATE(3097), - [sym_val_bool] = STATE(2788), - [sym__spread_variable] = STATE(3198), - [sym_val_variable] = STATE(2714), - [sym_val_cellpath] = STATE(3097), - [sym_val_number] = STATE(3097), - [sym__val_number_decimal] = STATE(2409), - [sym__val_number] = STATE(3098), - [sym_val_duration] = STATE(3097), - [sym_val_filesize] = STATE(3097), - [sym_val_binary] = STATE(3097), - [sym_val_string] = STATE(3097), - [sym__raw_str] = STATE(2476), - [sym__str_double_quotes] = STATE(2476), - [sym__str_single_quotes] = STATE(2476), - [sym__str_back_ticks] = STATE(2476), - [sym_val_interpolated] = STATE(3097), - [sym__inter_single_quotes] = STATE(3135), - [sym__inter_double_quotes] = STATE(3139), - [sym_val_list] = STATE(3097), - [sym__spread_list] = STATE(3196), - [sym_val_record] = STATE(3097), - [sym_val_table] = STATE(3097), - [sym_val_closure] = STATE(3097), - [sym__cmd_arg] = STATE(3199), - [sym_redirection] = STATE(3200), - [sym__flag] = STATE(3201), - [sym_short_flag] = STATE(3203), - [sym_long_flag] = STATE(3203), - [sym_unquoted] = STATE(2835), - [sym__unquoted_with_expr] = STATE(3204), - [sym__unquoted_anonymous_prefix] = STATE(4752), [sym_comment] = STATE(105), - [anon_sym_true] = ACTIONS(801), - [anon_sym_false] = ACTIONS(801), - [anon_sym_null] = ACTIONS(803), - [aux_sym_cmd_identifier_token3] = ACTIONS(805), - [aux_sym_cmd_identifier_token4] = ACTIONS(805), - [aux_sym_cmd_identifier_token5] = ACTIONS(805), - [sym__newline] = ACTIONS(861), - [sym__space] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_err_GT_PIPE] = ACTIONS(807), - [anon_sym_out_GT_PIPE] = ACTIONS(807), - [anon_sym_e_GT_PIPE] = ACTIONS(807), - [anon_sym_o_GT_PIPE] = ACTIONS(807), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(807), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(807), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_DASH2] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(827), - [anon_sym_DOT_DOT_LT] = ACTIONS(827), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), - [aux_sym__val_number_decimal_token1] = ACTIONS(831), - [aux_sym__val_number_decimal_token2] = ACTIONS(831), - [aux_sym__val_number_decimal_token3] = ACTIONS(833), - [aux_sym__val_number_decimal_token4] = ACTIONS(833), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(837), - [anon_sym_0o] = ACTIONS(839), - [anon_sym_0x] = ACTIONS(839), - [sym_val_date] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_SQUOTE] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), - [anon_sym_COLON2] = ACTIONS(864), - [anon_sym_err_GT] = ACTIONS(855), - [anon_sym_out_GT] = ACTIONS(855), - [anon_sym_e_GT] = ACTIONS(855), - [anon_sym_o_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT] = ACTIONS(855), - [anon_sym_err_GT_GT] = ACTIONS(855), - [anon_sym_out_GT_GT] = ACTIONS(855), - [anon_sym_e_GT_GT] = ACTIONS(855), - [anon_sym_o_GT_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), - [aux_sym_unquoted_token1] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(859), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_COLON2] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(106)] = { [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_COLON2] = ACTIONS(775), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(107)] = { [sym_comment] = STATE(107), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(807), + [aux_sym__immediate_decimal_token5] = ACTIONS(809), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(108)] = { [sym_comment] = STATE(108), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), - [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), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_bit_DASHshl] = ACTIONS(813), + [anon_sym_bit_DASHshr] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(813), + [anon_sym_BANG_TILDE] = ACTIONS(813), + [anon_sym_like] = ACTIONS(813), + [anon_sym_not_DASHlike] = ACTIONS(813), + [anon_sym_bit_DASHand] = ACTIONS(813), + [anon_sym_bit_DASHxor] = ACTIONS(813), + [anon_sym_bit_DASHor] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_xor] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_in2] = ACTIONS(813), + [anon_sym_not_DASHin] = ACTIONS(813), + [anon_sym_has] = ACTIONS(813), + [anon_sym_not_DASHhas] = ACTIONS(813), + [anon_sym_starts_DASHwith] = ACTIONS(813), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(813), + [anon_sym_ends_DASHwith] = ACTIONS(813), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(813), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(813), + [aux_sym_cmd_identifier_token6] = ACTIONS(817), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(823), + [sym_duration_unit] = ACTIONS(825), + [anon_sym_COLON2] = ACTIONS(811), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(109)] = { [sym_comment] = STATE(109), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(110)] = { + [sym_expr_parenthesized] = STATE(2709), + [sym__spread_parenthesized] = STATE(3240), + [sym_val_range] = STATE(3250), + [sym__val_range] = STATE(4751), + [sym__value] = STATE(3250), + [sym_val_nothing] = STATE(3138), + [sym_val_bool] = STATE(2899), + [sym__spread_variable] = STATE(3259), + [sym_val_variable] = STATE(2712), + [sym_val_cellpath] = STATE(3138), + [sym_val_number] = STATE(3138), + [sym__val_number_decimal] = STATE(2418), + [sym__val_number] = STATE(3139), + [sym_val_duration] = STATE(3138), + [sym_val_filesize] = STATE(3138), + [sym_val_binary] = STATE(3138), + [sym_val_string] = STATE(3138), + [sym__raw_str] = STATE(2503), + [sym__str_double_quotes] = STATE(2503), + [sym__str_single_quotes] = STATE(2503), + [sym__str_back_ticks] = STATE(2503), + [sym_val_interpolated] = STATE(3138), + [sym__inter_single_quotes] = STATE(3179), + [sym__inter_double_quotes] = STATE(3180), + [sym_val_list] = STATE(3138), + [sym__spread_list] = STATE(3240), + [sym_val_record] = STATE(3138), + [sym_val_table] = STATE(3138), + [sym_val_closure] = STATE(3138), + [sym__cmd_arg] = STATE(3260), + [sym_redirection] = STATE(3222), + [sym__flag] = STATE(3262), + [sym_short_flag] = STATE(3082), + [sym_long_flag] = STATE(3082), + [sym_unquoted] = STATE(2734), + [sym__unquoted_with_expr] = STATE(3102), + [sym__unquoted_anonymous_prefix] = STATE(4751), [sym_comment] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(777), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(870), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [anon_sym_null] = ACTIONS(829), + [aux_sym_cmd_identifier_token3] = ACTIONS(831), + [aux_sym_cmd_identifier_token4] = ACTIONS(831), + [aux_sym_cmd_identifier_token5] = ACTIONS(831), + [sym__newline] = ACTIONS(833), + [sym__space] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_err_GT_PIPE] = ACTIONS(833), + [anon_sym_out_GT_PIPE] = ACTIONS(833), + [anon_sym_e_GT_PIPE] = ACTIONS(833), + [anon_sym_o_GT_PIPE] = ACTIONS(833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_DASH2] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(849), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [anon_sym_DOT_DOT_LT] = ACTIONS(853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(857), + [aux_sym__val_number_decimal_token2] = ACTIONS(857), + [aux_sym__val_number_decimal_token3] = ACTIONS(859), + [aux_sym__val_number_decimal_token4] = ACTIONS(859), + [aux_sym__val_number_token1] = ACTIONS(861), + [aux_sym__val_number_token2] = ACTIONS(861), + [aux_sym__val_number_token3] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(863), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_BQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), + [anon_sym_err_GT] = ACTIONS(881), + [anon_sym_out_GT] = ACTIONS(881), + [anon_sym_e_GT] = ACTIONS(881), + [anon_sym_o_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT] = ACTIONS(881), + [anon_sym_err_GT_GT] = ACTIONS(881), + [anon_sym_out_GT_GT] = ACTIONS(881), + [anon_sym_e_GT_GT] = ACTIONS(881), + [anon_sym_o_GT_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), + [aux_sym_unquoted_token1] = ACTIONS(883), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(885), }, [STATE(111)] = { + [sym_expr_parenthesized] = STATE(2709), + [sym__spread_parenthesized] = STATE(3240), + [sym_val_range] = STATE(3250), + [sym__val_range] = STATE(4751), + [sym__value] = STATE(3250), + [sym_val_nothing] = STATE(3138), + [sym_val_bool] = STATE(2899), + [sym__spread_variable] = STATE(3259), + [sym_val_variable] = STATE(2712), + [sym_val_cellpath] = STATE(3138), + [sym_val_number] = STATE(3138), + [sym__val_number_decimal] = STATE(2418), + [sym__val_number] = STATE(3139), + [sym_val_duration] = STATE(3138), + [sym_val_filesize] = STATE(3138), + [sym_val_binary] = STATE(3138), + [sym_val_string] = STATE(3138), + [sym__raw_str] = STATE(2503), + [sym__str_double_quotes] = STATE(2503), + [sym__str_single_quotes] = STATE(2503), + [sym__str_back_ticks] = STATE(2503), + [sym_val_interpolated] = STATE(3138), + [sym__inter_single_quotes] = STATE(3179), + [sym__inter_double_quotes] = STATE(3180), + [sym_val_list] = STATE(3138), + [sym__spread_list] = STATE(3240), + [sym_val_record] = STATE(3138), + [sym_val_table] = STATE(3138), + [sym_val_closure] = STATE(3138), + [sym__cmd_arg] = STATE(3260), + [sym_redirection] = STATE(3222), + [sym__flag] = STATE(3262), + [sym_short_flag] = STATE(3082), + [sym_long_flag] = STATE(3082), + [sym_unquoted] = STATE(2734), + [sym__unquoted_with_expr] = STATE(3102), + [sym__unquoted_anonymous_prefix] = STATE(4751), [sym_comment] = STATE(111), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(872), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [anon_sym_null] = ACTIONS(829), + [aux_sym_cmd_identifier_token3] = ACTIONS(831), + [aux_sym_cmd_identifier_token4] = ACTIONS(831), + [aux_sym_cmd_identifier_token5] = ACTIONS(831), + [sym__newline] = ACTIONS(887), + [sym__space] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_err_GT_PIPE] = ACTIONS(833), + [anon_sym_out_GT_PIPE] = ACTIONS(833), + [anon_sym_e_GT_PIPE] = ACTIONS(833), + [anon_sym_o_GT_PIPE] = ACTIONS(833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_DASH2] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(849), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [anon_sym_DOT_DOT_LT] = ACTIONS(853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(857), + [aux_sym__val_number_decimal_token2] = ACTIONS(857), + [aux_sym__val_number_decimal_token3] = ACTIONS(859), + [aux_sym__val_number_decimal_token4] = ACTIONS(859), + [aux_sym__val_number_token1] = ACTIONS(861), + [aux_sym__val_number_token2] = ACTIONS(861), + [aux_sym__val_number_token3] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(863), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_BQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), + [anon_sym_COLON2] = ACTIONS(890), + [anon_sym_err_GT] = ACTIONS(881), + [anon_sym_out_GT] = ACTIONS(881), + [anon_sym_e_GT] = ACTIONS(881), + [anon_sym_o_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT] = ACTIONS(881), + [anon_sym_err_GT_GT] = ACTIONS(881), + [anon_sym_out_GT_GT] = ACTIONS(881), + [anon_sym_e_GT_GT] = ACTIONS(881), + [anon_sym_o_GT_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), + [aux_sym_unquoted_token1] = ACTIONS(883), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(885), }, [STATE(112)] = { [sym_comment] = STATE(112), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(874), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(892), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(113)] = { [sym_comment] = STATE(113), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(878), - [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), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_COLON2] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(114)] = { [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(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), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(115)] = { [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(880), - [aux_sym__immediate_decimal_token5] = ACTIONS(882), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_COLON2] = ACTIONS(759), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(116)] = { [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(799), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(117)] = { + [sym_expr_parenthesized] = STATE(2709), + [sym__spread_parenthesized] = STATE(3240), + [sym_val_range] = STATE(3250), + [sym__val_range] = STATE(4751), + [sym__value] = STATE(3250), + [sym_val_nothing] = STATE(3138), + [sym_val_bool] = STATE(2899), + [sym__spread_variable] = STATE(3259), + [sym_val_variable] = STATE(2712), + [sym_val_cellpath] = STATE(3138), + [sym_val_number] = STATE(3138), + [sym__val_number_decimal] = STATE(2418), + [sym__val_number] = STATE(3139), + [sym_val_duration] = STATE(3138), + [sym_val_filesize] = STATE(3138), + [sym_val_binary] = STATE(3138), + [sym_val_string] = STATE(3138), + [sym__raw_str] = STATE(2503), + [sym__str_double_quotes] = STATE(2503), + [sym__str_single_quotes] = STATE(2503), + [sym__str_back_ticks] = STATE(2503), + [sym_val_interpolated] = STATE(3138), + [sym__inter_single_quotes] = STATE(3179), + [sym__inter_double_quotes] = STATE(3180), + [sym_val_list] = STATE(3138), + [sym__spread_list] = STATE(3240), + [sym_val_record] = STATE(3138), + [sym_val_table] = STATE(3138), + [sym_val_closure] = STATE(3138), + [sym__cmd_arg] = STATE(3314), + [sym_redirection] = STATE(3222), + [sym__flag] = STATE(3262), + [sym_short_flag] = STATE(3082), + [sym_long_flag] = STATE(3082), + [sym_unquoted] = STATE(2734), + [sym__unquoted_with_expr] = STATE(3102), + [sym__unquoted_anonymous_prefix] = STATE(4751), [sym_comment] = STATE(117), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_SLASH_SLASH] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_bit_DASHshl] = ACTIONS(886), - [anon_sym_bit_DASHshr] = ACTIONS(886), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_BANG_TILDE] = ACTIONS(886), - [anon_sym_like] = ACTIONS(886), - [anon_sym_not_DASHlike] = ACTIONS(886), - [anon_sym_bit_DASHand] = ACTIONS(886), - [anon_sym_bit_DASHxor] = ACTIONS(886), - [anon_sym_bit_DASHor] = ACTIONS(886), - [anon_sym_and] = ACTIONS(886), - [anon_sym_xor] = ACTIONS(886), - [anon_sym_or] = ACTIONS(886), - [anon_sym_in2] = ACTIONS(886), - [anon_sym_not_DASHin] = ACTIONS(886), - [anon_sym_has] = ACTIONS(886), - [anon_sym_not_DASHhas] = ACTIONS(886), - [anon_sym_starts_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), - [anon_sym_ends_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_GT_EQ] = ACTIONS(886), - [aux_sym_cmd_identifier_token6] = ACTIONS(890), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), - [anon_sym_DOT_DOT_LT2] = ACTIONS(894), - [sym_filesize_unit] = ACTIONS(896), - [sym_duration_unit] = ACTIONS(898), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(785), - [anon_sym_out_GT_GT] = ACTIONS(785), - [anon_sym_e_GT_GT] = ACTIONS(785), - [anon_sym_o_GT_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [anon_sym_null] = ACTIONS(829), + [aux_sym_cmd_identifier_token3] = ACTIONS(831), + [aux_sym_cmd_identifier_token4] = ACTIONS(831), + [aux_sym_cmd_identifier_token5] = ACTIONS(831), + [sym__newline] = ACTIONS(896), + [sym__space] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_err_GT_PIPE] = ACTIONS(896), + [anon_sym_out_GT_PIPE] = ACTIONS(896), + [anon_sym_e_GT_PIPE] = ACTIONS(896), + [anon_sym_o_GT_PIPE] = ACTIONS(896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(843), + [anon_sym_DASH2] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(849), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [anon_sym_DOT_DOT_LT] = ACTIONS(853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(857), + [aux_sym__val_number_decimal_token2] = ACTIONS(857), + [aux_sym__val_number_decimal_token3] = ACTIONS(859), + [aux_sym__val_number_decimal_token4] = ACTIONS(859), + [aux_sym__val_number_token1] = ACTIONS(861), + [aux_sym__val_number_token2] = ACTIONS(861), + [aux_sym__val_number_token3] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(863), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_BQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), + [anon_sym_err_GT] = ACTIONS(881), + [anon_sym_out_GT] = ACTIONS(881), + [anon_sym_e_GT] = ACTIONS(881), + [anon_sym_o_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT] = ACTIONS(881), + [anon_sym_err_GT_GT] = ACTIONS(881), + [anon_sym_out_GT_GT] = ACTIONS(881), + [anon_sym_e_GT_GT] = ACTIONS(881), + [anon_sym_o_GT_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), + [aux_sym_unquoted_token1] = ACTIONS(883), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(885), }, [STATE(118)] = { [sym_comment] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(868), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(902), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(119)] = { [sym_comment] = STATE(119), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(906), - [sym_duration_unit] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(785), - [anon_sym_out_GT_GT] = ACTIONS(785), - [anon_sym_e_GT_GT] = ACTIONS(785), - [anon_sym_o_GT_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(910), + [sym_duration_unit] = ACTIONS(912), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(120)] = { [sym_comment] = STATE(120), - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(121)] = { - [sym_expr_parenthesized] = STATE(2911), - [sym__spread_parenthesized] = STATE(3404), - [sym_val_range] = STATE(3405), - [sym__val_range] = STATE(4906), - [sym__value] = STATE(3405), - [sym_val_nothing] = STATE(3356), - [sym_val_bool] = STATE(3000), - [sym__spread_variable] = STATE(3407), - [sym_val_variable] = STATE(2731), - [sym_val_cellpath] = STATE(3356), - [sym_val_number] = STATE(3356), - [sym__val_number_decimal] = STATE(2449), - [sym__val_number] = STATE(3368), - [sym_val_duration] = STATE(3356), - [sym_val_filesize] = STATE(3356), - [sym_val_binary] = STATE(3356), - [sym_val_string] = STATE(3356), - [sym__raw_str] = STATE(2564), - [sym__str_double_quotes] = STATE(2564), - [sym__str_single_quotes] = STATE(2564), - [sym__str_back_ticks] = STATE(2564), - [sym_val_interpolated] = STATE(3356), - [sym__inter_single_quotes] = STATE(3366), - [sym__inter_double_quotes] = STATE(3367), - [sym_val_list] = STATE(3356), - [sym__spread_list] = STATE(3404), - [sym_val_record] = STATE(3356), - [sym_val_table] = STATE(3356), - [sym_val_closure] = STATE(3356), - [sym__cmd_arg] = STATE(3408), - [sym_redirection] = STATE(3409), - [sym__flag] = STATE(3411), - [sym_short_flag] = STATE(3412), - [sym_long_flag] = STATE(3412), - [sym_unquoted] = STATE(3040), - [sym__unquoted_with_expr] = STATE(3261), - [sym__unquoted_anonymous_prefix] = STATE(4906), [sym_comment] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_true] = ACTIONS(910), - [anon_sym_false] = ACTIONS(910), - [anon_sym_null] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(914), - [aux_sym_cmd_identifier_token4] = ACTIONS(914), - [aux_sym_cmd_identifier_token5] = ACTIONS(914), - [sym__newline] = ACTIONS(807), - [sym__space] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_err_GT_PIPE] = ACTIONS(807), - [anon_sym_out_GT_PIPE] = ACTIONS(807), - [anon_sym_e_GT_PIPE] = ACTIONS(807), - [anon_sym_o_GT_PIPE] = ACTIONS(807), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(807), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(807), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DASH2] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(930), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_decimal_token4] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(940), - [aux_sym__val_number_token2] = ACTIONS(940), - [aux_sym__val_number_token3] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(942), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [sym_val_date] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_BQUOTE] = ACTIONS(952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(960), - [anon_sym_out_GT] = ACTIONS(960), - [anon_sym_e_GT] = ACTIONS(960), - [anon_sym_o_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT] = ACTIONS(960), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(964), + [ts_builtin_sym_end] = ACTIONS(914), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(916), + [anon_sym_SLASH_SLASH] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_bit_DASHshl] = ACTIONS(916), + [anon_sym_bit_DASHshr] = ACTIONS(916), + [anon_sym_EQ_TILDE] = ACTIONS(916), + [anon_sym_BANG_TILDE] = ACTIONS(916), + [anon_sym_like] = ACTIONS(916), + [anon_sym_not_DASHlike] = ACTIONS(916), + [anon_sym_bit_DASHand] = ACTIONS(916), + [anon_sym_bit_DASHxor] = ACTIONS(916), + [anon_sym_bit_DASHor] = ACTIONS(916), + [anon_sym_and] = ACTIONS(916), + [anon_sym_xor] = ACTIONS(916), + [anon_sym_or] = ACTIONS(916), + [anon_sym_in2] = ACTIONS(916), + [anon_sym_not_DASHin] = ACTIONS(916), + [anon_sym_has] = ACTIONS(916), + [anon_sym_not_DASHhas] = ACTIONS(916), + [anon_sym_starts_DASHwith] = ACTIONS(916), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(916), + [anon_sym_ends_DASHwith] = ACTIONS(916), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(916), + [anon_sym_EQ_EQ] = ACTIONS(916), + [anon_sym_BANG_EQ] = ACTIONS(916), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(916), + [aux_sym_cmd_identifier_token6] = ACTIONS(920), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(924), + [anon_sym_DOT_DOT_LT2] = ACTIONS(924), + [sym_filesize_unit] = ACTIONS(926), + [sym_duration_unit] = ACTIONS(928), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(122)] = { [sym_comment] = STATE(122), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(966), - [sym_duration_unit] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(785), - [anon_sym_out_GT_GT] = ACTIONS(785), - [anon_sym_e_GT_GT] = ACTIONS(785), - [anon_sym_o_GT_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(123)] = { [sym_comment] = STATE(123), - [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), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(124)] = { + [sym_expr_parenthesized] = STATE(2824), + [sym__spread_parenthesized] = STATE(3357), + [sym_val_range] = STATE(3360), + [sym__val_range] = STATE(4740), + [sym__value] = STATE(3360), + [sym_val_nothing] = STATE(3333), + [sym_val_bool] = STATE(3030), + [sym__spread_variable] = STATE(3388), + [sym_val_variable] = STATE(2823), + [sym_val_cellpath] = STATE(3333), + [sym_val_number] = STATE(3333), + [sym__val_number_decimal] = STATE(2466), + [sym__val_number] = STATE(3341), + [sym_val_duration] = STATE(3333), + [sym_val_filesize] = STATE(3333), + [sym_val_binary] = STATE(3333), + [sym_val_string] = STATE(3333), + [sym__raw_str] = STATE(2543), + [sym__str_double_quotes] = STATE(2543), + [sym__str_single_quotes] = STATE(2543), + [sym__str_back_ticks] = STATE(2543), + [sym_val_interpolated] = STATE(3333), + [sym__inter_single_quotes] = STATE(3317), + [sym__inter_double_quotes] = STATE(3318), + [sym_val_list] = STATE(3333), + [sym__spread_list] = STATE(3357), + [sym_val_record] = STATE(3333), + [sym_val_table] = STATE(3333), + [sym_val_closure] = STATE(3333), + [sym__cmd_arg] = STATE(3407), + [sym_redirection] = STATE(3408), + [sym__flag] = STATE(3409), + [sym_short_flag] = STATE(3410), + [sym_long_flag] = STATE(3410), + [sym_unquoted] = STATE(2958), + [sym__unquoted_with_expr] = STATE(3273), + [sym__unquoted_anonymous_prefix] = STATE(4740), [sym_comment] = STATE(124), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(835), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [aux_sym_cmd_identifier_token3] = ACTIONS(934), + [aux_sym_cmd_identifier_token4] = ACTIONS(934), + [aux_sym_cmd_identifier_token5] = ACTIONS(934), + [sym__newline] = ACTIONS(833), + [sym__space] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_err_GT_PIPE] = ACTIONS(833), + [anon_sym_out_GT_PIPE] = ACTIONS(833), + [anon_sym_e_GT_PIPE] = ACTIONS(833), + [anon_sym_o_GT_PIPE] = ACTIONS(833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_BQUOTE] = ACTIONS(972), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(984), }, [STATE(125)] = { [sym_comment] = STATE(125), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(986), + [sym_duration_unit] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(126)] = { [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(805), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(127)] = { [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(972), - [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), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(990), + [aux_sym__immediate_decimal_token5] = ACTIONS(992), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(128)] = { [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(777), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(129)] = { [sym_comment] = STATE(129), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(974), - [aux_sym__immediate_decimal_token5] = ACTIONS(976), - [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), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(130)] = { [sym_comment] = STATE(130), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(131)] = { [sym_comment] = STATE(131), - [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), - [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), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(132)] = { [sym_comment] = STATE(132), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(878), - [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), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(994), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(133)] = { - [sym_expr_parenthesized] = STATE(2710), - [sym__spread_parenthesized] = STATE(3196), - [sym_val_range] = STATE(3197), - [sym__val_range] = STATE(4752), - [sym__value] = STATE(3197), - [sym_val_nothing] = STATE(3097), - [sym_val_bool] = STATE(2788), - [sym__spread_variable] = STATE(3198), - [sym_val_variable] = STATE(2714), - [sym_val_cellpath] = STATE(3097), - [sym_val_number] = STATE(3097), - [sym__val_number_decimal] = STATE(2409), - [sym__val_number] = STATE(3098), - [sym_val_duration] = STATE(3097), - [sym_val_filesize] = STATE(3097), - [sym_val_binary] = STATE(3097), - [sym_val_string] = STATE(3097), - [sym__raw_str] = STATE(2476), - [sym__str_double_quotes] = STATE(2476), - [sym__str_single_quotes] = STATE(2476), - [sym__str_back_ticks] = STATE(2476), - [sym_val_interpolated] = STATE(3097), - [sym__inter_single_quotes] = STATE(3135), - [sym__inter_double_quotes] = STATE(3139), - [sym_val_list] = STATE(3097), - [sym__spread_list] = STATE(3196), - [sym_val_record] = STATE(3097), - [sym_val_table] = STATE(3097), - [sym_val_closure] = STATE(3097), - [sym__cmd_arg] = STATE(3271), - [sym_redirection] = STATE(3200), - [sym__flag] = STATE(3201), - [sym_short_flag] = STATE(3203), - [sym_long_flag] = STATE(3203), - [sym_unquoted] = STATE(2835), - [sym__unquoted_with_expr] = STATE(3204), - [sym__unquoted_anonymous_prefix] = STATE(4752), [sym_comment] = STATE(133), - [anon_sym_true] = ACTIONS(801), - [anon_sym_false] = ACTIONS(801), - [anon_sym_null] = ACTIONS(803), - [aux_sym_cmd_identifier_token3] = ACTIONS(805), - [aux_sym_cmd_identifier_token4] = ACTIONS(805), - [aux_sym_cmd_identifier_token5] = ACTIONS(805), - [sym__newline] = ACTIONS(980), - [sym__space] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_DASH2] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(827), - [anon_sym_DOT_DOT_LT] = ACTIONS(827), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), - [aux_sym__val_number_decimal_token1] = ACTIONS(831), - [aux_sym__val_number_decimal_token2] = ACTIONS(831), - [aux_sym__val_number_decimal_token3] = ACTIONS(833), - [aux_sym__val_number_decimal_token4] = ACTIONS(833), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(837), - [anon_sym_0o] = ACTIONS(839), - [anon_sym_0x] = ACTIONS(839), - [sym_val_date] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_SQUOTE] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), - [anon_sym_err_GT] = ACTIONS(855), - [anon_sym_out_GT] = ACTIONS(855), - [anon_sym_e_GT] = ACTIONS(855), - [anon_sym_o_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT] = ACTIONS(855), - [anon_sym_err_GT_GT] = ACTIONS(855), - [anon_sym_out_GT_GT] = ACTIONS(855), - [anon_sym_e_GT_GT] = ACTIONS(855), - [anon_sym_o_GT_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), - [aux_sym_unquoted_token1] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(859), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(134)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4891), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(134), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(984), - [sym_duration_unit] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(785), - [anon_sym_out_GT_GT] = ACTIONS(785), - [anon_sym_e_GT_GT] = ACTIONS(785), - [anon_sym_o_GT_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(135)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(3307), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2986), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(136)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4891), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(137)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4744), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(137), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(988), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(138)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4424), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(972), - [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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(139)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4425), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(140)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(3457), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3172), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4362), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(140), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(141)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4797), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(3307), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2986), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(141), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [aux_sym_pipeline_repeat1] = STATE(173), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(142)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4799), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(142), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1008), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(143)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(3324), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3031), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4473), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(144)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4482), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4473), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(145)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4483), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(146)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4574), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(147)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4587), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(3600), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3097), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(521), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(148)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(3600), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3097), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(148), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(992), - [sym_duration_unit] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(785), - [anon_sym_out_GT_GT] = ACTIONS(785), - [anon_sym_e_GT_GT] = ACTIONS(785), - [anon_sym_o_GT_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(149)] = { - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_pipeline] = STATE(3497), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3240), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_pipeline] = STATE(3604), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3065), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(175), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1018), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57624,482 +57722,1432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(150)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4362), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(150), - [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), - [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), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(151)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4744), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(151), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(775), - [anon_sym_out_GT_GT] = ACTIONS(775), - [anon_sym_e_GT_GT] = ACTIONS(775), - [anon_sym_o_GT_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(152)] = { [sym_comment] = STATE(152), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1020), + [sym_duration_unit] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(153)] = { - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_pipeline] = STATE(4690), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(996), - [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(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), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(154)] = { - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_pipeline] = STATE(4705), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(996), - [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_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(155)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(3307), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2986), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(525), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(156)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3106), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(156), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(157)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4424), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(158)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4425), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(159)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4362), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(160)] = { + [sym_comment] = STATE(160), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(161)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4473), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(162)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(3307), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2986), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(163)] = { + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_pipeline] = STATE(4693), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1018), + [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), @@ -58144,1723 +59192,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(155)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(3457), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3172), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(495), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(155), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(998), - [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(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(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(156)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4677), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(157)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4797), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(158)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4799), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(158), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(159)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(3324), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3031), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(160)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4482), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(161)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4483), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(162)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4574), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(163)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4587), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(164)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(3457), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3172), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(165)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(3324), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3031), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(526), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_pipeline] = STATE(4781), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1014), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(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), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1018), + [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(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_PERCENT] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(166)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4482), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(167)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4483), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(168)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4574), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(169)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(4587), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2996), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(170)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_pipeline] = STATE(3324), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3031), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(171)] = { - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_pipeline] = STATE(4739), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_pipeline] = STATE(4694), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), - [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1018), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59912,59 +59507,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(172)] = { - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_pipeline] = STATE(4782), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3092), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [STATE(167)] = { + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_pipeline] = STATE(4883), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3140), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1018), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -60016,370 +59612,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(168)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4424), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(169)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_pipeline] = STATE(4425), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3049), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(170)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_pipeline_parenthesized] = STATE(3600), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3097), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(178), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(171)] = { + [sym_comment] = STATE(171), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(902), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(751), + [anon_sym_out_GT_GT] = ACTIONS(751), + [anon_sym_e_GT_GT] = ACTIONS(751), + [anon_sym_o_GT_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(172)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3602), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(521), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(172), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1032), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [aux_sym_cmd_identifier_token1] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_catch] = ACTIONS(1029), + [anon_sym_finally] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1053), + [aux_sym_cmd_identifier_token4] = ACTIONS(1053), + [aux_sym_cmd_identifier_token5] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_where] = ACTIONS(1074), + [aux_sym_expr_unary_token1] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1083), + [aux_sym__val_number_decimal_token2] = ACTIONS(1086), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_decimal_token4] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1092), + [aux_sym__val_number_token2] = ACTIONS(1092), + [aux_sym__val_number_token3] = ACTIONS(1092), + [anon_sym_0b] = ACTIONS(1095), + [anon_sym_0o] = ACTIONS(1098), + [anon_sym_0x] = ACTIONS(1098), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1116), + [anon_sym_CARET] = ACTIONS(1119), + [anon_sym_PERCENT] = ACTIONS(1122), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1125), }, [STATE(173)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4676), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2995), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(174)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4677), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2939), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(174), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(175)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_pipeline_parenthesized] = STATE(4676), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3160), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(175), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3059), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3089), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1018), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -60431,1088 +60448,579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(176)] = { + [sym_comment] = STATE(176), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1128), + [sym_duration_unit] = ACTIONS(1130), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(177)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2926), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3189), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(178)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2926), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3083), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(179)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3475), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(526), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1024), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_finally] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1036), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1039), - [anon_sym_false] = ACTIONS(1039), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token3] = ACTIONS(1045), - [aux_sym_cmd_identifier_token4] = ACTIONS(1045), - [aux_sym_cmd_identifier_token5] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_DASH2] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1066), - [aux_sym_expr_unary_token1] = ACTIONS(1069), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1075), - [aux_sym__val_number_decimal_token2] = ACTIONS(1078), - [aux_sym__val_number_decimal_token3] = ACTIONS(1081), - [aux_sym__val_number_decimal_token4] = ACTIONS(1081), - [aux_sym__val_number_token1] = ACTIONS(1084), - [aux_sym__val_number_token2] = ACTIONS(1084), - [aux_sym__val_number_token3] = ACTIONS(1084), - [anon_sym_0b] = ACTIONS(1087), - [anon_sym_0o] = ACTIONS(1090), - [anon_sym_0x] = ACTIONS(1090), - [sym_val_date] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1108), - [anon_sym_CARET] = ACTIONS(1111), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1114), - }, - [STATE(180)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3193), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3459), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(495), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1120), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_mut] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [aux_sym_cmd_identifier_token1] = ACTIONS(1126), - [anon_sym_def] = ACTIONS(1120), - [anon_sym_use] = ACTIONS(1120), - [anon_sym_export_DASHenv] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_module] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1120), - [anon_sym_try] = ACTIONS(1132), - [anon_sym_catch] = ACTIONS(1120), - [anon_sym_finally] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1138), - [anon_sym_false] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1141), - [aux_sym_cmd_identifier_token3] = ACTIONS(1144), - [aux_sym_cmd_identifier_token4] = ACTIONS(1144), - [aux_sym_cmd_identifier_token5] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1153), - [anon_sym_DASH2] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_where] = ACTIONS(1165), - [aux_sym_expr_unary_token1] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), - [anon_sym_DOT_DOT_LT] = ACTIONS(1171), - [aux_sym__val_number_decimal_token1] = ACTIONS(1174), - [aux_sym__val_number_decimal_token2] = ACTIONS(1177), - [aux_sym__val_number_decimal_token3] = ACTIONS(1180), - [aux_sym__val_number_decimal_token4] = ACTIONS(1180), - [aux_sym__val_number_token1] = ACTIONS(1183), - [aux_sym__val_number_token2] = ACTIONS(1183), - [aux_sym__val_number_token3] = ACTIONS(1183), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1213), - }, - [STATE(182)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(2926), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3189), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(183)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3001), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(526), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1014), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(179), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), [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(184)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3193), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(185)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3001), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(448), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(179), + [STATE(180)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2939), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(191), [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(186)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3194), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(457), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(187)] = { - [sym_assignment] = STATE(3537), - [sym__mutable_assignment_pattern] = STATE(3436), - [sym_cmd_identifier] = STATE(2943), - [sym__ctrl_expression] = STATE(3537), - [sym_ctrl_if] = STATE(3470), - [sym_ctrl_match] = STATE(3470), - [sym_ctrl_try] = STATE(3470), - [sym__stmt_let_shortcut] = STATE(3502), - [sym_pipe_element] = STATE(3250), - [sym_where_command] = STATE(3537), - [sym__expression] = STATE(2303), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), + [STATE(181)] = { + [sym_assignment] = STATE(3457), + [sym__mutable_assignment_pattern] = STATE(3458), + [sym_cmd_identifier] = STATE(2973), + [sym__ctrl_expression] = STATE(3457), + [sym_ctrl_if] = STATE(3465), + [sym_ctrl_match] = STATE(3465), + [sym_ctrl_try] = STATE(3465), + [sym__stmt_let_shortcut] = STATE(3467), + [sym_pipe_element] = STATE(3094), + [sym_where_command] = STATE(3457), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(458), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3537), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3457), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1018), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -61564,1030 +61072,1053 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(188)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3194), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(495), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), - [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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), + [STATE(182)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2939), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(183)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2995), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(184)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3083), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(521), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(185)] = { + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2995), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(186)] = { + [sym_assignment_parenthesized] = STATE(3522), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), + [sym_cmd_identifier] = STATE(2982), + [sym__ctrl_expression_parenthesized] = STATE(3522), + [sym_ctrl_if_parenthesized] = STATE(3419), + [sym_ctrl_match] = STATE(3419), + [sym_ctrl_try_parenthesized] = STATE(3419), + [sym__stmt_let_shortcut] = STATE(3456), + [sym_pipe_element_parenthesized] = STATE(3083), + [sym_where_command_parenthesized] = STATE(3522), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3459), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), [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), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(187)] = { + [sym_comment] = STATE(187), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(188)] = { + [sym_comment] = STATE(188), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(189)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3001), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(455), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(190)] = { - [sym_assignment_parenthesized] = STATE(3541), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), - [sym_cmd_identifier] = STATE(2963), - [sym__ctrl_expression_parenthesized] = STATE(3541), - [sym_ctrl_if_parenthesized] = STATE(3454), - [sym_ctrl_match] = STATE(3454), - [sym_ctrl_try_parenthesized] = STATE(3454), - [sym__stmt_let_shortcut] = STATE(3455), - [sym_pipe_element_parenthesized] = STATE(3194), - [sym_where_command_parenthesized] = STATE(3541), - [sym__expression_parenthesized] = STATE(2305), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(490), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3430), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(2995), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(525), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(191)] = { - [sym_assignment] = STATE(3278), - [sym__mutable_assignment_pattern] = STATE(3279), - [sym_cmd_identifier] = STATE(2819), - [sym__ctrl_expression] = STATE(3278), - [sym_ctrl_if] = STATE(3280), - [sym_ctrl_match] = STATE(3280), - [sym_ctrl_try] = STATE(3280), - [sym__stmt_let_shortcut] = STATE(3281), - [sym_pipe_element] = STATE(3001), - [sym_where_command] = STATE(3278), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3278), + [sym_assignment] = STATE(3411), + [sym__mutable_assignment_pattern] = STATE(3412), + [sym_cmd_identifier] = STATE(2920), + [sym__ctrl_expression] = STATE(3411), + [sym_ctrl_if] = STATE(3414), + [sym_ctrl_match] = STATE(3414), + [sym_ctrl_try] = STATE(3414), + [sym__stmt_let_shortcut] = STATE(3415), + [sym_pipe_element] = STATE(3436), + [sym_where_command] = STATE(3411), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(525), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3411), [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(179), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(990), - [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(1016), - [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(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(1132), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1138), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [aux_sym_cmd_identifier_token1] = ACTIONS(1141), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1147), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_finally] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_in] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1153), + [anon_sym_false] = ACTIONS(1153), + [anon_sym_null] = ACTIONS(1156), + [aux_sym_cmd_identifier_token3] = ACTIONS(1159), + [aux_sym_cmd_identifier_token4] = ACTIONS(1159), + [aux_sym_cmd_identifier_token5] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1168), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1180), + [aux_sym_expr_unary_token1] = ACTIONS(1183), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), + [anon_sym_DOT_DOT_LT] = ACTIONS(1186), + [aux_sym__val_number_decimal_token1] = ACTIONS(1189), + [aux_sym__val_number_decimal_token2] = ACTIONS(1192), + [aux_sym__val_number_decimal_token3] = ACTIONS(1195), + [aux_sym__val_number_decimal_token4] = ACTIONS(1195), + [aux_sym__val_number_token1] = ACTIONS(1198), + [aux_sym__val_number_token2] = ACTIONS(1198), + [aux_sym__val_number_token3] = ACTIONS(1198), + [anon_sym_0b] = ACTIONS(1201), + [anon_sym_0o] = ACTIONS(1204), + [anon_sym_0x] = ACTIONS(1204), + [sym_val_date] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1231), }, [STATE(192)] = { [sym_comment] = STATE(192), - [ts_builtin_sym_end] = ACTIONS(1216), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1218), - [anon_sym_out_GT_GT] = ACTIONS(1218), - [anon_sym_e_GT_GT] = ACTIONS(1218), - [anon_sym_o_GT_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(193)] = { - [sym_comment] = STATE(193), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(194)] = { - [sym_comment] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(1234), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(195)] = { - [sym_comment] = STATE(195), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1218), - [anon_sym_out_GT_GT] = ACTIONS(1218), - [anon_sym_e_GT_GT] = ACTIONS(1218), - [anon_sym_o_GT_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(196)] = { - [sym_comment] = STATE(196), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(197)] = { - [sym_comment] = STATE(197), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1218), - [anon_sym_out_GT_GT] = ACTIONS(1218), - [anon_sym_e_GT_GT] = ACTIONS(1218), - [anon_sym_o_GT_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(198)] = { - [sym_comment] = STATE(198), - [anon_sym_in] = ACTIONS(1218), + [anon_sym_in] = ACTIONS(1234), [anon_sym_STAR_STAR] = ACTIONS(1236), [anon_sym_PLUS_PLUS] = ACTIONS(1236), [anon_sym_STAR] = ACTIONS(1238), @@ -62623,72 +62154,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1238), [anon_sym_GT_EQ] = ACTIONS(1236), [aux_sym_cmd_identifier_token6] = ACTIONS(1240), - [sym__newline] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1218), - [anon_sym_out_GT_GT] = ACTIONS(1218), - [anon_sym_e_GT_GT] = ACTIONS(1218), - [anon_sym_o_GT_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [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), + [anon_sym_POUND] = ACTIONS(105), }, - [STATE(199)] = { - [sym_comment] = STATE(199), - [anon_sym_in] = ACTIONS(1226), + [STATE(193)] = { + [sym_comment] = STATE(193), + [anon_sym_in] = ACTIONS(1242), [anon_sym_STAR_STAR] = ACTIONS(1236), [anon_sym_PLUS_PLUS] = ACTIONS(1236), [anon_sym_STAR] = ACTIONS(1238), @@ -62724,7458 +62255,8137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1238), [anon_sym_GT_EQ] = ACTIONS(1236), [aux_sym_cmd_identifier_token6] = ACTIONS(1240), - [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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(200)] = { - [sym_comment] = STATE(200), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(201)] = { - [sym_comment] = STATE(201), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1218), - [anon_sym_out_GT_GT] = ACTIONS(1218), - [anon_sym_e_GT_GT] = ACTIONS(1218), - [anon_sym_o_GT_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(202)] = { - [sym_comment] = STATE(202), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1218), - [anon_sym_out_GT_GT] = ACTIONS(1218), - [anon_sym_e_GT_GT] = ACTIONS(1218), - [anon_sym_o_GT_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1242), + [anon_sym_out_GT_GT] = ACTIONS(1242), + [anon_sym_e_GT_GT] = ACTIONS(1242), + [anon_sym_o_GT_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), }, - [STATE(203)] = { - [sym_comment] = STATE(203), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(204)] = { - [sym_expr_parenthesized] = STATE(4048), - [sym__spread_parenthesized] = STATE(3196), - [sym_val_range] = STATE(3197), - [sym__val_range] = STATE(4752), - [sym__value] = STATE(3197), - [sym_val_nothing] = STATE(3097), - [sym_val_bool] = STATE(4321), - [sym__spread_variable] = STATE(3198), - [sym_val_variable] = STATE(3993), - [sym_val_cellpath] = STATE(3097), - [sym_val_number] = STATE(3097), - [sym__val_number_decimal] = STATE(3641), - [sym__val_number] = STATE(3098), - [sym_val_duration] = STATE(3097), - [sym_val_filesize] = STATE(3097), - [sym_val_binary] = STATE(3097), - [sym_val_string] = STATE(3097), - [sym__raw_str] = STATE(2476), - [sym__str_double_quotes] = STATE(2476), - [sym__str_single_quotes] = STATE(2476), - [sym__str_back_ticks] = STATE(2476), - [sym_val_interpolated] = STATE(3097), - [sym__inter_single_quotes] = STATE(3135), - [sym__inter_double_quotes] = STATE(3139), - [sym_val_list] = STATE(3097), - [sym__spread_list] = STATE(3196), - [sym_val_record] = STATE(3097), - [sym_val_table] = STATE(3097), - [sym_val_closure] = STATE(3097), - [sym__cmd_arg] = STATE(3199), - [sym_redirection] = STATE(3200), - [sym__flag] = STATE(3201), - [sym_short_flag] = STATE(3203), - [sym_long_flag] = STATE(3203), - [sym_unquoted] = STATE(2835), - [sym__unquoted_with_expr] = STATE(3204), - [sym__unquoted_anonymous_prefix] = STATE(4752), + [STATE(194)] = { + [sym_comment] = STATE(194), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_SLASH_SLASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_bit_DASHshl] = ACTIONS(1244), + [anon_sym_bit_DASHshr] = ACTIONS(1244), + [anon_sym_EQ_TILDE] = ACTIONS(1244), + [anon_sym_BANG_TILDE] = ACTIONS(1244), + [anon_sym_like] = ACTIONS(1244), + [anon_sym_not_DASHlike] = ACTIONS(1244), + [anon_sym_bit_DASHand] = ACTIONS(1244), + [anon_sym_bit_DASHxor] = ACTIONS(1244), + [anon_sym_bit_DASHor] = ACTIONS(1244), + [anon_sym_and] = ACTIONS(1244), + [anon_sym_xor] = ACTIONS(1244), + [anon_sym_or] = ACTIONS(1244), + [anon_sym_in2] = ACTIONS(1244), + [anon_sym_not_DASHin] = ACTIONS(1244), + [anon_sym_has] = ACTIONS(1244), + [anon_sym_not_DASHhas] = ACTIONS(1244), + [anon_sym_starts_DASHwith] = ACTIONS(1244), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1244), + [anon_sym_ends_DASHwith] = ACTIONS(1244), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1244), + [anon_sym_EQ_EQ] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_LT_EQ] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_GT_EQ] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1248), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [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), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(195)] = { + [sym_comment] = STATE(195), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1242), + [anon_sym_out_GT_GT] = ACTIONS(1242), + [anon_sym_e_GT_GT] = ACTIONS(1242), + [anon_sym_o_GT_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(196)] = { + [sym_comment] = STATE(196), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [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), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(197)] = { + [sym_comment] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(1250), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_SLASH_SLASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_bit_DASHshl] = ACTIONS(1252), + [anon_sym_bit_DASHshr] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_BANG_TILDE] = ACTIONS(1252), + [anon_sym_like] = ACTIONS(1252), + [anon_sym_not_DASHlike] = ACTIONS(1252), + [anon_sym_bit_DASHand] = ACTIONS(1252), + [anon_sym_bit_DASHxor] = ACTIONS(1252), + [anon_sym_bit_DASHor] = ACTIONS(1252), + [anon_sym_and] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1252), + [anon_sym_or] = ACTIONS(1252), + [anon_sym_in2] = ACTIONS(1252), + [anon_sym_not_DASHin] = ACTIONS(1252), + [anon_sym_has] = ACTIONS(1252), + [anon_sym_not_DASHhas] = ACTIONS(1252), + [anon_sym_starts_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), + [anon_sym_ends_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1256), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [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), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(198)] = { + [sym_comment] = STATE(198), + [ts_builtin_sym_end] = ACTIONS(1258), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_SLASH_SLASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_bit_DASHshl] = ACTIONS(1252), + [anon_sym_bit_DASHshr] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_BANG_TILDE] = ACTIONS(1252), + [anon_sym_like] = ACTIONS(1252), + [anon_sym_not_DASHlike] = ACTIONS(1252), + [anon_sym_bit_DASHand] = ACTIONS(1252), + [anon_sym_bit_DASHxor] = ACTIONS(1252), + [anon_sym_bit_DASHor] = ACTIONS(1252), + [anon_sym_and] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1252), + [anon_sym_or] = ACTIONS(1252), + [anon_sym_in2] = ACTIONS(1252), + [anon_sym_not_DASHin] = ACTIONS(1252), + [anon_sym_has] = ACTIONS(1252), + [anon_sym_not_DASHhas] = ACTIONS(1252), + [anon_sym_starts_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), + [anon_sym_ends_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1256), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1242), + [anon_sym_out_GT_GT] = ACTIONS(1242), + [anon_sym_e_GT_GT] = ACTIONS(1242), + [anon_sym_o_GT_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(199)] = { + [sym_comment] = STATE(199), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_SLASH_SLASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_bit_DASHshl] = ACTIONS(1244), + [anon_sym_bit_DASHshr] = ACTIONS(1244), + [anon_sym_EQ_TILDE] = ACTIONS(1244), + [anon_sym_BANG_TILDE] = ACTIONS(1244), + [anon_sym_like] = ACTIONS(1244), + [anon_sym_not_DASHlike] = ACTIONS(1244), + [anon_sym_bit_DASHand] = ACTIONS(1244), + [anon_sym_bit_DASHxor] = ACTIONS(1244), + [anon_sym_bit_DASHor] = ACTIONS(1244), + [anon_sym_and] = ACTIONS(1244), + [anon_sym_xor] = ACTIONS(1244), + [anon_sym_or] = ACTIONS(1244), + [anon_sym_in2] = ACTIONS(1244), + [anon_sym_not_DASHin] = ACTIONS(1244), + [anon_sym_has] = ACTIONS(1244), + [anon_sym_not_DASHhas] = ACTIONS(1244), + [anon_sym_starts_DASHwith] = ACTIONS(1244), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1244), + [anon_sym_ends_DASHwith] = ACTIONS(1244), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1244), + [anon_sym_EQ_EQ] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_LT_EQ] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_GT_EQ] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1248), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1242), + [anon_sym_out_GT_GT] = ACTIONS(1242), + [anon_sym_e_GT_GT] = ACTIONS(1242), + [anon_sym_o_GT_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(200)] = { + [sym_comment] = STATE(200), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [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), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(201)] = { + [sym_comment] = STATE(201), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1242), + [anon_sym_out_GT_GT] = ACTIONS(1242), + [anon_sym_e_GT_GT] = ACTIONS(1242), + [anon_sym_o_GT_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(202)] = { + [sym_comment] = STATE(202), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1242), + [anon_sym_out_GT_GT] = ACTIONS(1242), + [anon_sym_e_GT_GT] = ACTIONS(1242), + [anon_sym_o_GT_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(203)] = { + [sym_comment] = STATE(203), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = 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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [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), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(204)] = { + [sym_expr_parenthesized] = STATE(4063), + [sym__spread_parenthesized] = STATE(3240), + [sym_val_range] = STATE(3250), + [sym__val_range] = STATE(4751), + [sym__value] = STATE(3250), + [sym_val_nothing] = STATE(3138), + [sym_val_bool] = STATE(4311), + [sym__spread_variable] = STATE(3259), + [sym_val_variable] = STATE(4045), + [sym_val_cellpath] = STATE(3138), + [sym_val_number] = STATE(3138), + [sym__val_number_decimal] = STATE(3611), + [sym__val_number] = STATE(3139), + [sym_val_duration] = STATE(3138), + [sym_val_filesize] = STATE(3138), + [sym_val_binary] = STATE(3138), + [sym_val_string] = STATE(3138), + [sym__raw_str] = STATE(2503), + [sym__str_double_quotes] = STATE(2503), + [sym__str_single_quotes] = STATE(2503), + [sym__str_back_ticks] = STATE(2503), + [sym_val_interpolated] = STATE(3138), + [sym__inter_single_quotes] = STATE(3179), + [sym__inter_double_quotes] = STATE(3180), + [sym_val_list] = STATE(3138), + [sym__spread_list] = STATE(3240), + [sym_val_record] = STATE(3138), + [sym_val_table] = STATE(3138), + [sym_val_closure] = STATE(3138), + [sym__cmd_arg] = STATE(3260), + [sym_redirection] = STATE(3222), + [sym__flag] = STATE(3262), + [sym_short_flag] = STATE(3082), + [sym_long_flag] = STATE(3082), + [sym_unquoted] = STATE(2734), + [sym__unquoted_with_expr] = STATE(3102), + [sym__unquoted_anonymous_prefix] = STATE(4751), [sym_comment] = STATE(204), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_null] = ACTIONS(1244), - [aux_sym_cmd_identifier_token3] = ACTIONS(1246), - [aux_sym_cmd_identifier_token4] = ACTIONS(1246), - [aux_sym_cmd_identifier_token5] = ACTIONS(1246), - [sym__newline] = ACTIONS(807), - [sym__space] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_DASH2] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1254), - [anon_sym_DOT_DOT_LT] = ACTIONS(1254), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1256), - [aux_sym__val_number_decimal_token3] = ACTIONS(1258), - [aux_sym__val_number_decimal_token4] = ACTIONS(1258), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(837), - [anon_sym_0o] = ACTIONS(839), - [anon_sym_0x] = ACTIONS(839), - [sym_val_date] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_SQUOTE] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), - [anon_sym_err_GT] = ACTIONS(855), - [anon_sym_out_GT] = ACTIONS(855), - [anon_sym_e_GT] = ACTIONS(855), - [anon_sym_o_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT] = ACTIONS(855), - [anon_sym_err_GT_GT] = ACTIONS(855), - [anon_sym_out_GT_GT] = ACTIONS(855), - [anon_sym_e_GT_GT] = ACTIONS(855), - [anon_sym_o_GT_GT] = ACTIONS(855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), - [aux_sym_unquoted_token1] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(859), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [anon_sym_null] = ACTIONS(1262), + [aux_sym_cmd_identifier_token3] = ACTIONS(1264), + [aux_sym_cmd_identifier_token4] = ACTIONS(1264), + [aux_sym_cmd_identifier_token5] = ACTIONS(1264), + [sym__newline] = ACTIONS(833), + [sym__space] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH2] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), + [anon_sym_DOT_DOT_LT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [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(861), + [aux_sym__val_number_token2] = ACTIONS(861), + [aux_sym__val_number_token3] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(863), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_BQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), + [anon_sym_err_GT] = ACTIONS(881), + [anon_sym_out_GT] = ACTIONS(881), + [anon_sym_e_GT] = ACTIONS(881), + [anon_sym_o_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT] = ACTIONS(881), + [anon_sym_err_GT_GT] = ACTIONS(881), + [anon_sym_out_GT_GT] = ACTIONS(881), + [anon_sym_e_GT_GT] = ACTIONS(881), + [anon_sym_o_GT_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), + [aux_sym_unquoted_token1] = ACTIONS(883), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(885), }, [STATE(205)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3464), - [sym_block] = STATE(3465), - [sym__expression_parenthesized] = STATE(3465), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(254), + [sym_ctrl_if_parenthesized] = STATE(3469), + [sym_block] = STATE(3470), + [sym__expression_parenthesized] = STATE(3470), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3465), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3470), [sym_comment] = STATE(205), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(206)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3582), - [sym_block] = STATE(3583), - [sym__expression_parenthesized] = STATE(3583), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3478), + [sym_block] = STATE(3479), + [sym__expression_parenthesized] = STATE(3479), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3583), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3479), [sym_comment] = STATE(206), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(207)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3582), - [sym_block] = STATE(3583), - [sym__expression_parenthesized] = STATE(3583), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3510), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3583), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3511), [sym_comment] = STATE(207), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(208)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3462), - [sym_block] = STATE(3463), - [sym__expression_parenthesized] = STATE(3463), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(238), + [sym_ctrl_if_parenthesized] = STATE(3510), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3463), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3511), [sym_comment] = STATE(208), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(209)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3464), - [sym_block] = STATE(3465), - [sym__expression_parenthesized] = STATE(3465), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3513), + [sym__expression_parenthesized] = STATE(3513), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3465), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3513), [sym_comment] = STATE(209), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(210)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3467), - [sym_block] = STATE(3468), - [sym__expression_parenthesized] = STATE(3468), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(213), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_block] = STATE(3509), + [sym__expression_parenthesized] = STATE(3509), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3468), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3509), [sym_comment] = STATE(210), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(211)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3467), - [sym_block] = STATE(3468), - [sym__expression_parenthesized] = STATE(3468), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(216), + [sym_ctrl_if_parenthesized] = STATE(3575), + [sym_block] = STATE(3579), + [sym__expression_parenthesized] = STATE(3579), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3468), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3579), [sym_comment] = STATE(211), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(212)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3472), - [sym_block] = STATE(3473), - [sym__expression_parenthesized] = STATE(3473), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(218), + [sym_ctrl_if_parenthesized] = STATE(3583), + [sym_block] = STATE(3586), + [sym__expression_parenthesized] = STATE(3586), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3473), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3586), [sym_comment] = STATE(212), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(213)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3472), - [sym_block] = STATE(3473), - [sym__expression_parenthesized] = STATE(3473), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3588), + [sym_block] = STATE(3589), + [sym__expression_parenthesized] = STATE(3589), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3473), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3589), [sym_comment] = STATE(213), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(214)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3509), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(220), + [sym_ctrl_if_parenthesized] = STATE(3588), + [sym_block] = STATE(3589), + [sym__expression_parenthesized] = STATE(3589), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3511), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3589), [sym_comment] = STATE(214), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(215)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(221), - [sym_ctrl_if_parenthesized] = STATE(3509), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(222), + [sym_ctrl_if_parenthesized] = STATE(3469), + [sym_block] = STATE(3470), + [sym__expression_parenthesized] = STATE(3470), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3511), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3470), [sym_comment] = STATE(215), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(216)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3514), - [sym_block] = STATE(3515), - [sym__expression_parenthesized] = STATE(3515), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3471), + [sym_block] = STATE(3472), + [sym__expression_parenthesized] = STATE(3472), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3515), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3472), [sym_comment] = STATE(216), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(217)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(223), - [sym_ctrl_if_parenthesized] = STATE(3514), - [sym_block] = STATE(3515), - [sym__expression_parenthesized] = STATE(3515), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(224), + [sym_ctrl_if_parenthesized] = STATE(3471), + [sym_block] = STATE(3472), + [sym__expression_parenthesized] = STATE(3472), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3515), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3472), [sym_comment] = STATE(217), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(218)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3517), - [sym_block] = STATE(3518), - [sym__expression_parenthesized] = STATE(3518), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3518), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3477), [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(219)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3517), - [sym_block] = STATE(3518), - [sym__expression_parenthesized] = STATE(3518), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(226), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3518), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3477), [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(220)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3520), - [sym_block] = STATE(3606), - [sym__expression_parenthesized] = STATE(3606), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3478), + [sym_block] = STATE(3479), + [sym__expression_parenthesized] = STATE(3479), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3606), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3479), [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(221)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3564), - [sym_block] = STATE(3566), - [sym__expression_parenthesized] = STATE(3566), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(228), + [sym_ctrl_if_parenthesized] = STATE(3478), + [sym_block] = STATE(3479), + [sym__expression_parenthesized] = STATE(3479), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3566), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3479), [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(222)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(225), - [sym_ctrl_if_parenthesized] = STATE(3564), - [sym_block] = STATE(3566), - [sym__expression_parenthesized] = STATE(3566), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3510), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3566), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3511), [sym_comment] = STATE(222), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(223)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3568), - [sym_block] = STATE(3571), - [sym__expression_parenthesized] = STATE(3571), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(229), + [sym_ctrl_if_parenthesized] = STATE(3510), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3571), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3511), [sym_comment] = STATE(223), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(224)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3572), - [sym_block] = STATE(3574), - [sym__expression_parenthesized] = STATE(3574), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3513), + [sym__expression_parenthesized] = STATE(3513), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3574), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3513), [sym_comment] = STATE(224), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(225)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3589), - [sym_block] = STATE(3590), - [sym__expression_parenthesized] = STATE(3590), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(231), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3513), + [sym__expression_parenthesized] = STATE(3513), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3590), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3513), [sym_comment] = STATE(225), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(226)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3439), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3443), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3517), [sym_comment] = STATE(226), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(227)] = { - [sym_cmd_identifier] = STATE(2973), + [sym_cmd_identifier] = STATE(2990), [aux_sym__repeat_newline] = STATE(232), - [sym_ctrl_if_parenthesized] = STATE(3524), - [sym_block] = STATE(3529), - [sym__expression_parenthesized] = STATE(3529), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3529), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3517), [sym_comment] = STATE(227), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(228)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(234), - [sym_ctrl_if_parenthesized] = STATE(3540), - [sym_block] = STATE(3546), - [sym__expression_parenthesized] = STATE(3546), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3519), + [sym_block] = STATE(3520), + [sym__expression_parenthesized] = STATE(3520), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3546), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3520), [sym_comment] = STATE(228), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(229)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3582), - [sym_block] = STATE(3583), - [sym__expression_parenthesized] = STATE(3583), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3531), + [sym_block] = STATE(3533), + [sym__expression_parenthesized] = STATE(3533), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3583), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3533), [sym_comment] = STATE(229), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(230)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(236), - [sym_ctrl_if_parenthesized] = STATE(3582), - [sym_block] = STATE(3583), - [sym__expression_parenthesized] = STATE(3583), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(233), + [sym_ctrl_if_parenthesized] = STATE(3531), + [sym_block] = STATE(3533), + [sym__expression_parenthesized] = STATE(3533), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3583), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3533), [sym_comment] = STATE(230), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(231)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(238), - [sym_ctrl_if_parenthesized] = STATE(3462), - [sym_block] = STATE(3463), - [sym__expression_parenthesized] = STATE(3463), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3535), + [sym_block] = STATE(3536), + [sym__expression_parenthesized] = STATE(3536), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3463), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3536), [sym_comment] = STATE(231), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(232)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3464), - [sym_block] = STATE(3465), - [sym__expression_parenthesized] = STATE(3465), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3537), + [sym_block] = STATE(3538), + [sym__expression_parenthesized] = STATE(3538), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3465), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3538), [sym_comment] = STATE(232), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(233)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(240), - [sym_ctrl_if_parenthesized] = STATE(3464), - [sym_block] = STATE(3465), - [sym__expression_parenthesized] = STATE(3465), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3554), + [sym_block] = STATE(3570), + [sym__expression_parenthesized] = STATE(3570), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3465), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3570), [sym_comment] = STATE(233), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(234)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3467), - [sym_block] = STATE(3468), - [sym__expression_parenthesized] = STATE(3468), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(240), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3513), + [sym__expression_parenthesized] = STATE(3513), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3468), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3513), [sym_comment] = STATE(234), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(235)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(242), - [sym_ctrl_if_parenthesized] = STATE(3467), - [sym_block] = STATE(3468), - [sym__expression_parenthesized] = STATE(3468), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3468), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3517), [sym_comment] = STATE(235), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(236)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3472), - [sym_block] = STATE(3473), - [sym__expression_parenthesized] = STATE(3473), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(276), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3473), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3517), [sym_comment] = STATE(236), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(237)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(244), - [sym_ctrl_if_parenthesized] = STATE(3472), - [sym_block] = STATE(3473), - [sym__expression_parenthesized] = STATE(3473), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3519), + [sym_block] = STATE(3520), + [sym__expression_parenthesized] = STATE(3520), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3473), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3520), [sym_comment] = STATE(237), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(238)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3509), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3531), + [sym_block] = STATE(3533), + [sym__expression_parenthesized] = STATE(3533), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3511), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3533), [sym_comment] = STATE(238), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(239)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(245), - [sym_ctrl_if_parenthesized] = STATE(3509), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(242), + [sym_ctrl_if_parenthesized] = STATE(3531), + [sym_block] = STATE(3533), + [sym__expression_parenthesized] = STATE(3533), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3511), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3533), [sym_comment] = STATE(239), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(240)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3514), - [sym_block] = STATE(3515), - [sym__expression_parenthesized] = STATE(3515), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3535), + [sym_block] = STATE(3536), + [sym__expression_parenthesized] = STATE(3536), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3515), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3536), [sym_comment] = STATE(240), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(241)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(210), - [sym_ctrl_if_parenthesized] = STATE(3540), - [sym_block] = STATE(3546), - [sym__expression_parenthesized] = STATE(3546), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3478), + [sym_block] = STATE(3479), + [sym__expression_parenthesized] = STATE(3479), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3546), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3479), [sym_comment] = STATE(241), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(242)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3517), - [sym_block] = STATE(3518), - [sym__expression_parenthesized] = STATE(3518), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3554), + [sym_block] = STATE(3570), + [sym__expression_parenthesized] = STATE(3570), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3518), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3570), [sym_comment] = STATE(242), - [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(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(243)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(248), - [sym_ctrl_if_parenthesized] = STATE(3517), - [sym_block] = STATE(3518), - [sym__expression_parenthesized] = STATE(3518), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(246), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_block] = STATE(3509), + [sym__expression_parenthesized] = STATE(3509), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3518), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3509), [sym_comment] = STATE(243), - [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_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(244)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3520), - [sym_block] = STATE(3606), - [sym__expression_parenthesized] = STATE(3606), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(248), + [sym_ctrl_if_parenthesized] = STATE(3575), + [sym_block] = STATE(3579), + [sym__expression_parenthesized] = STATE(3579), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3606), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3579), [sym_comment] = STATE(244), - [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_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(245)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3564), - [sym_block] = STATE(3566), - [sym__expression_parenthesized] = STATE(3566), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(250), + [sym_ctrl_if_parenthesized] = STATE(3583), + [sym_block] = STATE(3586), + [sym__expression_parenthesized] = STATE(3586), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3566), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3586), [sym_comment] = STATE(245), - [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_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(246)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3564), - [sym_block] = STATE(3566), - [sym__expression_parenthesized] = STATE(3566), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3588), + [sym_block] = STATE(3589), + [sym__expression_parenthesized] = STATE(3589), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3566), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3589), [sym_comment] = STATE(246), - [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_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(247)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3568), - [sym_block] = STATE(3571), - [sym__expression_parenthesized] = STATE(3571), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(252), + [sym_ctrl_if_parenthesized] = STATE(3588), + [sym_block] = STATE(3589), + [sym__expression_parenthesized] = STATE(3589), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3571), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3589), [sym_comment] = STATE(247), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(248)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3572), - [sym_block] = STATE(3574), - [sym__expression_parenthesized] = STATE(3574), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3471), + [sym_block] = STATE(3472), + [sym__expression_parenthesized] = STATE(3472), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3574), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3472), [sym_comment] = STATE(248), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(249)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3589), - [sym_block] = STATE(3590), - [sym__expression_parenthesized] = STATE(3590), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(256), + [sym_ctrl_if_parenthesized] = STATE(3471), + [sym_block] = STATE(3472), + [sym__expression_parenthesized] = STATE(3472), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3590), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3472), [sym_comment] = STATE(249), - [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_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3439), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3443), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3477), [sym_comment] = STATE(250), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(256), - [sym_ctrl_if_parenthesized] = STATE(3524), - [sym_block] = STATE(3529), - [sym__expression_parenthesized] = STATE(3529), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(258), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3529), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3477), [sym_comment] = STATE(251), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(258), - [sym_ctrl_if_parenthesized] = STATE(3540), - [sym_block] = STATE(3546), - [sym__expression_parenthesized] = STATE(3546), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3478), + [sym_block] = STATE(3479), + [sym__expression_parenthesized] = STATE(3479), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3546), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3479), [sym_comment] = STATE(252), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(253)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3582), - [sym_block] = STATE(3583), - [sym__expression_parenthesized] = STATE(3583), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3478), + [sym_block] = STATE(3479), + [sym__expression_parenthesized] = STATE(3479), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3583), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3479), [sym_comment] = STATE(253), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(254)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3582), - [sym_block] = STATE(3583), - [sym__expression_parenthesized] = STATE(3583), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3510), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3583), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3511), [sym_comment] = STATE(254), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(255)] = { - [sym_cmd_identifier] = STATE(2973), - [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(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3510), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3463), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3511), [sym_comment] = STATE(255), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(256)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3464), - [sym_block] = STATE(3465), - [sym__expression_parenthesized] = STATE(3465), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3513), + [sym__expression_parenthesized] = STATE(3513), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3465), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3513), [sym_comment] = STATE(256), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(257)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3464), - [sym_block] = STATE(3465), - [sym__expression_parenthesized] = STATE(3465), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(263), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3513), + [sym__expression_parenthesized] = STATE(3513), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3465), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3513), [sym_comment] = STATE(257), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3467), - [sym_block] = STATE(3468), - [sym__expression_parenthesized] = STATE(3468), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3468), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3517), [sym_comment] = STATE(258), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(259)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3467), - [sym_block] = STATE(3468), - [sym__expression_parenthesized] = STATE(3468), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3468), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3517), [sym_comment] = STATE(259), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(260)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3472), - [sym_block] = STATE(3473), - [sym__expression_parenthesized] = STATE(3473), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3519), + [sym_block] = STATE(3520), + [sym__expression_parenthesized] = STATE(3520), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3473), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3520), [sym_comment] = STATE(260), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(261)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(268), - [sym_ctrl_if_parenthesized] = STATE(3472), - [sym_block] = STATE(3473), - [sym__expression_parenthesized] = STATE(3473), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3531), + [sym_block] = STATE(3533), + [sym__expression_parenthesized] = STATE(3533), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3473), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3533), [sym_comment] = STATE(261), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(262)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3509), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(265), + [sym_ctrl_if_parenthesized] = STATE(3531), + [sym_block] = STATE(3533), + [sym__expression_parenthesized] = STATE(3533), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3511), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3533), [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(263)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(269), - [sym_ctrl_if_parenthesized] = STATE(3509), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3535), + [sym_block] = STATE(3536), + [sym__expression_parenthesized] = STATE(3536), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3511), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3536), [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(264)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3514), - [sym_block] = STATE(3515), - [sym__expression_parenthesized] = STATE(3515), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3537), + [sym_block] = STATE(3538), + [sym__expression_parenthesized] = STATE(3538), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3515), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3538), [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(265)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(271), - [sym_ctrl_if_parenthesized] = STATE(3514), - [sym_block] = STATE(3515), - [sym__expression_parenthesized] = STATE(3515), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3554), + [sym_block] = STATE(3570), + [sym__expression_parenthesized] = STATE(3570), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3515), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3570), [sym_comment] = STATE(265), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(266)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3517), - [sym_block] = STATE(3518), - [sym__expression_parenthesized] = STATE(3518), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(270), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_block] = STATE(3509), + [sym__expression_parenthesized] = STATE(3509), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3518), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3509), [sym_comment] = STATE(266), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(267)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(272), - [sym_ctrl_if_parenthesized] = STATE(3517), - [sym_block] = STATE(3518), - [sym__expression_parenthesized] = STATE(3518), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(273), + [sym_ctrl_if_parenthesized] = STATE(3575), + [sym_block] = STATE(3579), + [sym__expression_parenthesized] = STATE(3579), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3518), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3579), [sym_comment] = STATE(267), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(268)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3520), - [sym_block] = STATE(3606), - [sym__expression_parenthesized] = STATE(3606), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(269), + [sym_ctrl_if_parenthesized] = STATE(3583), + [sym_block] = STATE(3586), + [sym__expression_parenthesized] = STATE(3586), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3606), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3586), [sym_comment] = STATE(268), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(269)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3564), - [sym_block] = STATE(3566), - [sym__expression_parenthesized] = STATE(3566), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3566), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3477), [sym_comment] = STATE(269), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(270)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(273), - [sym_ctrl_if_parenthesized] = STATE(3564), - [sym_block] = STATE(3566), - [sym__expression_parenthesized] = STATE(3566), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3588), + [sym_block] = STATE(3589), + [sym__expression_parenthesized] = STATE(3589), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3566), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3589), [sym_comment] = STATE(270), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(271)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3568), - [sym_block] = STATE(3571), - [sym__expression_parenthesized] = STATE(3571), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3588), + [sym_block] = STATE(3589), + [sym__expression_parenthesized] = STATE(3589), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3571), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3589), [sym_comment] = STATE(271), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(272)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3572), - [sym_block] = STATE(3574), - [sym__expression_parenthesized] = STATE(3574), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(207), + [sym_ctrl_if_parenthesized] = STATE(3469), + [sym_block] = STATE(3470), + [sym__expression_parenthesized] = STATE(3470), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3574), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3470), [sym_comment] = STATE(272), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(273)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(1418), - [sym_ctrl_if_parenthesized] = STATE(3589), - [sym_block] = STATE(3590), - [sym__expression_parenthesized] = STATE(3590), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3471), + [sym_block] = STATE(3472), + [sym__expression_parenthesized] = STATE(3472), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3590), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3472), [sym_comment] = STATE(273), - [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(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(274)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(206), - [sym_ctrl_if_parenthesized] = STATE(3439), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(209), + [sym_ctrl_if_parenthesized] = STATE(3471), + [sym_block] = STATE(3472), + [sym__expression_parenthesized] = STATE(3472), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3443), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3472), [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(275)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3524), - [sym_block] = STATE(3529), - [sym__expression_parenthesized] = STATE(3529), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(235), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3529), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3477), [sym_comment] = STATE(275), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(276)] = { - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3514), - [sym_block] = STATE(3515), - [sym__expression_parenthesized] = STATE(3515), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [aux_sym__repeat_newline] = STATE(1416), + [sym_ctrl_if_parenthesized] = STATE(3537), + [sym_block] = STATE(3538), + [sym__expression_parenthesized] = STATE(3538), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3515), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3538), [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(998), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [sym__newline] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [sym__newline] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(277)] = { - [sym_cmd_identifier] = STATE(2973), - [sym_ctrl_if] = STATE(3357), - [sym_block] = STATE(3358), - [sym__expression] = STATE(3358), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2263), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2990), + [sym_ctrl_if] = STATE(3401), + [sym_block] = STATE(3404), + [sym__expression] = STATE(3404), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2264), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3358), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(307), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3404), [sym_comment] = STATE(277), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1292), - [aux_sym__val_number_decimal_token2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(278)] = { - [sym_cmd_identifier] = STATE(3206), - [sym_ctrl_if] = STATE(3480), - [sym_block] = STATE(3481), - [sym__expression] = STATE(3481), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_command] = STATE(3481), + [sym_cmd_identifier] = STATE(3114), + [sym_ctrl_if] = STATE(3426), + [sym_block] = STATE(3427), + [sym__expression] = STATE(3427), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_command] = STATE(3427), [sym_comment] = STATE(278), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), @@ -70198,25 +70408,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(39), [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1300), - [aux_sym_cmd_identifier_token3] = ACTIONS(1302), - [aux_sym_cmd_identifier_token4] = ACTIONS(1302), - [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1324), [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(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_decimal_token4] = ACTIONS(1312), + [aux_sym__val_number_decimal_token1] = ACTIONS(1326), + [aux_sym__val_number_decimal_token2] = ACTIONS(1328), + [aux_sym__val_number_decimal_token3] = ACTIONS(1330), + [aux_sym__val_number_decimal_token4] = ACTIONS(1330), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), @@ -70230,229 +70440,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(279)] = { + [sym_cmd_identifier] = STATE(2982), + [sym__expression_parenthesized] = STATE(2304), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3601), [sym_comment] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1316), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1401), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(280)] = { - [sym_cmd_identifier] = STATE(2963), - [sym__expression_parenthesized] = STATE(2306), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym_cmd_identifier] = STATE(2920), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3461), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3405), [sym_comment] = STATE(280), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1408), - [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(1270), - [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), + [aux_sym_pipe_element_repeat2] = STATE(1402), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(281)] = { - [sym_cmd_identifier] = STATE(2943), - [sym__expression] = STATE(2304), - [sym_expr_unary] = STATE(1290), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1290), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(973), - [sym_val_range] = STATE(1290), - [sym__value] = STATE(1290), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1361), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3498), + [sym_cmd_identifier] = STATE(2990), + [sym_ctrl_if] = STATE(3401), + [sym_block] = STATE(3404), + [sym__expression] = STATE(3404), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2264), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3404), [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1405), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(282)] = { + [sym_cmd_identifier] = STATE(2920), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3405), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_repeat2] = STATE(1402), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(283)] = { + [sym_cmd_identifier] = STATE(2920), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3405), + [sym_comment] = STATE(283), + [aux_sym_pipe_element_repeat2] = STATE(1402), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(284)] = { + [sym_cmd_identifier] = STATE(2990), + [sym_ctrl_if] = STATE(3401), + [sym_block] = STATE(3404), + [sym__expression] = STATE(3404), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2264), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3404), + [sym_comment] = STATE(284), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(285)] = { + [sym_cmd_identifier] = STATE(2920), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3405), + [sym_comment] = STATE(285), + [aux_sym_pipe_element_repeat2] = STATE(1402), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(286)] = { + [sym_cmd_identifier] = STATE(2990), + [sym_ctrl_if] = STATE(3401), + [sym_block] = STATE(3404), + [sym__expression] = STATE(3404), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2264), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_command] = STATE(3404), + [sym_comment] = STATE(286), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1284), + [aux_sym_cmd_identifier_token4] = ACTIONS(1284), + [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1298), + [aux_sym__val_number_decimal_token2] = ACTIONS(1300), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(287)] = { + [sym_cmd_identifier] = STATE(2973), + [sym__expression] = STATE(2306), + [sym_expr_unary] = STATE(1303), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1303), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1303), + [sym__value] = STATE(1303), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1369), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_env_var] = STATE(4949), + [sym_command] = STATE(3464), + [sym_comment] = STATE(287), + [aux_sym_pipe_element_repeat2] = STATE(1402), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -70482,7 +71253,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(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -70506,5864 +71277,4994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), + [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(282)] = { - [sym_cmd_identifier] = STATE(2963), - [sym__expression_parenthesized] = STATE(2306), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [STATE(288)] = { + [sym_cmd_identifier] = STATE(2982), + [sym__expression_parenthesized] = STATE(2304), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3461), - [sym_comment] = STATE(282), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1408), - [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(1270), - [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), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3601), + [sym_comment] = STATE(288), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1401), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2819), - [sym__expression] = STATE(2300), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [STATE(289)] = { + [sym_cmd_identifier] = STATE(2982), + [sym__expression_parenthesized] = STATE(2304), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3291), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_repeat2] = STATE(1405), - [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(1270), - [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(284)] = { - [sym_cmd_identifier] = STATE(2819), - [sym__expression] = STATE(2300), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3291), - [sym_comment] = STATE(284), - [aux_sym_pipe_element_repeat2] = STATE(1405), - [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(1270), - [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(285)] = { - [sym_cmd_identifier] = STATE(2973), - [sym_ctrl_if] = STATE(3357), - [sym_block] = STATE(3358), - [sym__expression] = STATE(3358), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2263), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(313), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3358), - [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(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), - [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(2963), - [sym__expression_parenthesized] = STATE(2306), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(4687), - [sym__command_parenthesized] = STATE(3461), - [sym_comment] = STATE(286), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1408), - [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(1270), - [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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(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), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1318), - [aux_sym__immediate_decimal_token5] = ACTIONS(1320), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2973), - [sym_ctrl_if] = STATE(3357), - [sym_block] = STATE(3358), - [sym__expression] = STATE(3358), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2263), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(321), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3358), - [sym_comment] = STATE(288), - [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(1016), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_decimal_token4] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(289)] = { + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(176), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_env_var] = STATE(4695), + [sym__command_parenthesized] = STATE(3601), [sym_comment] = STATE(289), - [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_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1324), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1401), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(290)] = { - [sym_cmd_identifier] = STATE(2819), - [sym__expression] = STATE(2300), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(148), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3291), [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1405), - [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(1270), - [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(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1332), + [aux_sym__immediate_decimal_token5] = ACTIONS(1334), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [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_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_token1] = ACTIONS(1326), - [aux_sym__immediate_decimal_token5] = ACTIONS(1328), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1336), + [aux_sym__immediate_decimal_token5] = ACTIONS(1338), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(292)] = { - [sym_cmd_identifier] = STATE(2819), - [sym__expression] = STATE(2300), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(134), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_env_var] = STATE(5018), - [sym_command] = STATE(3291), [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1405), - [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(1270), - [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(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1340), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1342), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(293)] = { [sym_comment] = STATE(293), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1332), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1344), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1346), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(294)] = { - [sym_cmd_identifier] = STATE(2973), - [sym_ctrl_if] = STATE(3357), - [sym_block] = STATE(3358), - [sym__expression] = STATE(3358), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2263), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(326), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_command] = STATE(3358), [sym_comment] = STATE(294), - [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(1014), - [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(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [aux_sym_cmd_identifier_token3] = ACTIONS(1266), - [aux_sym_cmd_identifier_token4] = ACTIONS(1266), - [aux_sym_cmd_identifier_token5] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1272), - [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), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1348), + [aux_sym__immediate_decimal_token5] = ACTIONS(1350), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(295)] = { [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1334), - [aux_sym__immediate_decimal_token5] = ACTIONS(1336), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(296)] = { [sym_comment] = STATE(296), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1338), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1346), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(297)] = { [sym_comment] = STATE(297), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1344), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1356), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(298)] = { [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1316), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1358), + [aux_sym__immediate_decimal_token5] = ACTIONS(1360), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(299)] = { [sym_comment] = STATE(299), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1332), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1362), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(300)] = { [sym_comment] = STATE(300), - [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_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1324), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1342), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(301)] = { [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1346), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1364), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(302)] = { [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1368), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(303)] = { [sym_comment] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(777), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1350), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(304)] = { [sym_comment] = STATE(304), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1354), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(805), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(305)] = { [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(306)] = { [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_SLASH_SLASH] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_bit_DASHshl] = ACTIONS(886), - [anon_sym_bit_DASHshr] = ACTIONS(886), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_BANG_TILDE] = ACTIONS(886), - [anon_sym_like] = ACTIONS(886), - [anon_sym_not_DASHlike] = ACTIONS(886), - [anon_sym_bit_DASHand] = ACTIONS(886), - [anon_sym_bit_DASHxor] = ACTIONS(886), - [anon_sym_bit_DASHor] = ACTIONS(886), - [anon_sym_and] = ACTIONS(886), - [anon_sym_xor] = ACTIONS(886), - [anon_sym_or] = ACTIONS(886), - [anon_sym_in2] = ACTIONS(886), - [anon_sym_not_DASHin] = ACTIONS(886), - [anon_sym_has] = ACTIONS(886), - [anon_sym_not_DASHhas] = ACTIONS(886), - [anon_sym_starts_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), - [anon_sym_ends_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_GT_EQ] = ACTIONS(886), - [aux_sym_cmd_identifier_token6] = ACTIONS(890), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), - [anon_sym_DOT_DOT_LT2] = ACTIONS(894), - [sym_filesize_unit] = ACTIONS(1356), - [sym_duration_unit] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(307)] = { [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1360), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(308)] = { [sym_comment] = STATE(308), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1344), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(914), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(916), + [anon_sym_SLASH_SLASH] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_bit_DASHshl] = ACTIONS(916), + [anon_sym_bit_DASHshr] = ACTIONS(916), + [anon_sym_EQ_TILDE] = ACTIONS(916), + [anon_sym_BANG_TILDE] = ACTIONS(916), + [anon_sym_like] = ACTIONS(916), + [anon_sym_not_DASHlike] = ACTIONS(916), + [anon_sym_bit_DASHand] = ACTIONS(916), + [anon_sym_bit_DASHxor] = ACTIONS(916), + [anon_sym_bit_DASHor] = ACTIONS(916), + [anon_sym_and] = ACTIONS(916), + [anon_sym_xor] = ACTIONS(916), + [anon_sym_or] = ACTIONS(916), + [anon_sym_in2] = ACTIONS(916), + [anon_sym_not_DASHin] = ACTIONS(916), + [anon_sym_has] = ACTIONS(916), + [anon_sym_not_DASHhas] = ACTIONS(916), + [anon_sym_starts_DASHwith] = ACTIONS(916), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(916), + [anon_sym_ends_DASHwith] = ACTIONS(916), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(916), + [anon_sym_EQ_EQ] = ACTIONS(916), + [anon_sym_BANG_EQ] = ACTIONS(916), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(916), + [aux_sym_cmd_identifier_token6] = ACTIONS(920), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(924), + [anon_sym_DOT_DOT_LT2] = ACTIONS(924), + [sym_filesize_unit] = ACTIONS(1374), + [sym_duration_unit] = ACTIONS(1376), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(309)] = { [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(310)] = { [sym_comment] = STATE(310), - [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), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(311)] = { [sym_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(777), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(312)] = { [sym_comment] = STATE(312), - [ts_builtin_sym_end] = ACTIONS(868), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1380), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(313)] = { [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1382), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [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_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), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1384), + [aux_sym__immediate_decimal_token5] = ACTIONS(1386), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(315)] = { [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1368), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(316)] = { [sym_comment] = STATE(316), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(317)] = { [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(318)] = { [sym_comment] = STATE(318), - [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), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1388), + [sym_duration_unit] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(320)] = { [sym_comment] = STATE(320), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1354), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1392), + [sym_duration_unit] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(321)] = { [sym_comment] = STATE(321), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(1374), - [sym_duration_unit] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(322)] = { [sym_comment] = STATE(322), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1396), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(323)] = { [sym_comment] = STATE(323), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(324)] = { [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(751), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_bit_DASHshl] = ACTIONS(753), + [anon_sym_bit_DASHshr] = ACTIONS(753), + [anon_sym_EQ_TILDE] = ACTIONS(753), + [anon_sym_BANG_TILDE] = ACTIONS(753), + [anon_sym_like] = ACTIONS(753), + [anon_sym_not_DASHlike] = ACTIONS(753), + [anon_sym_bit_DASHand] = ACTIONS(753), + [anon_sym_bit_DASHxor] = ACTIONS(753), + [anon_sym_bit_DASHor] = ACTIONS(753), + [anon_sym_and] = ACTIONS(753), + [anon_sym_xor] = ACTIONS(753), + [anon_sym_or] = ACTIONS(753), + [anon_sym_in2] = ACTIONS(753), + [anon_sym_not_DASHin] = ACTIONS(753), + [anon_sym_has] = ACTIONS(753), + [anon_sym_not_DASHhas] = ACTIONS(753), + [anon_sym_starts_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), + [anon_sym_ends_DASHwith] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(753), + [aux_sym_cmd_identifier_token6] = ACTIONS(751), + [sym__newline] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_err_GT_PIPE] = ACTIONS(751), + [anon_sym_out_GT_PIPE] = ACTIONS(751), + [anon_sym_e_GT_PIPE] = ACTIONS(751), + [anon_sym_o_GT_PIPE] = ACTIONS(751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(751), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(751), + [anon_sym_xor2] = ACTIONS(751), + [anon_sym_or2] = ACTIONS(751), + [anon_sym_not_DASHin2] = ACTIONS(751), + [anon_sym_has2] = ACTIONS(751), + [anon_sym_not_DASHhas2] = ACTIONS(751), + [anon_sym_starts_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), + [anon_sym_ends_DASHwith2] = ACTIONS(751), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), + [anon_sym_EQ_EQ2] = ACTIONS(751), + [anon_sym_BANG_EQ2] = ACTIONS(751), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(751), + [anon_sym_GT_EQ2] = ACTIONS(751), + [anon_sym_EQ_TILDE2] = ACTIONS(751), + [anon_sym_BANG_TILDE2] = ACTIONS(751), + [anon_sym_like2] = ACTIONS(751), + [anon_sym_not_DASHlike2] = ACTIONS(751), + [anon_sym_STAR_STAR2] = ACTIONS(751), + [anon_sym_PLUS_PLUS2] = ACTIONS(751), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(751), + [anon_sym_SLASH_SLASH2] = ACTIONS(751), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(751), + [anon_sym_bit_DASHshr2] = ACTIONS(751), + [anon_sym_bit_DASHand2] = ACTIONS(751), + [anon_sym_bit_DASHxor2] = ACTIONS(751), + [anon_sym_bit_DASHor2] = ACTIONS(751), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1380), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(325)] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(326)] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(900), - [anon_sym_bit_DASHshr] = ACTIONS(900), - [anon_sym_EQ_TILDE] = ACTIONS(900), - [anon_sym_BANG_TILDE] = ACTIONS(900), - [anon_sym_like] = ACTIONS(900), - [anon_sym_not_DASHlike] = ACTIONS(900), - [anon_sym_bit_DASHand] = ACTIONS(900), - [anon_sym_bit_DASHxor] = ACTIONS(900), - [anon_sym_bit_DASHor] = ACTIONS(900), - [anon_sym_and] = ACTIONS(900), - [anon_sym_xor] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_in2] = ACTIONS(900), - [anon_sym_not_DASHin] = ACTIONS(900), - [anon_sym_has] = ACTIONS(900), - [anon_sym_not_DASHhas] = ACTIONS(900), - [anon_sym_starts_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), - [anon_sym_ends_DASHwith] = ACTIONS(900), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(904), - [sym__newline] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_err_GT_PIPE] = ACTIONS(785), - [anon_sym_out_GT_PIPE] = ACTIONS(785), - [anon_sym_e_GT_PIPE] = ACTIONS(785), - [anon_sym_o_GT_PIPE] = ACTIONS(785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(785), - [anon_sym_BANG_EQ2] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(785), - [anon_sym_GT_EQ2] = ACTIONS(785), - [anon_sym_EQ_TILDE2] = ACTIONS(785), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_DOT_DOT2] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(1380), - [sym_duration_unit] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(327)] = { [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_SLASH] = ACTIONS(866), - [anon_sym_mod] = ACTIONS(868), - [anon_sym_SLASH_SLASH] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(866), - [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(866), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(866), - [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(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_like] = ACTIONS(793), + [anon_sym_not_DASHlike] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), + [anon_sym_in2] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_has] = ACTIONS(793), + [anon_sym_not_DASHhas] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(328)] = { [sym_comment] = STATE(328), - [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), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(811), + [anon_sym_STAR_STAR] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_bit_DASHshl] = ACTIONS(904), + [anon_sym_bit_DASHshr] = ACTIONS(904), + [anon_sym_EQ_TILDE] = ACTIONS(904), + [anon_sym_BANG_TILDE] = ACTIONS(904), + [anon_sym_like] = ACTIONS(904), + [anon_sym_not_DASHlike] = ACTIONS(904), + [anon_sym_bit_DASHand] = ACTIONS(904), + [anon_sym_bit_DASHxor] = ACTIONS(904), + [anon_sym_bit_DASHor] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_in2] = ACTIONS(904), + [anon_sym_not_DASHin] = ACTIONS(904), + [anon_sym_has] = ACTIONS(904), + [anon_sym_not_DASHhas] = ACTIONS(904), + [anon_sym_starts_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), + [anon_sym_ends_DASHwith] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(904), + [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [sym__newline] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1398), + [sym_duration_unit] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(329)] = { [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_like] = ACTIONS(777), - [anon_sym_not_DASHlike] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_in2] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_has] = ACTIONS(777), - [anon_sym_not_DASHhas] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [aux_sym_cmd_identifier_token6] = ACTIONS(775), - [sym__newline] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_err_GT_PIPE] = ACTIONS(775), - [anon_sym_out_GT_PIPE] = ACTIONS(775), - [anon_sym_e_GT_PIPE] = ACTIONS(775), - [anon_sym_o_GT_PIPE] = ACTIONS(775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(775), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(775), - [anon_sym_xor2] = ACTIONS(775), - [anon_sym_or2] = ACTIONS(775), - [anon_sym_not_DASHin2] = ACTIONS(775), - [anon_sym_has2] = ACTIONS(775), - [anon_sym_not_DASHhas2] = ACTIONS(775), - [anon_sym_starts_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), - [anon_sym_ends_DASHwith2] = ACTIONS(775), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), - [anon_sym_EQ_EQ2] = ACTIONS(775), - [anon_sym_BANG_EQ2] = ACTIONS(775), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(775), - [anon_sym_GT_EQ2] = ACTIONS(775), - [anon_sym_EQ_TILDE2] = ACTIONS(775), - [anon_sym_BANG_TILDE2] = ACTIONS(775), - [anon_sym_like2] = ACTIONS(775), - [anon_sym_not_DASHlike2] = ACTIONS(775), - [anon_sym_STAR_STAR2] = ACTIONS(775), - [anon_sym_PLUS_PLUS2] = ACTIONS(775), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(775), - [anon_sym_SLASH_SLASH2] = ACTIONS(775), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(775), - [anon_sym_bit_DASHshr2] = ACTIONS(775), - [anon_sym_bit_DASHand2] = ACTIONS(775), - [anon_sym_bit_DASHxor2] = ACTIONS(775), - [anon_sym_bit_DASHor2] = ACTIONS(775), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_mod] = ACTIONS(805), + [anon_sym_SLASH_SLASH] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_bit_DASHshl] = ACTIONS(805), + [anon_sym_bit_DASHshr] = ACTIONS(805), + [anon_sym_EQ_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(805), + [anon_sym_like] = ACTIONS(805), + [anon_sym_not_DASHlike] = ACTIONS(805), + [anon_sym_bit_DASHand] = ACTIONS(805), + [anon_sym_bit_DASHxor] = ACTIONS(805), + [anon_sym_bit_DASHor] = ACTIONS(805), + [anon_sym_and] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(805), + [anon_sym_or] = ACTIONS(805), + [anon_sym_in2] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(805), + [anon_sym_has] = ACTIONS(805), + [anon_sym_not_DASHhas] = ACTIONS(805), + [anon_sym_starts_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), + [anon_sym_ends_DASHwith] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(805), + [aux_sym_cmd_identifier_token6] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(330)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym__match_pattern_expression] = STATE(4454), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list_body] = STATE(4682), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_rest] = STATE(5214), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4015), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(4837), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4840), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4021), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4840), - [sym__val_number_decimal] = STATE(3648), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4840), - [sym_val_filesize] = STATE(4840), - [sym_val_binary] = STATE(4840), - [sym_val_string] = STATE(4840), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5119), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3937), - [sym_val_table] = STATE(4840), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4022), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym__match_pattern_expression] = STATE(4534), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list_body] = STATE(4677), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_rest] = STATE(5185), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4134), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4818), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4820), + [sym_val_bool] = STATE(4323), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4148), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4820), + [sym__val_number_decimal] = STATE(3625), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4820), + [sym_val_filesize] = STATE(4820), + [sym_val_binary] = STATE(4820), + [sym_val_string] = STATE(4820), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5137), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3893), + [sym_val_table] = STATE(4820), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4017), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(330), - [aux_sym__types_body_repeat1] = STATE(378), - [aux_sym_parameter_repeat2] = STATE(4218), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [aux_sym_list_body_repeat1] = STATE(667), - [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(1390), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [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), + [aux_sym__types_body_repeat1] = STATE(379), + [aux_sym_parameter_repeat2] = STATE(4331), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(331)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym__match_pattern_expression] = STATE(4454), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list_body] = STATE(4682), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_rest] = STATE(5214), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4015), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(4837), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4840), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4021), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4840), - [sym__val_number_decimal] = STATE(3648), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4840), - [sym_val_filesize] = STATE(4840), - [sym_val_binary] = STATE(4840), - [sym_val_string] = STATE(4840), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5219), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3937), - [sym_val_table] = STATE(4840), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4022), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym__match_pattern_expression] = STATE(4534), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list_body] = STATE(4677), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_rest] = STATE(5185), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4134), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4818), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4820), + [sym_val_bool] = STATE(4323), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4148), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4820), + [sym__val_number_decimal] = STATE(3625), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4820), + [sym_val_filesize] = STATE(4820), + [sym_val_binary] = STATE(4820), + [sym_val_string] = STATE(4820), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5282), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3893), + [sym_val_table] = STATE(4820), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4017), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(331), - [aux_sym__types_body_repeat1] = STATE(378), - [aux_sym_parameter_repeat2] = STATE(4218), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [aux_sym_list_body_repeat1] = STATE(667), - [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(1390), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [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), + [aux_sym__types_body_repeat1] = STATE(379), + [aux_sym_parameter_repeat2] = STATE(4331), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(332)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym__match_pattern_expression] = STATE(4454), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list_body] = STATE(4682), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_rest] = STATE(5214), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4015), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(4837), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4840), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4021), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4840), - [sym__val_number_decimal] = STATE(3648), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4840), - [sym_val_filesize] = STATE(4840), - [sym_val_binary] = STATE(4840), - [sym_val_string] = STATE(4840), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5267), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3937), - [sym_val_table] = STATE(4840), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4022), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym__match_pattern_expression] = STATE(4534), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list_body] = STATE(4677), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_rest] = STATE(5185), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4134), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4818), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4820), + [sym_val_bool] = STATE(4323), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4148), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4820), + [sym__val_number_decimal] = STATE(3625), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4820), + [sym_val_filesize] = STATE(4820), + [sym_val_binary] = STATE(4820), + [sym_val_string] = STATE(4820), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5163), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3893), + [sym_val_table] = STATE(4820), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4017), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(332), - [aux_sym__types_body_repeat1] = STATE(378), - [aux_sym_parameter_repeat2] = STATE(4218), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [aux_sym_list_body_repeat1] = STATE(667), - [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(1390), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [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), + [aux_sym__types_body_repeat1] = STATE(379), + [aux_sym_parameter_repeat2] = STATE(4331), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(333)] = { [sym_comment] = STATE(333), - [ts_builtin_sym_end] = ACTIONS(1234), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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_POUND] = ACTIONS(105), }, [STATE(334)] = { [sym_comment] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(1216), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(335)] = { [sym_comment] = STATE(335), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(336)] = { [sym_comment] = STATE(336), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1250), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_SLASH_SLASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_bit_DASHshl] = ACTIONS(1252), + [anon_sym_bit_DASHshr] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_BANG_TILDE] = ACTIONS(1252), + [anon_sym_like] = ACTIONS(1252), + [anon_sym_not_DASHlike] = ACTIONS(1252), + [anon_sym_bit_DASHand] = ACTIONS(1252), + [anon_sym_bit_DASHxor] = ACTIONS(1252), + [anon_sym_bit_DASHor] = ACTIONS(1252), + [anon_sym_and] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1252), + [anon_sym_or] = ACTIONS(1252), + [anon_sym_in2] = ACTIONS(1252), + [anon_sym_not_DASHin] = ACTIONS(1252), + [anon_sym_has] = ACTIONS(1252), + [anon_sym_not_DASHhas] = ACTIONS(1252), + [anon_sym_starts_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), + [anon_sym_ends_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1256), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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_POUND] = ACTIONS(105), }, [STATE(337)] = { [sym_comment] = STATE(337), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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_POUND] = ACTIONS(105), }, [STATE(338)] = { [sym_comment] = STATE(338), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1258), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_SLASH_SLASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_bit_DASHshl] = ACTIONS(1252), + [anon_sym_bit_DASHshr] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_BANG_TILDE] = ACTIONS(1252), + [anon_sym_like] = ACTIONS(1252), + [anon_sym_not_DASHlike] = ACTIONS(1252), + [anon_sym_bit_DASHand] = ACTIONS(1252), + [anon_sym_bit_DASHxor] = ACTIONS(1252), + [anon_sym_bit_DASHor] = ACTIONS(1252), + [anon_sym_and] = ACTIONS(1252), + [anon_sym_xor] = ACTIONS(1252), + [anon_sym_or] = ACTIONS(1252), + [anon_sym_in2] = ACTIONS(1252), + [anon_sym_not_DASHin] = ACTIONS(1252), + [anon_sym_has] = ACTIONS(1252), + [anon_sym_not_DASHhas] = ACTIONS(1252), + [anon_sym_starts_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), + [anon_sym_ends_DASHwith] = ACTIONS(1252), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1256), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(339)] = { [sym_comment] = STATE(339), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(340)] = { [sym_comment] = STATE(340), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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_POUND] = ACTIONS(105), }, [STATE(341)] = { [sym_comment] = STATE(341), - [anon_sym_in] = ACTIONS(1218), - [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(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_err_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_GT_PIPE] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1218), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1218), - [anon_sym_xor2] = ACTIONS(1218), - [anon_sym_or2] = ACTIONS(1218), - [anon_sym_not_DASHin2] = ACTIONS(1218), - [anon_sym_has2] = ACTIONS(1218), - [anon_sym_not_DASHhas2] = ACTIONS(1218), - [anon_sym_starts_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), - [anon_sym_ends_DASHwith2] = ACTIONS(1218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), - [anon_sym_EQ_EQ2] = ACTIONS(1218), - [anon_sym_BANG_EQ2] = ACTIONS(1218), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1218), - [anon_sym_GT_EQ2] = ACTIONS(1218), - [anon_sym_EQ_TILDE2] = ACTIONS(1218), - [anon_sym_BANG_TILDE2] = ACTIONS(1218), - [anon_sym_like2] = ACTIONS(1218), - [anon_sym_not_DASHlike2] = ACTIONS(1218), - [anon_sym_STAR_STAR2] = ACTIONS(1218), - [anon_sym_PLUS_PLUS2] = ACTIONS(1218), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1218), - [anon_sym_SLASH_SLASH2] = ACTIONS(1218), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1218), - [anon_sym_bit_DASHshr2] = ACTIONS(1218), - [anon_sym_bit_DASHand2] = ACTIONS(1218), - [anon_sym_bit_DASHxor2] = ACTIONS(1218), - [anon_sym_bit_DASHor2] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_in] = ACTIONS(1226), - [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(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(1226), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1226), - [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_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_cell_path] = STATE(383), - [sym_path] = STATE(367), - [sym_comment] = STATE(343), - [aux_sym__where_predicate_lhs_repeat1] = STATE(375), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1442), - [anon_sym_in] = ACTIONS(1442), - [sym__newline] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_err_GT_PIPE] = ACTIONS(1442), - [anon_sym_out_GT_PIPE] = ACTIONS(1442), - [anon_sym_e_GT_PIPE] = ACTIONS(1442), - [anon_sym_o_GT_PIPE] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1442), - [anon_sym_GT2] = ACTIONS(1442), - [anon_sym_DASH2] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_STAR2] = ACTIONS(1442), - [anon_sym_and2] = ACTIONS(1442), - [anon_sym_xor2] = ACTIONS(1442), - [anon_sym_or2] = ACTIONS(1442), - [anon_sym_not_DASHin2] = ACTIONS(1442), - [anon_sym_has2] = ACTIONS(1442), - [anon_sym_not_DASHhas2] = ACTIONS(1442), - [anon_sym_starts_DASHwith2] = ACTIONS(1442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1442), - [anon_sym_ends_DASHwith2] = ACTIONS(1442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1442), - [anon_sym_EQ_EQ2] = ACTIONS(1442), - [anon_sym_BANG_EQ2] = ACTIONS(1442), - [anon_sym_LT2] = ACTIONS(1442), - [anon_sym_LT_EQ2] = ACTIONS(1442), - [anon_sym_GT_EQ2] = ACTIONS(1442), - [anon_sym_EQ_TILDE2] = ACTIONS(1442), - [anon_sym_BANG_TILDE2] = ACTIONS(1442), - [anon_sym_like2] = ACTIONS(1442), - [anon_sym_not_DASHlike2] = ACTIONS(1442), - [anon_sym_STAR_STAR2] = ACTIONS(1442), - [anon_sym_PLUS_PLUS2] = ACTIONS(1442), - [anon_sym_SLASH2] = ACTIONS(1442), - [anon_sym_mod2] = ACTIONS(1442), - [anon_sym_SLASH_SLASH2] = ACTIONS(1442), - [anon_sym_PLUS2] = ACTIONS(1442), - [anon_sym_bit_DASHshl2] = ACTIONS(1442), - [anon_sym_bit_DASHshr2] = ACTIONS(1442), - [anon_sym_bit_DASHand2] = ACTIONS(1442), - [anon_sym_bit_DASHxor2] = ACTIONS(1442), - [anon_sym_bit_DASHor2] = ACTIONS(1442), - [anon_sym_DOT_DOT2] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [sym__entry_separator] = ACTIONS(1444), - [anon_sym_COLON2] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1446), - [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(1442), - [anon_sym_out_GT_GT] = ACTIONS(1442), - [anon_sym_e_GT_GT] = ACTIONS(1442), - [anon_sym_o_GT_GT] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(344)] = { - [sym__path_suffix] = STATE(386), - [sym_comment] = STATE(344), - [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(1452), - [anon_sym_BANG] = ACTIONS(1454), - [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(345)] = { - [sym_cell_path] = STATE(426), - [sym_path] = STATE(395), - [sym_comment] = STATE(345), - [aux_sym__where_predicate_lhs_repeat1] = STATE(359), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1444), - [anon_sym_DASH_EQ] = ACTIONS(1444), - [anon_sym_STAR_EQ] = ACTIONS(1444), - [anon_sym_SLASH_EQ] = ACTIONS(1444), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1444), - [anon_sym_in] = ACTIONS(1444), - [sym__newline] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_err_GT_PIPE] = ACTIONS(1444), - [anon_sym_out_GT_PIPE] = ACTIONS(1444), - [anon_sym_e_GT_PIPE] = ACTIONS(1444), - [anon_sym_o_GT_PIPE] = ACTIONS(1444), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_GT2] = ACTIONS(1442), - [anon_sym_DASH2] = ACTIONS(1442), - [anon_sym_RBRACE] = 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(1442), - [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_DOT2] = ACTIONS(1456), - [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(346)] = { - [sym__path_suffix] = STATE(350), - [sym_comment] = STATE(346), - [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_QMARK2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1460), - [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(347)] = { - [sym_comment] = STATE(347), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1462), - [sym__newline] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_err_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_GT_PIPE] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1462), - [anon_sym_xor2] = ACTIONS(1462), - [anon_sym_or2] = ACTIONS(1462), - [anon_sym_not_DASHin2] = ACTIONS(1462), - [anon_sym_has2] = ACTIONS(1462), - [anon_sym_not_DASHhas2] = ACTIONS(1462), - [anon_sym_starts_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), - [anon_sym_ends_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), - [anon_sym_EQ_EQ2] = ACTIONS(1462), - [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1462), - [anon_sym_GT_EQ2] = ACTIONS(1462), - [anon_sym_EQ_TILDE2] = ACTIONS(1462), - [anon_sym_BANG_TILDE2] = ACTIONS(1462), - [anon_sym_like2] = ACTIONS(1462), - [anon_sym_not_DASHlike2] = ACTIONS(1462), - [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1462), - [anon_sym_bit_DASHshr2] = ACTIONS(1462), - [anon_sym_bit_DASHand2] = ACTIONS(1462), - [anon_sym_bit_DASHxor2] = ACTIONS(1462), - [anon_sym_bit_DASHor2] = ACTIONS(1462), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_QMARK2] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1462), - [anon_sym_out_GT_GT] = ACTIONS(1462), - [anon_sym_e_GT_GT] = ACTIONS(1462), - [anon_sym_o_GT_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = 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(1234), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1234), + [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(1234), + [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_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1234), + [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_POUND] = ACTIONS(105), }, - [STATE(348)] = { - [sym_comment] = STATE(348), - [anon_sym_EQ] = ACTIONS(1468), + [STATE(342)] = { + [sym_comment] = STATE(342), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_err_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_GT_PIPE] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1242), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1242), + [anon_sym_xor2] = ACTIONS(1242), + [anon_sym_or2] = ACTIONS(1242), + [anon_sym_not_DASHin2] = ACTIONS(1242), + [anon_sym_has2] = ACTIONS(1242), + [anon_sym_not_DASHhas2] = ACTIONS(1242), + [anon_sym_starts_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), + [anon_sym_ends_DASHwith2] = ACTIONS(1242), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), + [anon_sym_EQ_EQ2] = ACTIONS(1242), + [anon_sym_BANG_EQ2] = ACTIONS(1242), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1242), + [anon_sym_GT_EQ2] = ACTIONS(1242), + [anon_sym_EQ_TILDE2] = ACTIONS(1242), + [anon_sym_BANG_TILDE2] = ACTIONS(1242), + [anon_sym_like2] = ACTIONS(1242), + [anon_sym_not_DASHlike2] = ACTIONS(1242), + [anon_sym_STAR_STAR2] = ACTIONS(1242), + [anon_sym_PLUS_PLUS2] = ACTIONS(1242), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1242), + [anon_sym_SLASH_SLASH2] = ACTIONS(1242), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1242), + [anon_sym_bit_DASHshr2] = ACTIONS(1242), + [anon_sym_bit_DASHand2] = ACTIONS(1242), + [anon_sym_bit_DASHxor2] = ACTIONS(1242), + [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(343)] = { + [sym_comment] = STATE(343), + [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(105), + }, + [STATE(344)] = { + [sym_cell_path] = STATE(415), + [sym_path] = STATE(385), + [sym_comment] = STATE(344), + [aux_sym__where_predicate_lhs_repeat1] = STATE(374), + [anon_sym_EQ] = ACTIONS(1466), [anon_sym_PLUS_EQ] = ACTIONS(1468), [anon_sym_DASH_EQ] = ACTIONS(1468), [anon_sym_STAR_EQ] = ACTIONS(1468), @@ -76381,10 +76282,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), [anon_sym_and2] = ACTIONS(1468), [anon_sym_xor2] = ACTIONS(1468), [anon_sym_or2] = ACTIONS(1468), @@ -76397,7 +76299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT2] = ACTIONS(1466), [anon_sym_LT_EQ2] = ACTIONS(1468), [anon_sym_GT_EQ2] = ACTIONS(1468), [anon_sym_EQ_TILDE2] = ACTIONS(1468), @@ -76405,32 +76307,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), [anon_sym_mod2] = ACTIONS(1468), [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), [anon_sym_bit_DASHshl2] = ACTIONS(1468), [anon_sym_bit_DASHshr2] = ACTIONS(1468), [anon_sym_bit_DASHand2] = ACTIONS(1468), [anon_sym_bit_DASHxor2] = ACTIONS(1468), [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1468), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1470), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(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_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), [anon_sym_err_GT_GT] = ACTIONS(1468), [anon_sym_out_GT_GT] = ACTIONS(1468), [anon_sym_e_GT_GT] = ACTIONS(1468), @@ -76439,10 +76338,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(349)] = { - [sym_comment] = STATE(349), + [STATE(345)] = { + [sym__path_suffix] = STATE(387), + [sym_comment] = STATE(345), [anon_sym_EQ] = ACTIONS(1472), [anon_sym_PLUS_EQ] = ACTIONS(1474), [anon_sym_DASH_EQ] = ACTIONS(1474), @@ -76500,8 +76400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_DOT2] = ACTIONS(1472), [anon_sym_err_GT] = ACTIONS(1472), [anon_sym_out_GT] = ACTIONS(1472), @@ -76521,648 +76421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(350)] = { - [sym_comment] = STATE(350), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1476), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1476), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1476), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1476), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), - [sym__entry_separator] = ACTIONS(1478), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_DOT2] = ACTIONS(1476), - [anon_sym_err_GT] = ACTIONS(1476), - [anon_sym_out_GT] = ACTIONS(1476), - [anon_sym_e_GT] = ACTIONS(1476), - [anon_sym_o_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT] = ACTIONS(1476), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1480), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1480), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1480), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1480), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1480), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1480), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), - [sym__entry_separator] = ACTIONS(1482), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), + [STATE(346)] = { + [sym_cell_path] = STATE(383), + [sym_path] = STATE(366), + [sym_comment] = STATE(346), + [aux_sym__where_predicate_lhs_repeat1] = STATE(375), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [sym__entry_separator] = ACTIONS(1468), + [anon_sym_COLON2] = ACTIONS(1466), [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1480), - [anon_sym_out_GT] = ACTIONS(1480), - [anon_sym_e_GT] = ACTIONS(1480), - [anon_sym_o_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT] = ACTIONS(1480), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(352)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5517), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3887), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), - [sym_comment] = STATE(352), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(353)] = { - [sym_comment] = STATE(353), - [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_RBRACK] = ACTIONS(1512), - [anon_sym_GT2] = ACTIONS(1512), - [anon_sym_DASH2] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_DOT_DOT] = 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_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(354)] = { - [sym_comment] = STATE(354), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1516), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1516), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1516), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1516), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1516), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1518), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DOT2] = ACTIONS(1516), - [anon_sym_err_GT] = ACTIONS(1516), - [anon_sym_out_GT] = ACTIONS(1516), - [anon_sym_e_GT] = ACTIONS(1516), - [anon_sym_o_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT] = ACTIONS(1516), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(355)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5229), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3950), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), - [sym_comment] = STATE(355), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(356)] = { - [sym_comment] = STATE(356), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1518), - [anon_sym_DASH_EQ] = ACTIONS(1518), - [anon_sym_STAR_EQ] = ACTIONS(1518), - [anon_sym_SLASH_EQ] = ACTIONS(1518), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_err_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_GT_PIPE] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_GT2] = ACTIONS(1516), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_STAR2] = ACTIONS(1516), - [anon_sym_and2] = ACTIONS(1518), - [anon_sym_xor2] = ACTIONS(1518), - [anon_sym_or2] = ACTIONS(1518), - [anon_sym_not_DASHin2] = ACTIONS(1518), - [anon_sym_has2] = ACTIONS(1518), - [anon_sym_not_DASHhas2] = ACTIONS(1518), - [anon_sym_starts_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), - [anon_sym_ends_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), - [anon_sym_EQ_EQ2] = ACTIONS(1518), - [anon_sym_BANG_EQ2] = ACTIONS(1518), - [anon_sym_LT2] = ACTIONS(1516), - [anon_sym_LT_EQ2] = ACTIONS(1518), - [anon_sym_GT_EQ2] = ACTIONS(1518), - [anon_sym_EQ_TILDE2] = ACTIONS(1518), - [anon_sym_BANG_TILDE2] = ACTIONS(1518), - [anon_sym_like2] = ACTIONS(1518), - [anon_sym_not_DASHlike2] = ACTIONS(1518), - [anon_sym_STAR_STAR2] = ACTIONS(1518), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1516), - [anon_sym_mod2] = ACTIONS(1518), - [anon_sym_SLASH_SLASH2] = ACTIONS(1518), - [anon_sym_PLUS2] = ACTIONS(1516), - [anon_sym_bit_DASHshl2] = ACTIONS(1518), - [anon_sym_bit_DASHshr2] = ACTIONS(1518), - [anon_sym_bit_DASHand2] = ACTIONS(1518), - [anon_sym_bit_DASHxor2] = ACTIONS(1518), - [anon_sym_bit_DASHor2] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), - [anon_sym_COLON2] = ACTIONS(1518), - [anon_sym_QMARK2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DOT2] = ACTIONS(1516), - [anon_sym_err_GT] = ACTIONS(1516), - [anon_sym_out_GT] = ACTIONS(1516), - [anon_sym_e_GT] = ACTIONS(1516), - [anon_sym_o_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT] = ACTIONS(1516), - [anon_sym_err_GT_GT] = ACTIONS(1518), - [anon_sym_out_GT_GT] = ACTIONS(1518), - [anon_sym_e_GT_GT] = ACTIONS(1518), - [anon_sym_o_GT_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(357)] = { - [sym_comment] = STATE(357), - [anon_sym_EQ] = ACTIONS(1522), - [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_RPAREN] = ACTIONS(1524), - [anon_sym_GT2] = ACTIONS(1522), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1522), - [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(1522), - [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(1522), - [anon_sym_SLASH2] = ACTIONS(1522), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1522), - [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(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), - [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_QMARK2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1522), - [anon_sym_err_GT] = ACTIONS(1522), - [anon_sym_out_GT] = ACTIONS(1522), - [anon_sym_e_GT] = ACTIONS(1522), - [anon_sym_o_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT] = ACTIONS(1522), - [anon_sym_err_GT_GT] = ACTIONS(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(3), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(105), }, - [STATE(358)] = { - [sym_comment] = STATE(358), + [STATE(347)] = { + [sym__path_suffix] = STATE(368), + [sym_comment] = STATE(347), [anon_sym_EQ] = ACTIONS(1472), [anon_sym_PLUS_EQ] = ACTIONS(1472), [anon_sym_DASH_EQ] = ACTIONS(1472), @@ -77220,8 +76562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), [sym__entry_separator] = ACTIONS(1474), [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1484), [anon_sym_DOT2] = ACTIONS(1472), [anon_sym_err_GT] = ACTIONS(1472), [anon_sym_out_GT] = ACTIONS(1472), @@ -77239,650 +76581,1290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(348)] = { + [sym_comment] = STATE(348), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1488), + [anon_sym_DASH_EQ] = ACTIONS(1488), + [anon_sym_STAR_EQ] = ACTIONS(1488), + [anon_sym_SLASH_EQ] = ACTIONS(1488), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [sym__newline] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_err_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_GT_PIPE] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_DASH2] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_STAR2] = ACTIONS(1486), + [anon_sym_and2] = ACTIONS(1488), + [anon_sym_xor2] = ACTIONS(1488), + [anon_sym_or2] = ACTIONS(1488), + [anon_sym_not_DASHin2] = ACTIONS(1488), + [anon_sym_has2] = ACTIONS(1488), + [anon_sym_not_DASHhas2] = ACTIONS(1488), + [anon_sym_starts_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), + [anon_sym_ends_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), + [anon_sym_EQ_EQ2] = ACTIONS(1488), + [anon_sym_BANG_EQ2] = ACTIONS(1488), + [anon_sym_LT2] = ACTIONS(1486), + [anon_sym_LT_EQ2] = ACTIONS(1488), + [anon_sym_GT_EQ2] = ACTIONS(1488), + [anon_sym_EQ_TILDE2] = ACTIONS(1488), + [anon_sym_BANG_TILDE2] = ACTIONS(1488), + [anon_sym_like2] = ACTIONS(1488), + [anon_sym_not_DASHlike2] = ACTIONS(1488), + [anon_sym_STAR_STAR2] = ACTIONS(1488), + [anon_sym_PLUS_PLUS2] = ACTIONS(1486), + [anon_sym_SLASH2] = ACTIONS(1486), + [anon_sym_mod2] = ACTIONS(1488), + [anon_sym_SLASH_SLASH2] = ACTIONS(1488), + [anon_sym_PLUS2] = ACTIONS(1486), + [anon_sym_bit_DASHshl2] = ACTIONS(1488), + [anon_sym_bit_DASHshr2] = ACTIONS(1488), + [anon_sym_bit_DASHand2] = ACTIONS(1488), + [anon_sym_bit_DASHxor2] = ACTIONS(1488), + [anon_sym_bit_DASHor2] = ACTIONS(1488), + [anon_sym_DOT_DOT2] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), + [anon_sym_COLON2] = ACTIONS(1488), + [anon_sym_QMARK2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DOT2] = ACTIONS(1486), + [anon_sym_err_GT] = ACTIONS(1486), + [anon_sym_out_GT] = ACTIONS(1486), + [anon_sym_e_GT] = ACTIONS(1486), + [anon_sym_o_GT] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT] = ACTIONS(1486), + [anon_sym_err_GT_GT] = ACTIONS(1488), + [anon_sym_out_GT_GT] = ACTIONS(1488), + [anon_sym_e_GT_GT] = ACTIONS(1488), + [anon_sym_o_GT_GT] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(349)] = { + [sym_path] = STATE(385), + [sym_comment] = STATE(349), + [aux_sym__where_predicate_lhs_repeat1] = STATE(349), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_COLON2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1494), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(350)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5320), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3955), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(350), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, + [STATE(351)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5282), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3891), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(351), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, + [STATE(352)] = { + [sym_comment] = STATE(352), + [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), + }, + [STATE(353)] = { + [sym_comment] = STATE(353), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(354)] = { + [sym_comment] = STATE(354), + [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(355)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5489), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3878), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(355), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1541), + [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_RPAREN] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1541), + [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(1541), + [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(1541), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [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(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_COLON2] = ACTIONS(1543), + [anon_sym_QMARK2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [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(3), + }, + [STATE(357)] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1545), + [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), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [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(1545), + [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(1545), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [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(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_QMARK2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(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(3), + }, + [STATE(358)] = { + [sym_comment] = STATE(358), + [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(105), }, [STATE(359)] = { - [sym_path] = STATE(395), [sym_comment] = STATE(359), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1526), - [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_RPAREN] = ACTIONS(1528), - [anon_sym_GT2] = ACTIONS(1526), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_STAR2] = ACTIONS(1526), - [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(1526), - [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(1526), - [anon_sym_SLASH2] = ACTIONS(1526), - [anon_sym_mod2] = ACTIONS(1528), - [anon_sym_SLASH_SLASH2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1526), - [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(1526), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), - [anon_sym_COLON2] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1526), - [anon_sym_out_GT] = ACTIONS(1526), - [anon_sym_e_GT] = ACTIONS(1526), - [anon_sym_o_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT] = ACTIONS(1526), - [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(3), + [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(105), }, [STATE(360)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5233), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3919), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1530), - [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_RPAREN] = ACTIONS(1532), - [anon_sym_GT2] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_STAR2] = ACTIONS(1530), - [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(1530), - [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(1530), - [anon_sym_SLASH2] = ACTIONS(1530), - [anon_sym_mod2] = ACTIONS(1532), - [anon_sym_SLASH_SLASH2] = ACTIONS(1532), - [anon_sym_PLUS2] = ACTIONS(1530), - [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(1530), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), - [anon_sym_COLON2] = ACTIONS(1532), - [anon_sym_QMARK2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DOT2] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [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(3), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(361)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5273), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3962), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1522), - [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(1522), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1522), - [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(1522), - [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(1522), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1522), - [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(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), - [sym__entry_separator] = ACTIONS(1524), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_QMARK2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1522), - [anon_sym_err_GT] = ACTIONS(1522), - [anon_sym_out_GT] = ACTIONS(1522), - [anon_sym_e_GT] = ACTIONS(1522), - [anon_sym_o_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT] = ACTIONS(1522), - [anon_sym_err_GT_GT] = ACTIONS(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(103), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5219), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3913), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1486), + [sym__newline] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_err_GT_PIPE] = ACTIONS(1486), + [anon_sym_out_GT_PIPE] = ACTIONS(1486), + [anon_sym_e_GT_PIPE] = ACTIONS(1486), + [anon_sym_o_GT_PIPE] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_DASH2] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_STAR2] = ACTIONS(1486), + [anon_sym_and2] = ACTIONS(1486), + [anon_sym_xor2] = ACTIONS(1486), + [anon_sym_or2] = ACTIONS(1486), + [anon_sym_not_DASHin2] = ACTIONS(1486), + [anon_sym_has2] = ACTIONS(1486), + [anon_sym_not_DASHhas2] = ACTIONS(1486), + [anon_sym_starts_DASHwith2] = ACTIONS(1486), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1486), + [anon_sym_ends_DASHwith2] = ACTIONS(1486), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1486), + [anon_sym_EQ_EQ2] = ACTIONS(1486), + [anon_sym_BANG_EQ2] = ACTIONS(1486), + [anon_sym_LT2] = ACTIONS(1486), + [anon_sym_LT_EQ2] = ACTIONS(1486), + [anon_sym_GT_EQ2] = ACTIONS(1486), + [anon_sym_EQ_TILDE2] = ACTIONS(1486), + [anon_sym_BANG_TILDE2] = ACTIONS(1486), + [anon_sym_like2] = ACTIONS(1486), + [anon_sym_not_DASHlike2] = ACTIONS(1486), + [anon_sym_STAR_STAR2] = ACTIONS(1486), + [anon_sym_PLUS_PLUS2] = ACTIONS(1486), + [anon_sym_SLASH2] = ACTIONS(1486), + [anon_sym_mod2] = ACTIONS(1486), + [anon_sym_SLASH_SLASH2] = ACTIONS(1486), + [anon_sym_PLUS2] = ACTIONS(1486), + [anon_sym_bit_DASHshl2] = ACTIONS(1486), + [anon_sym_bit_DASHshr2] = ACTIONS(1486), + [anon_sym_bit_DASHand2] = ACTIONS(1486), + [anon_sym_bit_DASHxor2] = ACTIONS(1486), + [anon_sym_bit_DASHor2] = ACTIONS(1486), + [anon_sym_DOT_DOT2] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), + [sym__entry_separator] = ACTIONS(1488), + [anon_sym_COLON2] = ACTIONS(1486), + [anon_sym_QMARK2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DOT2] = ACTIONS(1486), + [anon_sym_err_GT] = ACTIONS(1486), + [anon_sym_out_GT] = ACTIONS(1486), + [anon_sym_e_GT] = ACTIONS(1486), + [anon_sym_o_GT] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT] = ACTIONS(1486), + [anon_sym_err_GT_GT] = ACTIONS(1486), + [anon_sym_out_GT_GT] = ACTIONS(1486), + [anon_sym_e_GT_GT] = ACTIONS(1486), + [anon_sym_o_GT_GT] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(363)] = { [sym_comment] = STATE(363), - [anon_sym_EQ] = ACTIONS(1530), - [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(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_STAR2] = ACTIONS(1530), - [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(1530), - [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(1530), - [anon_sym_mod2] = ACTIONS(1530), - [anon_sym_SLASH_SLASH2] = ACTIONS(1530), - [anon_sym_PLUS2] = ACTIONS(1530), - [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(1530), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), - [sym__entry_separator] = ACTIONS(1532), - [anon_sym_COLON2] = ACTIONS(1530), - [anon_sym_QMARK2] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DOT2] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [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(103), + [anon_sym_EQ] = ACTIONS(1541), + [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(1541), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1541), + [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(1541), + [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(1541), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1541), + [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(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [sym__entry_separator] = ACTIONS(1543), + [anon_sym_COLON2] = ACTIONS(1541), + [anon_sym_QMARK2] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [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(105), }, [STATE(364)] = { - [sym_path] = STATE(395), [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1536), - [anon_sym_PLUS_EQ] = ACTIONS(1538), - [anon_sym_DASH_EQ] = ACTIONS(1538), - [anon_sym_STAR_EQ] = ACTIONS(1538), - [anon_sym_SLASH_EQ] = ACTIONS(1538), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1538), - [anon_sym_in] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_like2] = ACTIONS(1538), - [anon_sym_not_DASHlike2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1536), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [anon_sym_COLON2] = ACTIONS(1538), - [anon_sym_DOT2] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(365)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5255), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3929), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), - [sym_comment] = STATE(365), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(366)] = { - [sym_comment] = STATE(366), - [anon_sym_EQ] = ACTIONS(1480), - [anon_sym_PLUS_EQ] = ACTIONS(1482), - [anon_sym_DASH_EQ] = ACTIONS(1482), - [anon_sym_STAR_EQ] = ACTIONS(1482), - [anon_sym_SLASH_EQ] = ACTIONS(1482), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_GT2] = ACTIONS(1480), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1480), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1480), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_like2] = ACTIONS(1482), - [anon_sym_not_DASHlike2] = ACTIONS(1482), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1480), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1480), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [anon_sym_DOT_DOT2] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), - [anon_sym_COLON2] = ACTIONS(1482), - [anon_sym_QMARK2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1480), - [anon_sym_out_GT] = ACTIONS(1480), - [anon_sym_e_GT] = ACTIONS(1480), - [anon_sym_o_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT] = ACTIONS(1480), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(367)] = { - [sym_comment] = STATE(367), [anon_sym_EQ] = ACTIONS(1545), [anon_sym_PLUS_EQ] = ACTIONS(1545), [anon_sym_DASH_EQ] = ACTIONS(1545), @@ -77901,11 +77883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RBRACK] = ACTIONS(1545), [anon_sym_GT2] = ACTIONS(1545), [anon_sym_DASH2] = ACTIONS(1545), [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), [anon_sym_STAR2] = ACTIONS(1545), [anon_sym_and2] = ACTIONS(1545), [anon_sym_xor2] = ACTIONS(1545), @@ -77942,6 +77922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), [sym__entry_separator] = ACTIONS(1547), [anon_sym_COLON2] = ACTIONS(1545), + [anon_sym_QMARK2] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), [anon_sym_DOT2] = ACTIONS(1545), [anon_sym_err_GT] = ACTIONS(1545), [anon_sym_out_GT] = ACTIONS(1545), @@ -77959,890 +77941,1051 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(103), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(365)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5345), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3933), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(365), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, + [STATE(366)] = { + [sym_comment] = STATE(366), + [anon_sym_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1555), + [anon_sym_in] = ACTIONS(1555), + [sym__newline] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_err_GT_PIPE] = ACTIONS(1555), + [anon_sym_out_GT_PIPE] = ACTIONS(1555), + [anon_sym_e_GT_PIPE] = ACTIONS(1555), + [anon_sym_o_GT_PIPE] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_GT2] = ACTIONS(1555), + [anon_sym_DASH2] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_STAR2] = ACTIONS(1555), + [anon_sym_and2] = ACTIONS(1555), + [anon_sym_xor2] = ACTIONS(1555), + [anon_sym_or2] = ACTIONS(1555), + [anon_sym_not_DASHin2] = ACTIONS(1555), + [anon_sym_has2] = ACTIONS(1555), + [anon_sym_not_DASHhas2] = ACTIONS(1555), + [anon_sym_starts_DASHwith2] = ACTIONS(1555), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1555), + [anon_sym_ends_DASHwith2] = ACTIONS(1555), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1555), + [anon_sym_EQ_EQ2] = ACTIONS(1555), + [anon_sym_BANG_EQ2] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ2] = ACTIONS(1555), + [anon_sym_GT_EQ2] = ACTIONS(1555), + [anon_sym_EQ_TILDE2] = ACTIONS(1555), + [anon_sym_BANG_TILDE2] = ACTIONS(1555), + [anon_sym_like2] = ACTIONS(1555), + [anon_sym_not_DASHlike2] = ACTIONS(1555), + [anon_sym_STAR_STAR2] = ACTIONS(1555), + [anon_sym_PLUS_PLUS2] = ACTIONS(1555), + [anon_sym_SLASH2] = ACTIONS(1555), + [anon_sym_mod2] = ACTIONS(1555), + [anon_sym_SLASH_SLASH2] = ACTIONS(1555), + [anon_sym_PLUS2] = ACTIONS(1555), + [anon_sym_bit_DASHshl2] = ACTIONS(1555), + [anon_sym_bit_DASHshr2] = ACTIONS(1555), + [anon_sym_bit_DASHand2] = ACTIONS(1555), + [anon_sym_bit_DASHxor2] = ACTIONS(1555), + [anon_sym_bit_DASHor2] = ACTIONS(1555), + [anon_sym_DOT_DOT2] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), + [sym__entry_separator] = ACTIONS(1557), + [anon_sym_COLON2] = ACTIONS(1555), + [anon_sym_DOT2] = ACTIONS(1555), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1555), + [anon_sym_out_GT_GT] = ACTIONS(1555), + [anon_sym_e_GT_GT] = ACTIONS(1555), + [anon_sym_o_GT_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(367)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5474), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3886), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(367), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(368)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5343), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3931), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(368), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1561), + [anon_sym_in] = ACTIONS(1561), + [sym__newline] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_err_GT_PIPE] = ACTIONS(1561), + [anon_sym_out_GT_PIPE] = ACTIONS(1561), + [anon_sym_e_GT_PIPE] = ACTIONS(1561), + [anon_sym_o_GT_PIPE] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1561), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_GT2] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_STAR2] = ACTIONS(1561), + [anon_sym_and2] = ACTIONS(1561), + [anon_sym_xor2] = ACTIONS(1561), + [anon_sym_or2] = ACTIONS(1561), + [anon_sym_not_DASHin2] = ACTIONS(1561), + [anon_sym_has2] = ACTIONS(1561), + [anon_sym_not_DASHhas2] = ACTIONS(1561), + [anon_sym_starts_DASHwith2] = ACTIONS(1561), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1561), + [anon_sym_ends_DASHwith2] = ACTIONS(1561), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1561), + [anon_sym_EQ_EQ2] = ACTIONS(1561), + [anon_sym_BANG_EQ2] = ACTIONS(1561), + [anon_sym_LT2] = ACTIONS(1561), + [anon_sym_LT_EQ2] = ACTIONS(1561), + [anon_sym_GT_EQ2] = ACTIONS(1561), + [anon_sym_EQ_TILDE2] = ACTIONS(1561), + [anon_sym_BANG_TILDE2] = ACTIONS(1561), + [anon_sym_like2] = ACTIONS(1561), + [anon_sym_not_DASHlike2] = ACTIONS(1561), + [anon_sym_STAR_STAR2] = ACTIONS(1561), + [anon_sym_PLUS_PLUS2] = ACTIONS(1561), + [anon_sym_SLASH2] = ACTIONS(1561), + [anon_sym_mod2] = ACTIONS(1561), + [anon_sym_SLASH_SLASH2] = ACTIONS(1561), + [anon_sym_PLUS2] = ACTIONS(1561), + [anon_sym_bit_DASHshl2] = ACTIONS(1561), + [anon_sym_bit_DASHshr2] = ACTIONS(1561), + [anon_sym_bit_DASHand2] = ACTIONS(1561), + [anon_sym_bit_DASHxor2] = ACTIONS(1561), + [anon_sym_bit_DASHor2] = ACTIONS(1561), + [anon_sym_DOT_DOT2] = ACTIONS(1561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), + [sym__entry_separator] = ACTIONS(1563), + [anon_sym_COLON2] = ACTIONS(1561), + [anon_sym_DOT2] = ACTIONS(1561), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [anon_sym_err_GT_GT] = ACTIONS(1561), + [anon_sym_out_GT_GT] = ACTIONS(1561), + [anon_sym_e_GT_GT] = ACTIONS(1561), + [anon_sym_o_GT_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1561), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(369)] = { [sym_comment] = STATE(369), - [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_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = 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(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), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1565), + [anon_sym_DASH_EQ] = ACTIONS(1565), + [anon_sym_STAR_EQ] = ACTIONS(1565), + [anon_sym_SLASH_EQ] = ACTIONS(1565), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_err_GT_PIPE] = ACTIONS(1565), + [anon_sym_out_GT_PIPE] = ACTIONS(1565), + [anon_sym_e_GT_PIPE] = ACTIONS(1565), + [anon_sym_o_GT_PIPE] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1565), + [anon_sym_xor2] = ACTIONS(1565), + [anon_sym_or2] = ACTIONS(1565), + [anon_sym_not_DASHin2] = ACTIONS(1565), + [anon_sym_has2] = ACTIONS(1565), + [anon_sym_not_DASHhas2] = ACTIONS(1565), + [anon_sym_starts_DASHwith2] = ACTIONS(1565), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1565), + [anon_sym_ends_DASHwith2] = ACTIONS(1565), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1565), + [anon_sym_EQ_EQ2] = ACTIONS(1565), + [anon_sym_BANG_EQ2] = ACTIONS(1565), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1565), + [anon_sym_GT_EQ2] = ACTIONS(1565), + [anon_sym_EQ_TILDE2] = ACTIONS(1565), + [anon_sym_BANG_TILDE2] = ACTIONS(1565), + [anon_sym_like2] = ACTIONS(1565), + [anon_sym_not_DASHlike2] = ACTIONS(1565), + [anon_sym_STAR_STAR2] = ACTIONS(1565), + [anon_sym_PLUS_PLUS2] = ACTIONS(1565), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1565), + [anon_sym_SLASH_SLASH2] = ACTIONS(1565), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1565), + [anon_sym_bit_DASHshr2] = ACTIONS(1565), + [anon_sym_bit_DASHand2] = ACTIONS(1565), + [anon_sym_bit_DASHxor2] = ACTIONS(1565), + [anon_sym_bit_DASHor2] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym__entry_separator] = ACTIONS(1567), + [anon_sym_COLON2] = ACTIONS(1565), + [anon_sym_DOT2] = ACTIONS(1565), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1565), + [anon_sym_out_GT_GT] = ACTIONS(1565), + [anon_sym_e_GT_GT] = ACTIONS(1565), + [anon_sym_o_GT_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(370)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5475), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3932), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5518), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3890), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(370), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(371)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5516), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3934), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5163), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3891), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(371), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(372)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5109), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3942), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5112), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3896), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(372), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(373)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5178), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3889), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(4464), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4723), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5352), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym__table_head] = STATE(3959), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(373), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(374)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5348), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3973), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_path] = STATE(385), [sym_comment] = STATE(374), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(349), + [anon_sym_EQ] = ACTIONS(1577), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1577), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1577), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_like2] = ACTIONS(1579), + [anon_sym_not_DASHlike2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1577), + [anon_sym_SLASH2] = ACTIONS(1577), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1577), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), + [anon_sym_COLON2] = ACTIONS(1579), + [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1577), + [anon_sym_out_GT] = ACTIONS(1577), + [anon_sym_e_GT] = ACTIONS(1577), + [anon_sym_o_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT] = ACTIONS(1577), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(375)] = { - [sym_path] = STATE(367), + [sym_path] = STATE(366), [sym_comment] = STATE(375), [aux_sym__where_predicate_lhs_repeat1] = STATE(376), - [anon_sym_EQ] = ACTIONS(1526), - [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(1526), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1526), - [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(1526), - [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(1526), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1526), - [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(1526), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), - [sym__entry_separator] = ACTIONS(1528), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1526), - [anon_sym_out_GT] = ACTIONS(1526), - [anon_sym_e_GT] = ACTIONS(1526), - [anon_sym_o_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT] = ACTIONS(1526), - [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(103), + [anon_sym_EQ] = ACTIONS(1577), + [anon_sym_PLUS_EQ] = ACTIONS(1577), + [anon_sym_DASH_EQ] = ACTIONS(1577), + [anon_sym_STAR_EQ] = ACTIONS(1577), + [anon_sym_SLASH_EQ] = ACTIONS(1577), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1577), + [anon_sym_in] = ACTIONS(1577), + [sym__newline] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_err_GT_PIPE] = ACTIONS(1577), + [anon_sym_out_GT_PIPE] = ACTIONS(1577), + [anon_sym_e_GT_PIPE] = ACTIONS(1577), + [anon_sym_o_GT_PIPE] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1577), + [anon_sym_GT2] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_STAR2] = ACTIONS(1577), + [anon_sym_and2] = ACTIONS(1577), + [anon_sym_xor2] = ACTIONS(1577), + [anon_sym_or2] = ACTIONS(1577), + [anon_sym_not_DASHin2] = ACTIONS(1577), + [anon_sym_has2] = ACTIONS(1577), + [anon_sym_not_DASHhas2] = ACTIONS(1577), + [anon_sym_starts_DASHwith2] = ACTIONS(1577), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1577), + [anon_sym_ends_DASHwith2] = ACTIONS(1577), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1577), + [anon_sym_EQ_EQ2] = ACTIONS(1577), + [anon_sym_BANG_EQ2] = ACTIONS(1577), + [anon_sym_LT2] = ACTIONS(1577), + [anon_sym_LT_EQ2] = ACTIONS(1577), + [anon_sym_GT_EQ2] = ACTIONS(1577), + [anon_sym_EQ_TILDE2] = ACTIONS(1577), + [anon_sym_BANG_TILDE2] = ACTIONS(1577), + [anon_sym_like2] = ACTIONS(1577), + [anon_sym_not_DASHlike2] = ACTIONS(1577), + [anon_sym_STAR_STAR2] = ACTIONS(1577), + [anon_sym_PLUS_PLUS2] = ACTIONS(1577), + [anon_sym_SLASH2] = ACTIONS(1577), + [anon_sym_mod2] = ACTIONS(1577), + [anon_sym_SLASH_SLASH2] = ACTIONS(1577), + [anon_sym_PLUS2] = ACTIONS(1577), + [anon_sym_bit_DASHshl2] = ACTIONS(1577), + [anon_sym_bit_DASHshr2] = ACTIONS(1577), + [anon_sym_bit_DASHand2] = ACTIONS(1577), + [anon_sym_bit_DASHxor2] = ACTIONS(1577), + [anon_sym_bit_DASHor2] = ACTIONS(1577), + [anon_sym_DOT_DOT2] = ACTIONS(1577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), + [sym__entry_separator] = ACTIONS(1579), + [anon_sym_COLON2] = ACTIONS(1577), + [anon_sym_DOT2] = ACTIONS(1480), + [anon_sym_err_GT] = ACTIONS(1577), + [anon_sym_out_GT] = ACTIONS(1577), + [anon_sym_e_GT] = ACTIONS(1577), + [anon_sym_o_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT] = ACTIONS(1577), + [anon_sym_err_GT_GT] = ACTIONS(1577), + [anon_sym_out_GT_GT] = ACTIONS(1577), + [anon_sym_e_GT_GT] = ACTIONS(1577), + [anon_sym_o_GT_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(376)] = { - [sym_path] = STATE(367), + [sym_path] = STATE(366), [sym_comment] = STATE(376), [aux_sym__where_predicate_lhs_repeat1] = STATE(376), - [anon_sym_EQ] = ACTIONS(1536), - [anon_sym_PLUS_EQ] = ACTIONS(1536), - [anon_sym_DASH_EQ] = ACTIONS(1536), - [anon_sym_STAR_EQ] = ACTIONS(1536), - [anon_sym_SLASH_EQ] = ACTIONS(1536), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_err_GT_PIPE] = ACTIONS(1536), - [anon_sym_out_GT_PIPE] = ACTIONS(1536), - [anon_sym_e_GT_PIPE] = ACTIONS(1536), - [anon_sym_o_GT_PIPE] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1536), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1536), - [anon_sym_xor2] = ACTIONS(1536), - [anon_sym_or2] = ACTIONS(1536), - [anon_sym_not_DASHin2] = ACTIONS(1536), - [anon_sym_has2] = ACTIONS(1536), - [anon_sym_not_DASHhas2] = ACTIONS(1536), - [anon_sym_starts_DASHwith2] = ACTIONS(1536), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1536), - [anon_sym_ends_DASHwith2] = ACTIONS(1536), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1536), - [anon_sym_EQ_EQ2] = ACTIONS(1536), - [anon_sym_BANG_EQ2] = ACTIONS(1536), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1536), - [anon_sym_GT_EQ2] = ACTIONS(1536), - [anon_sym_EQ_TILDE2] = ACTIONS(1536), - [anon_sym_BANG_TILDE2] = ACTIONS(1536), - [anon_sym_like2] = ACTIONS(1536), - [anon_sym_not_DASHlike2] = ACTIONS(1536), - [anon_sym_STAR_STAR2] = ACTIONS(1536), - [anon_sym_PLUS_PLUS2] = ACTIONS(1536), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1536), - [anon_sym_SLASH_SLASH2] = ACTIONS(1536), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1536), - [anon_sym_bit_DASHshr2] = ACTIONS(1536), - [anon_sym_bit_DASHand2] = ACTIONS(1536), - [anon_sym_bit_DASHxor2] = ACTIONS(1536), - [anon_sym_bit_DASHor2] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym__entry_separator] = ACTIONS(1538), - [anon_sym_COLON2] = ACTIONS(1536), - [anon_sym_DOT2] = ACTIONS(1561), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1536), - [anon_sym_out_GT_GT] = ACTIONS(1536), - [anon_sym_e_GT_GT] = ACTIONS(1536), - [anon_sym_o_GT_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1490), + [anon_sym_in] = ACTIONS(1490), + [sym__newline] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_err_GT_PIPE] = ACTIONS(1490), + [anon_sym_out_GT_PIPE] = ACTIONS(1490), + [anon_sym_e_GT_PIPE] = ACTIONS(1490), + [anon_sym_o_GT_PIPE] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1490), + [anon_sym_xor2] = ACTIONS(1490), + [anon_sym_or2] = ACTIONS(1490), + [anon_sym_not_DASHin2] = ACTIONS(1490), + [anon_sym_has2] = ACTIONS(1490), + [anon_sym_not_DASHhas2] = ACTIONS(1490), + [anon_sym_starts_DASHwith2] = ACTIONS(1490), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1490), + [anon_sym_ends_DASHwith2] = ACTIONS(1490), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1490), + [anon_sym_EQ_EQ2] = ACTIONS(1490), + [anon_sym_BANG_EQ2] = ACTIONS(1490), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1490), + [anon_sym_GT_EQ2] = ACTIONS(1490), + [anon_sym_EQ_TILDE2] = ACTIONS(1490), + [anon_sym_BANG_TILDE2] = ACTIONS(1490), + [anon_sym_like2] = ACTIONS(1490), + [anon_sym_not_DASHlike2] = ACTIONS(1490), + [anon_sym_STAR_STAR2] = ACTIONS(1490), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1490), + [anon_sym_SLASH_SLASH2] = ACTIONS(1490), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1490), + [anon_sym_bit_DASHshr2] = ACTIONS(1490), + [anon_sym_bit_DASHand2] = ACTIONS(1490), + [anon_sym_bit_DASHxor2] = ACTIONS(1490), + [anon_sym_bit_DASHor2] = ACTIONS(1490), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [sym__entry_separator] = ACTIONS(1492), + [anon_sym_COLON2] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1490), + [anon_sym_out_GT_GT] = ACTIONS(1490), + [anon_sym_e_GT_GT] = ACTIONS(1490), + [anon_sym_o_GT_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(377)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4703), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5267), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym__table_head] = STATE(3913), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(377), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(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(105), }, [STATE(378)] = { - [sym__match_pattern_expression] = STATE(4456), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4015), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(4837), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4840), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4021), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4840), - [sym__val_number_decimal] = STATE(3648), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4840), - [sym_val_filesize] = STATE(4840), - [sym_val_binary] = STATE(4840), - [sym_val_string] = STATE(4840), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_val_entry] = STATE(4887), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4840), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4075), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(378), - [aux_sym__types_body_repeat1] = STATE(2189), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1444), - [aux_sym_list_body_repeat1] = STATE(532), - [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(379)] = { - [sym_comment] = STATE(379), - [anon_sym_EQ] = 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), @@ -78860,10 +79003,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1462), - [anon_sym_DASH2] = 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(1462), + [anon_sym_STAR2] = ACTIONS(1460), [anon_sym_and2] = ACTIONS(1462), [anon_sym_xor2] = ACTIONS(1462), [anon_sym_or2] = ACTIONS(1462), @@ -78876,7 +79020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), [anon_sym_EQ_EQ2] = ACTIONS(1462), [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), + [anon_sym_LT2] = ACTIONS(1460), [anon_sym_LT_EQ2] = ACTIONS(1462), [anon_sym_GT_EQ2] = ACTIONS(1462), [anon_sym_EQ_TILDE2] = ACTIONS(1462), @@ -78884,31 +79028,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1462), [anon_sym_not_DASHlike2] = ACTIONS(1462), [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1460), [anon_sym_mod2] = ACTIONS(1462), [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = 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(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), + [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(1466), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1584), + [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), @@ -78917,783 +79060,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(379)] = { + [sym__match_pattern_expression] = STATE(4615), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4134), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4818), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4820), + [sym_val_bool] = STATE(4323), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4148), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4820), + [sym__val_number_decimal] = STATE(3625), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4820), + [sym_val_filesize] = STATE(4820), + [sym_val_binary] = STATE(4820), + [sym_val_string] = STATE(4820), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_val_entry] = STATE(4867), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4820), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4003), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(379), + [aux_sym__types_body_repeat1] = STATE(2185), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(535), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(380)] = { - [sym_cell_path] = STATE(443), - [sym_path] = STATE(427), + [sym_cell_path] = STATE(431), + [sym_path] = STATE(442), [sym_comment] = STATE(380), - [aux_sym__where_predicate_lhs_repeat1] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1444), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1444), - [anon_sym_DASH_EQ] = ACTIONS(1444), - [anon_sym_STAR_EQ] = ACTIONS(1444), - [anon_sym_SLASH_EQ] = ACTIONS(1444), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1444), - [anon_sym_in] = ACTIONS(1444), - [sym__newline] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_err_GT_PIPE] = ACTIONS(1444), - [anon_sym_out_GT_PIPE] = ACTIONS(1444), - [anon_sym_e_GT_PIPE] = ACTIONS(1444), - [anon_sym_o_GT_PIPE] = ACTIONS(1444), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), - [anon_sym_GT2] = ACTIONS(1442), - [anon_sym_DASH2] = ACTIONS(1442), - [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(1442), - [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(1572), - [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(404), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1592), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(381)] = { - [sym__path_suffix] = STATE(435), [sym_comment] = STATE(381), - [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(1574), - [anon_sym_BANG] = ACTIONS(1576), - [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_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(1594), + [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(382)] = { + [sym__path_suffix] = STATE(435), [sym_comment] = STATE(382), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1578), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(383)] = { - [sym_comment] = STATE(383), - [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(384)] = { - [sym_comment] = STATE(384), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(385)] = { - [sym_comment] = STATE(385), - [aux_sym__types_body_repeat2] = STATE(1487), - [anon_sym_EQ] = ACTIONS(1586), - [anon_sym_PLUS_EQ] = ACTIONS(1586), - [anon_sym_DASH_EQ] = ACTIONS(1586), - [anon_sym_STAR_EQ] = ACTIONS(1586), - [anon_sym_SLASH_EQ] = ACTIONS(1586), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1586), - [anon_sym_in] = ACTIONS(1588), - [sym__newline] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_err_GT_PIPE] = ACTIONS(1588), - [anon_sym_out_GT_PIPE] = ACTIONS(1588), - [anon_sym_e_GT_PIPE] = ACTIONS(1588), - [anon_sym_o_GT_PIPE] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1588), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1588), - [anon_sym_xor2] = ACTIONS(1588), - [anon_sym_or2] = ACTIONS(1588), - [anon_sym_not_DASHin2] = ACTIONS(1588), - [anon_sym_has2] = ACTIONS(1588), - [anon_sym_not_DASHhas2] = ACTIONS(1588), - [anon_sym_starts_DASHwith2] = ACTIONS(1588), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1588), - [anon_sym_ends_DASHwith2] = ACTIONS(1588), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1588), - [anon_sym_EQ_EQ2] = ACTIONS(1588), - [anon_sym_BANG_EQ2] = ACTIONS(1588), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1588), - [anon_sym_GT_EQ2] = ACTIONS(1588), - [anon_sym_EQ_TILDE2] = ACTIONS(1588), - [anon_sym_BANG_TILDE2] = ACTIONS(1588), - [anon_sym_like2] = ACTIONS(1588), - [anon_sym_not_DASHlike2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1588), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1588), - [anon_sym_SLASH_SLASH2] = ACTIONS(1588), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1588), - [anon_sym_bit_DASHshr2] = ACTIONS(1588), - [anon_sym_bit_DASHand2] = ACTIONS(1588), - [anon_sym_bit_DASHxor2] = ACTIONS(1588), - [anon_sym_bit_DASHor2] = ACTIONS(1588), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [sym__entry_separator] = ACTIONS(1596), - [anon_sym_COLON2] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1588), - [anon_sym_out_GT_GT] = ACTIONS(1588), - [anon_sym_e_GT_GT] = ACTIONS(1588), - [anon_sym_o_GT_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(386)] = { - [sym_comment] = STATE(386), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1476), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1476), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1476), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1476), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1476), - [anon_sym_err_GT] = ACTIONS(1476), - [anon_sym_out_GT] = ACTIONS(1476), - [anon_sym_e_GT] = ACTIONS(1476), - [anon_sym_o_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT] = ACTIONS(1476), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(387)] = { - [sym_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1522), - [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(1522), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1522), - [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(1522), - [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(1522), - [anon_sym_SLASH2] = ACTIONS(1522), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1522), - [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(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), - [anon_sym_QMARK2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1522), - [anon_sym_err_GT] = ACTIONS(1522), - [anon_sym_out_GT] = ACTIONS(1522), - [anon_sym_e_GT] = ACTIONS(1522), - [anon_sym_o_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT] = ACTIONS(1522), - [anon_sym_err_GT_GT] = ACTIONS(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(3), - }, - [STATE(388)] = { - [sym_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1532), - [anon_sym_EQ] = ACTIONS(1530), - [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(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_STAR2] = ACTIONS(1530), - [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(1530), - [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(1530), - [anon_sym_SLASH2] = ACTIONS(1530), - [anon_sym_mod2] = ACTIONS(1532), - [anon_sym_SLASH_SLASH2] = ACTIONS(1532), - [anon_sym_PLUS2] = ACTIONS(1530), - [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(1530), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), - [anon_sym_QMARK2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DOT2] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [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(3), - }, - [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(724), - [sym__immediate_decimal] = STATE(725), - [sym_val_variable] = STATE(724), - [sym_comment] = STATE(389), - [anon_sym_in] = ACTIONS(1600), - [sym__newline] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_err_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_GT_PIPE] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_STAR2] = ACTIONS(1604), - [anon_sym_and2] = ACTIONS(1600), - [anon_sym_xor2] = ACTIONS(1600), - [anon_sym_or2] = ACTIONS(1600), - [anon_sym_not_DASHin2] = ACTIONS(1600), - [anon_sym_has2] = ACTIONS(1600), - [anon_sym_not_DASHhas2] = ACTIONS(1600), - [anon_sym_starts_DASHwith2] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [sym__newline] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_err_GT_PIPE] = ACTIONS(1474), + [anon_sym_out_GT_PIPE] = ACTIONS(1474), + [anon_sym_e_GT_PIPE] = ACTIONS(1474), + [anon_sym_o_GT_PIPE] = ACTIONS(1474), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), + [anon_sym_GT2] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_STAR2] = ACTIONS(1472), + [anon_sym_and2] = ACTIONS(1474), + [anon_sym_xor2] = ACTIONS(1474), + [anon_sym_or2] = ACTIONS(1474), + [anon_sym_not_DASHin2] = ACTIONS(1474), + [anon_sym_has2] = ACTIONS(1474), + [anon_sym_not_DASHhas2] = ACTIONS(1474), + [anon_sym_starts_DASHwith2] = ACTIONS(1474), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), + [anon_sym_ends_DASHwith2] = ACTIONS(1474), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), + [anon_sym_EQ_EQ2] = ACTIONS(1474), + [anon_sym_BANG_EQ2] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1472), + [anon_sym_LT_EQ2] = ACTIONS(1474), + [anon_sym_GT_EQ2] = ACTIONS(1474), + [anon_sym_EQ_TILDE2] = ACTIONS(1474), + [anon_sym_BANG_TILDE2] = ACTIONS(1474), + [anon_sym_like2] = ACTIONS(1474), + [anon_sym_not_DASHlike2] = ACTIONS(1474), + [anon_sym_STAR_STAR2] = ACTIONS(1474), + [anon_sym_PLUS_PLUS2] = ACTIONS(1472), + [anon_sym_SLASH2] = ACTIONS(1472), + [anon_sym_mod2] = ACTIONS(1474), + [anon_sym_SLASH_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1472), + [anon_sym_bit_DASHshl2] = ACTIONS(1474), + [anon_sym_bit_DASHshr2] = ACTIONS(1474), + [anon_sym_bit_DASHand2] = ACTIONS(1474), + [anon_sym_bit_DASHxor2] = ACTIONS(1474), + [anon_sym_bit_DASHor2] = ACTIONS(1474), + [anon_sym_DOT_DOT2] = ACTIONS(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [anon_sym_err_GT_GT] = ACTIONS(1474), + [anon_sym_out_GT_GT] = ACTIONS(1474), + [anon_sym_e_GT_GT] = ACTIONS(1474), + [anon_sym_o_GT_GT] = ACTIONS(1474), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(383)] = { + [sym_comment] = STATE(383), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_PLUS_EQ] = ACTIONS(1600), + [anon_sym_DASH_EQ] = ACTIONS(1600), + [anon_sym_STAR_EQ] = ACTIONS(1600), + [anon_sym_SLASH_EQ] = ACTIONS(1600), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1600), + [sym__newline] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_err_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_GT_PIPE] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1600), + [anon_sym_DASH2] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_STAR2] = ACTIONS(1600), + [anon_sym_and2] = ACTIONS(1600), + [anon_sym_xor2] = ACTIONS(1600), + [anon_sym_or2] = ACTIONS(1600), + [anon_sym_not_DASHin2] = ACTIONS(1600), + [anon_sym_has2] = ACTIONS(1600), + [anon_sym_not_DASHhas2] = ACTIONS(1600), + [anon_sym_starts_DASHwith2] = ACTIONS(1600), [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), [anon_sym_ends_DASHwith2] = ACTIONS(1600), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), [anon_sym_EQ_EQ2] = ACTIONS(1600), [anon_sym_BANG_EQ2] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT2] = ACTIONS(1600), [anon_sym_LT_EQ2] = ACTIONS(1600), [anon_sym_GT_EQ2] = ACTIONS(1600), [anon_sym_EQ_TILDE2] = ACTIONS(1600), [anon_sym_BANG_TILDE2] = ACTIONS(1600), [anon_sym_like2] = ACTIONS(1600), [anon_sym_not_DASHlike2] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1606), [anon_sym_STAR_STAR2] = ACTIONS(1600), [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1600), [anon_sym_mod2] = ACTIONS(1600), [anon_sym_SLASH_SLASH2] = ACTIONS(1600), - [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_PLUS2] = ACTIONS(1600), [anon_sym_bit_DASHshl2] = ACTIONS(1600), [anon_sym_bit_DASHshr2] = ACTIONS(1600), [anon_sym_bit_DASHand2] = ACTIONS(1600), [anon_sym_bit_DASHxor2] = ACTIONS(1600), [anon_sym_bit_DASHor2] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1608), - [aux_sym__immediate_decimal_token1] = ACTIONS(1610), - [aux_sym__immediate_decimal_token2] = ACTIONS(1610), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_DOT_DOT2] = ACTIONS(1600), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), + [sym__entry_separator] = ACTIONS(1602), + [anon_sym_COLON2] = ACTIONS(1600), + [anon_sym_err_GT] = ACTIONS(1600), + [anon_sym_out_GT] = ACTIONS(1600), + [anon_sym_e_GT] = ACTIONS(1600), + [anon_sym_o_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT] = ACTIONS(1600), [anon_sym_err_GT_GT] = ACTIONS(1600), [anon_sym_out_GT_GT] = ACTIONS(1600), [anon_sym_e_GT_GT] = ACTIONS(1600), @@ -79702,400 +79455,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(384)] = { + [sym_comment] = STATE(384), + [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(105), + }, + [STATE(385)] = { + [sym_comment] = STATE(385), + [anon_sym_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1557), + [anon_sym_STAR_EQ] = ACTIONS(1557), + [anon_sym_SLASH_EQ] = ACTIONS(1557), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1557), + [anon_sym_in] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_GT2] = ACTIONS(1555), + [anon_sym_DASH2] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1555), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_has2] = ACTIONS(1557), + [anon_sym_not_DASHhas2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_like2] = ACTIONS(1557), + [anon_sym_not_DASHlike2] = ACTIONS(1557), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1555), + [anon_sym_SLASH2] = ACTIONS(1555), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1555), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [anon_sym_DOT_DOT2] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), + [anon_sym_COLON2] = ACTIONS(1557), + [anon_sym_DOT2] = ACTIONS(1555), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(3), + }, + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(387)] = { + [sym_comment] = STATE(387), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_err_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_GT_PIPE] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_GT2] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_STAR2] = ACTIONS(1561), + [anon_sym_and2] = ACTIONS(1563), + [anon_sym_xor2] = ACTIONS(1563), + [anon_sym_or2] = ACTIONS(1563), + [anon_sym_not_DASHin2] = ACTIONS(1563), + [anon_sym_has2] = ACTIONS(1563), + [anon_sym_not_DASHhas2] = ACTIONS(1563), + [anon_sym_starts_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), + [anon_sym_ends_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), + [anon_sym_EQ_EQ2] = ACTIONS(1563), + [anon_sym_BANG_EQ2] = ACTIONS(1563), + [anon_sym_LT2] = ACTIONS(1561), + [anon_sym_LT_EQ2] = ACTIONS(1563), + [anon_sym_GT_EQ2] = ACTIONS(1563), + [anon_sym_EQ_TILDE2] = ACTIONS(1563), + [anon_sym_BANG_TILDE2] = ACTIONS(1563), + [anon_sym_like2] = ACTIONS(1563), + [anon_sym_not_DASHlike2] = ACTIONS(1563), + [anon_sym_STAR_STAR2] = ACTIONS(1563), + [anon_sym_PLUS_PLUS2] = ACTIONS(1561), + [anon_sym_SLASH2] = ACTIONS(1561), + [anon_sym_mod2] = ACTIONS(1563), + [anon_sym_SLASH_SLASH2] = ACTIONS(1563), + [anon_sym_PLUS2] = ACTIONS(1561), + [anon_sym_bit_DASHshl2] = ACTIONS(1563), + [anon_sym_bit_DASHshr2] = ACTIONS(1563), + [anon_sym_bit_DASHand2] = ACTIONS(1563), + [anon_sym_bit_DASHxor2] = ACTIONS(1563), + [anon_sym_bit_DASHor2] = ACTIONS(1563), + [anon_sym_DOT_DOT2] = ACTIONS(1561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), + [anon_sym_COLON2] = ACTIONS(1563), + [anon_sym_DOT2] = ACTIONS(1561), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [anon_sym_err_GT_GT] = ACTIONS(1563), + [anon_sym_out_GT_GT] = ACTIONS(1563), + [anon_sym_e_GT_GT] = ACTIONS(1563), + [anon_sym_o_GT_GT] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(388)] = { + [sym_comment] = STATE(388), + [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), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(389)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5518), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(389), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, [STATE(390)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5312), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(390), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [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(391)] = { [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_EQ] = ACTIONS(1480), - [anon_sym_PLUS_EQ] = ACTIONS(1482), - [anon_sym_DASH_EQ] = ACTIONS(1482), - [anon_sym_STAR_EQ] = ACTIONS(1482), - [anon_sym_SLASH_EQ] = ACTIONS(1482), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_GT2] = ACTIONS(1480), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1480), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1480), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_like2] = ACTIONS(1482), - [anon_sym_not_DASHlike2] = ACTIONS(1482), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1480), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1480), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [anon_sym_DOT_DOT2] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), - [anon_sym_QMARK2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1480), - [anon_sym_out_GT] = ACTIONS(1480), - [anon_sym_e_GT] = ACTIONS(1480), - [anon_sym_o_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT] = ACTIONS(1480), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1488), + [anon_sym_DASH_EQ] = ACTIONS(1488), + [anon_sym_STAR_EQ] = ACTIONS(1488), + [anon_sym_SLASH_EQ] = ACTIONS(1488), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [sym__newline] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_err_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_GT_PIPE] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_DASH2] = ACTIONS(1486), + [anon_sym_STAR2] = ACTIONS(1486), + [anon_sym_and2] = ACTIONS(1488), + [anon_sym_xor2] = ACTIONS(1488), + [anon_sym_or2] = ACTIONS(1488), + [anon_sym_not_DASHin2] = ACTIONS(1488), + [anon_sym_has2] = ACTIONS(1488), + [anon_sym_not_DASHhas2] = ACTIONS(1488), + [anon_sym_starts_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), + [anon_sym_ends_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), + [anon_sym_EQ_EQ2] = ACTIONS(1488), + [anon_sym_BANG_EQ2] = ACTIONS(1488), + [anon_sym_LT2] = ACTIONS(1486), + [anon_sym_LT_EQ2] = ACTIONS(1488), + [anon_sym_GT_EQ2] = ACTIONS(1488), + [anon_sym_EQ_TILDE2] = ACTIONS(1488), + [anon_sym_BANG_TILDE2] = ACTIONS(1488), + [anon_sym_like2] = ACTIONS(1488), + [anon_sym_not_DASHlike2] = ACTIONS(1488), + [anon_sym_STAR_STAR2] = ACTIONS(1488), + [anon_sym_PLUS_PLUS2] = ACTIONS(1486), + [anon_sym_SLASH2] = ACTIONS(1486), + [anon_sym_mod2] = ACTIONS(1488), + [anon_sym_SLASH_SLASH2] = ACTIONS(1488), + [anon_sym_PLUS2] = ACTIONS(1486), + [anon_sym_bit_DASHshl2] = ACTIONS(1488), + [anon_sym_bit_DASHshr2] = ACTIONS(1488), + [anon_sym_bit_DASHand2] = ACTIONS(1488), + [anon_sym_bit_DASHxor2] = ACTIONS(1488), + [anon_sym_bit_DASHor2] = ACTIONS(1488), + [anon_sym_DOT_DOT2] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), + [anon_sym_QMARK2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DOT2] = ACTIONS(1486), + [anon_sym_err_GT] = ACTIONS(1486), + [anon_sym_out_GT] = ACTIONS(1486), + [anon_sym_e_GT] = ACTIONS(1486), + [anon_sym_o_GT] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT] = ACTIONS(1486), + [anon_sym_err_GT_GT] = ACTIONS(1488), + [anon_sym_out_GT_GT] = ACTIONS(1488), + [anon_sym_e_GT_GT] = ACTIONS(1488), + [anon_sym_o_GT_GT] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, [STATE(392)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5389), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1518), - [anon_sym_DASH_EQ] = ACTIONS(1518), - [anon_sym_STAR_EQ] = ACTIONS(1518), - [anon_sym_SLASH_EQ] = ACTIONS(1518), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_err_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_GT_PIPE] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), - [anon_sym_GT2] = ACTIONS(1516), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1516), - [anon_sym_and2] = ACTIONS(1518), - [anon_sym_xor2] = ACTIONS(1518), - [anon_sym_or2] = ACTIONS(1518), - [anon_sym_not_DASHin2] = ACTIONS(1518), - [anon_sym_has2] = ACTIONS(1518), - [anon_sym_not_DASHhas2] = ACTIONS(1518), - [anon_sym_starts_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), - [anon_sym_ends_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), - [anon_sym_EQ_EQ2] = ACTIONS(1518), - [anon_sym_BANG_EQ2] = ACTIONS(1518), - [anon_sym_LT2] = ACTIONS(1516), - [anon_sym_LT_EQ2] = ACTIONS(1518), - [anon_sym_GT_EQ2] = ACTIONS(1518), - [anon_sym_EQ_TILDE2] = ACTIONS(1518), - [anon_sym_BANG_TILDE2] = ACTIONS(1518), - [anon_sym_like2] = ACTIONS(1518), - [anon_sym_not_DASHlike2] = ACTIONS(1518), - [anon_sym_STAR_STAR2] = ACTIONS(1518), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1516), - [anon_sym_mod2] = ACTIONS(1518), - [anon_sym_SLASH_SLASH2] = ACTIONS(1518), - [anon_sym_PLUS2] = ACTIONS(1516), - [anon_sym_bit_DASHshl2] = ACTIONS(1518), - [anon_sym_bit_DASHshr2] = ACTIONS(1518), - [anon_sym_bit_DASHand2] = ACTIONS(1518), - [anon_sym_bit_DASHxor2] = ACTIONS(1518), - [anon_sym_bit_DASHor2] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), - [anon_sym_QMARK2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DOT2] = ACTIONS(1516), - [anon_sym_err_GT] = ACTIONS(1516), - [anon_sym_out_GT] = ACTIONS(1516), - [anon_sym_e_GT] = ACTIONS(1516), - [anon_sym_o_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT] = ACTIONS(1516), - [anon_sym_err_GT_GT] = ACTIONS(1518), - [anon_sym_out_GT_GT] = ACTIONS(1518), - [anon_sym_e_GT_GT] = ACTIONS(1518), - [anon_sym_o_GT_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(393)] = { - [sym__expr_parenthesized_immediate] = STATE(727), - [sym__immediate_decimal] = STATE(728), - [sym_val_variable] = STATE(727), [sym_comment] = STATE(393), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1624), - [aux_sym__immediate_decimal_token1] = ACTIONS(1610), - [aux_sym__immediate_decimal_token2] = ACTIONS(1610), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), + [anon_sym_in] = ACTIONS(1543), + [sym__newline] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_err_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_GT_PIPE] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1541), + [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(1541), + [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(1541), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [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(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_QMARK2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [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(3), }, [STATE(394)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5124), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(394), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(395)] = { - [sym_comment] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(1547), [anon_sym_EQ] = ACTIONS(1545), [anon_sym_PLUS_EQ] = ACTIONS(1547), [anon_sym_DASH_EQ] = ACTIONS(1547), @@ -80114,10 +80259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(1547), [anon_sym_GT2] = ACTIONS(1545), [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1547), [anon_sym_STAR2] = ACTIONS(1545), [anon_sym_and2] = ACTIONS(1547), [anon_sym_xor2] = ACTIONS(1547), @@ -80152,7 +80295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1545), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), - [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_QMARK2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1545), [anon_sym_DOT2] = ACTIONS(1545), [anon_sym_err_GT] = ACTIONS(1545), [anon_sym_out_GT] = ACTIONS(1545), @@ -80172,1490 +80316,1491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(395)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5414), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(395), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, [STATE(396)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5142), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(396), - [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_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = 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(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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(397)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5282), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1474), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1472), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1472), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1472), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(398)] = { - [sym_path] = STATE(427), [sym_comment] = STATE(398), - [aux_sym__where_predicate_lhs_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1536), - [anon_sym_PLUS_EQ] = ACTIONS(1538), - [anon_sym_DASH_EQ] = ACTIONS(1538), - [anon_sym_STAR_EQ] = ACTIONS(1538), - [anon_sym_SLASH_EQ] = ACTIONS(1538), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1538), - [anon_sym_in] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_like2] = ACTIONS(1538), - [anon_sym_not_DASHlike2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1536), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [anon_sym_DOT2] = ACTIONS(1628), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat2] = STATE(1491), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1614), + [anon_sym_in] = ACTIONS(1616), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_like2] = ACTIONS(1616), + [anon_sym_not_DASHlike2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [sym__entry_separator] = ACTIONS(1624), + [anon_sym_COLON2] = ACTIONS(1626), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(399)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5225), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym__expr_parenthesized_immediate] = STATE(715), + [sym__immediate_decimal] = STATE(716), + [sym_val_variable] = STATE(715), [sym_comment] = STATE(399), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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_in] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_STAR2] = ACTIONS(1632), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1632), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_like2] = ACTIONS(1628), + [anon_sym_not_DASHlike2] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1632), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1636), + [aux_sym__immediate_decimal_token1] = ACTIONS(1638), + [aux_sym__immediate_decimal_token2] = ACTIONS(1638), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(400)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5219), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5112), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(400), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(401)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5516), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5233), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(401), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(402)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5119), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym__expr_parenthesized_immediate] = STATE(718), + [sym__immediate_decimal] = STATE(719), + [sym_val_variable] = STATE(718), [sym_comment] = STATE(402), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1646), + [aux_sym__immediate_decimal_token1] = ACTIONS(1638), + [aux_sym__immediate_decimal_token2] = ACTIONS(1638), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(403)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5352), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(403), - [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_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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(404)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5251), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_path] = STATE(442), [sym_comment] = STATE(404), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1577), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1577), + [anon_sym_STAR2] = ACTIONS(1577), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1577), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_like2] = ACTIONS(1579), + [anon_sym_not_DASHlike2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1577), + [anon_sym_SLASH2] = ACTIONS(1577), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1577), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), + [anon_sym_DOT2] = ACTIONS(1592), + [anon_sym_err_GT] = ACTIONS(1577), + [anon_sym_out_GT] = ACTIONS(1577), + [anon_sym_e_GT] = ACTIONS(1577), + [anon_sym_o_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT] = ACTIONS(1577), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(405)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5138), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5153), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(405), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(406)] = { - [sym__expr_parenthesized_immediate] = STATE(727), - [sym__immediate_decimal] = STATE(528), - [sym_val_variable] = STATE(727), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5235), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(1610), - [aux_sym__immediate_decimal_token2] = ACTIONS(1610), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), - [sym__unquoted_pattern] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(407)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5109), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5137), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(407), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(408)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5348), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_path] = STATE(442), [sym_comment] = STATE(408), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1654), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(409)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5149), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym__expr_parenthesized_immediate] = STATE(718), + [sym__immediate_decimal] = STATE(634), + [sym_val_variable] = STATE(718), [sym_comment] = STATE(409), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(1638), + [aux_sym__immediate_decimal_token2] = ACTIONS(1638), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [sym__unquoted_pattern] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(410)] = { - [sym_path] = STATE(427), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_list_body] = STATE(5127), + [sym_val_entry] = STATE(4735), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(410), - [aux_sym__where_predicate_lhs_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1528), - [anon_sym_EQ] = ACTIONS(1526), - [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(1526), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1526), - [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(1526), - [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(1526), - [anon_sym_SLASH2] = ACTIONS(1526), - [anon_sym_mod2] = ACTIONS(1528), - [anon_sym_SLASH_SLASH2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1526), - [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(1526), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1526), - [anon_sym_out_GT] = ACTIONS(1526), - [anon_sym_e_GT] = ACTIONS(1526), - [anon_sym_o_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT] = ACTIONS(1526), - [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(3), + [aux_sym__types_body_repeat1] = STATE(484), + [aux_sym_parameter_repeat2] = STATE(4533), + [aux_sym_list_body_repeat1] = STATE(533), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(411)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_list_body] = STATE(5229), - [sym_val_entry] = STATE(4711), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(411), - [aux_sym__types_body_repeat1] = STATE(483), - [aux_sym_parameter_repeat2] = STATE(4447), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1567), + [anon_sym_in] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1567), + [anon_sym_xor2] = ACTIONS(1567), + [anon_sym_or2] = ACTIONS(1567), + [anon_sym_not_DASHin2] = ACTIONS(1567), + [anon_sym_has2] = ACTIONS(1567), + [anon_sym_not_DASHhas2] = ACTIONS(1567), + [anon_sym_starts_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), + [anon_sym_ends_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), + [anon_sym_EQ_EQ2] = ACTIONS(1567), + [anon_sym_BANG_EQ2] = ACTIONS(1567), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1567), + [anon_sym_GT_EQ2] = ACTIONS(1567), + [anon_sym_EQ_TILDE2] = ACTIONS(1567), + [anon_sym_BANG_TILDE2] = ACTIONS(1567), + [anon_sym_like2] = ACTIONS(1567), + [anon_sym_not_DASHlike2] = ACTIONS(1567), + [anon_sym_STAR_STAR2] = ACTIONS(1567), + [anon_sym_PLUS_PLUS2] = ACTIONS(1565), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1567), + [anon_sym_SLASH_SLASH2] = ACTIONS(1567), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1567), + [anon_sym_bit_DASHshr2] = ACTIONS(1567), + [anon_sym_bit_DASHand2] = ACTIONS(1567), + [anon_sym_bit_DASHxor2] = ACTIONS(1567), + [anon_sym_bit_DASHor2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [anon_sym_COLON2] = ACTIONS(1567), + [anon_sym_DOT2] = ACTIONS(1565), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { - [sym__expr_parenthesized_immediate] = STATE(805), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(805), + [sym__expr_parenthesized_immediate] = STATE(922), + [sym__immediate_decimal] = STATE(923), + [sym_val_variable] = STATE(922), [sym_comment] = STATE(412), - [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_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_RBRACE] = 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_LPAREN2] = ACTIONS(1606), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1649), - [aux_sym__immediate_decimal_token2] = ACTIONS(1649), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1651), - [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), - [sym__unquoted_pattern] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_STAR2] = ACTIONS(1632), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1632), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_like2] = ACTIONS(1628), + [anon_sym_not_DASHlike2] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1632), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), [anon_sym_POUND] = ACTIONS(3), }, [STATE(413)] = { - [sym__expr_parenthesized_immediate] = STATE(943), - [sym__immediate_decimal] = STATE(695), - [sym_val_variable] = STATE(943), + [sym__expr_parenthesized_immediate] = STATE(925), + [sym__immediate_decimal] = STATE(961), + [sym_val_variable] = STATE(925), [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(1661), - [aux_sym__immediate_decimal_token2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), - [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [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(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [sym__unquoted_pattern] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, [STATE(414)] = { - [sym__path_suffix] = STATE(480), + [sym_cell_path] = STATE(493), + [sym_path] = STATE(472), [sym_comment] = STATE(414), - [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(1665), - [anon_sym_BANG] = ACTIONS(1667), - [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(415)] = { - [sym__expr_parenthesized_immediate] = STATE(785), - [sym__immediate_decimal] = STATE(786), - [sym_val_variable] = STATE(785), - [sym_comment] = STATE(415), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), [anon_sym_in] = ACTIONS(1669), [sym__newline] = ACTIONS(1669), [anon_sym_SEMI] = ACTIONS(1669), @@ -81669,11 +81814,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1602), [anon_sym_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), [anon_sym_LBRACE] = ACTIONS(1669), [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_EQ_GT] = ACTIONS(1669), [anon_sym_STAR2] = ACTIONS(1671), [anon_sym_and2] = ACTIONS(1669), [anon_sym_xor2] = ACTIONS(1669), @@ -81694,7 +81839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1669), [anon_sym_like2] = ACTIONS(1669), [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1606), [anon_sym_STAR_STAR2] = ACTIONS(1669), [anon_sym_PLUS_PLUS2] = ACTIONS(1669), [anon_sym_SLASH2] = ACTIONS(1671), @@ -81706,10 +81850,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1669), [anon_sym_bit_DASHxor2] = ACTIONS(1669), [anon_sym_bit_DASHor2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token1] = ACTIONS(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [anon_sym_DOT_DOT2] = ACTIONS(1671), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_COLON2] = ACTIONS(1669), + [anon_sym_DOT2] = ACTIONS(1673), [anon_sym_err_GT] = ACTIONS(1671), [anon_sym_out_GT] = ACTIONS(1671), [anon_sym_e_GT] = ACTIONS(1671), @@ -81728,88 +81873,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(415)] = { + [sym_comment] = STATE(415), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_PLUS_EQ] = ACTIONS(1602), + [anon_sym_DASH_EQ] = ACTIONS(1602), + [anon_sym_STAR_EQ] = ACTIONS(1602), + [anon_sym_SLASH_EQ] = ACTIONS(1602), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [sym__newline] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_err_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_GT_PIPE] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1600), + [anon_sym_DASH2] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1600), + [anon_sym_and2] = ACTIONS(1602), + [anon_sym_xor2] = ACTIONS(1602), + [anon_sym_or2] = ACTIONS(1602), + [anon_sym_not_DASHin2] = ACTIONS(1602), + [anon_sym_has2] = ACTIONS(1602), + [anon_sym_not_DASHhas2] = ACTIONS(1602), + [anon_sym_starts_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), + [anon_sym_ends_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), + [anon_sym_EQ_EQ2] = ACTIONS(1602), + [anon_sym_BANG_EQ2] = ACTIONS(1602), + [anon_sym_LT2] = ACTIONS(1600), + [anon_sym_LT_EQ2] = ACTIONS(1602), + [anon_sym_GT_EQ2] = ACTIONS(1602), + [anon_sym_EQ_TILDE2] = ACTIONS(1602), + [anon_sym_BANG_TILDE2] = ACTIONS(1602), + [anon_sym_like2] = ACTIONS(1602), + [anon_sym_not_DASHlike2] = ACTIONS(1602), + [anon_sym_STAR_STAR2] = ACTIONS(1602), + [anon_sym_PLUS_PLUS2] = ACTIONS(1600), + [anon_sym_SLASH2] = ACTIONS(1600), + [anon_sym_mod2] = ACTIONS(1602), + [anon_sym_SLASH_SLASH2] = ACTIONS(1602), + [anon_sym_PLUS2] = ACTIONS(1600), + [anon_sym_bit_DASHshl2] = ACTIONS(1602), + [anon_sym_bit_DASHshr2] = ACTIONS(1602), + [anon_sym_bit_DASHand2] = ACTIONS(1602), + [anon_sym_bit_DASHxor2] = ACTIONS(1602), + [anon_sym_bit_DASHor2] = ACTIONS(1602), + [anon_sym_DOT_DOT2] = ACTIONS(1600), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), + [anon_sym_COLON2] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1600), + [anon_sym_out_GT] = ACTIONS(1600), + [anon_sym_e_GT] = ACTIONS(1600), + [anon_sym_o_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT] = ACTIONS(1600), + [anon_sym_err_GT_GT] = ACTIONS(1602), + [anon_sym_out_GT_GT] = ACTIONS(1602), + [anon_sym_e_GT_GT] = ACTIONS(1602), + [anon_sym_o_GT_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(416)] = { - [sym_cell_path] = STATE(493), - [sym_path] = STATE(470), [sym_comment] = STATE(416), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_EQ_GT] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_COLON2] = ACTIONS(1675), - [anon_sym_DOT2] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [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(1675), + [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(417)] = { - [sym__expr_parenthesized_immediate] = STATE(801), - [sym__immediate_decimal] = STATE(802), - [sym_val_variable] = STATE(801), + [sym__expr_parenthesized_immediate] = STATE(762), + [sym__immediate_decimal] = STATE(763), + [sym_val_variable] = STATE(762), [sym_comment] = STATE(417), + [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(1630), + [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(1634), + [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(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [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(418)] = { + [sym__expr_parenthesized_immediate] = STATE(764), + [sym__immediate_decimal] = STATE(765), + [sym_val_variable] = STATE(764), + [sym_comment] = STATE(418), [anon_sym_in] = ACTIONS(1681), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), @@ -81823,7 +82122,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(1602), + [anon_sym_DOLLAR] = ACTIONS(1630), [anon_sym_GT2] = ACTIONS(1683), [anon_sym_DASH2] = ACTIONS(1683), [anon_sym_LBRACE] = ACTIONS(1681), @@ -81848,7 +82147,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(1606), + [anon_sym_LPAREN2] = ACTIONS(1634), [anon_sym_STAR_STAR2] = ACTIONS(1681), [anon_sym_PLUS_PLUS2] = ACTIONS(1681), [anon_sym_SLASH2] = ACTIONS(1683), @@ -81860,10 +82159,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(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), [anon_sym_err_GT] = ACTIONS(1683), [anon_sym_out_GT] = ACTIONS(1683), [anon_sym_e_GT] = ACTIONS(1683), @@ -81882,319 +82181,165 @@ 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(418)] = { - [sym__expr_parenthesized_immediate] = STATE(768), - [sym__immediate_decimal] = STATE(931), - [sym_val_variable] = STATE(768), - [sym_comment] = STATE(418), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [aux_sym__immediate_decimal_token1] = ACTIONS(1649), - [aux_sym__immediate_decimal_token2] = ACTIONS(1649), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1651), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), - [sym__unquoted_pattern] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(803), - [sym__immediate_decimal] = STATE(804), - [sym_val_variable] = STATE(803), + [sym__path_suffix] = STATE(479), [sym_comment] = STATE(419), - [anon_sym_in] = ACTIONS(1685), - [sym__newline] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_err_GT_PIPE] = ACTIONS(1685), - [anon_sym_out_GT_PIPE] = ACTIONS(1685), - [anon_sym_e_GT_PIPE] = ACTIONS(1685), - [anon_sym_o_GT_PIPE] = ACTIONS(1685), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), - [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1685), - [anon_sym_xor2] = ACTIONS(1685), - [anon_sym_or2] = ACTIONS(1685), - [anon_sym_not_DASHin2] = ACTIONS(1685), - [anon_sym_has2] = ACTIONS(1685), - [anon_sym_not_DASHhas2] = ACTIONS(1685), - [anon_sym_starts_DASHwith2] = ACTIONS(1685), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1685), - [anon_sym_ends_DASHwith2] = ACTIONS(1685), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1685), - [anon_sym_EQ_EQ2] = ACTIONS(1685), - [anon_sym_BANG_EQ2] = ACTIONS(1685), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1685), - [anon_sym_GT_EQ2] = ACTIONS(1685), - [anon_sym_EQ_TILDE2] = ACTIONS(1685), - [anon_sym_BANG_TILDE2] = ACTIONS(1685), - [anon_sym_like2] = ACTIONS(1685), - [anon_sym_not_DASHlike2] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR_STAR2] = ACTIONS(1685), - [anon_sym_PLUS_PLUS2] = ACTIONS(1685), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1685), - [anon_sym_SLASH_SLASH2] = ACTIONS(1685), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1685), - [anon_sym_bit_DASHshr2] = ACTIONS(1685), - [anon_sym_bit_DASHand2] = ACTIONS(1685), - [anon_sym_bit_DASHxor2] = ACTIONS(1685), - [anon_sym_bit_DASHor2] = ACTIONS(1685), - [aux_sym__immediate_decimal_token1] = ACTIONS(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1687), - [anon_sym_out_GT] = ACTIONS(1687), - [anon_sym_e_GT] = ACTIONS(1687), - [anon_sym_o_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT] = ACTIONS(1687), - [anon_sym_err_GT_GT] = ACTIONS(1685), - [anon_sym_out_GT_GT] = ACTIONS(1685), - [anon_sym_e_GT_GT] = ACTIONS(1685), - [anon_sym_o_GT_GT] = ACTIONS(1685), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1474), + [sym__newline] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_err_GT_PIPE] = ACTIONS(1474), + [anon_sym_out_GT_PIPE] = ACTIONS(1474), + [anon_sym_e_GT_PIPE] = ACTIONS(1474), + [anon_sym_o_GT_PIPE] = ACTIONS(1474), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_GT2] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ_GT] = ACTIONS(1474), + [anon_sym_STAR2] = ACTIONS(1472), + [anon_sym_and2] = ACTIONS(1474), + [anon_sym_xor2] = ACTIONS(1474), + [anon_sym_or2] = ACTIONS(1474), + [anon_sym_not_DASHin2] = ACTIONS(1474), + [anon_sym_has2] = ACTIONS(1474), + [anon_sym_not_DASHhas2] = ACTIONS(1474), + [anon_sym_starts_DASHwith2] = ACTIONS(1474), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), + [anon_sym_ends_DASHwith2] = ACTIONS(1474), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), + [anon_sym_EQ_EQ2] = ACTIONS(1474), + [anon_sym_BANG_EQ2] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1472), + [anon_sym_LT_EQ2] = ACTIONS(1474), + [anon_sym_GT_EQ2] = ACTIONS(1474), + [anon_sym_EQ_TILDE2] = ACTIONS(1474), + [anon_sym_BANG_TILDE2] = ACTIONS(1474), + [anon_sym_like2] = ACTIONS(1474), + [anon_sym_not_DASHlike2] = ACTIONS(1474), + [anon_sym_STAR_STAR2] = ACTIONS(1474), + [anon_sym_PLUS_PLUS2] = ACTIONS(1474), + [anon_sym_SLASH2] = ACTIONS(1472), + [anon_sym_mod2] = ACTIONS(1474), + [anon_sym_SLASH_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1472), + [anon_sym_bit_DASHshl2] = ACTIONS(1474), + [anon_sym_bit_DASHshr2] = ACTIONS(1474), + [anon_sym_bit_DASHand2] = ACTIONS(1474), + [anon_sym_bit_DASHxor2] = ACTIONS(1474), + [anon_sym_bit_DASHor2] = ACTIONS(1474), + [anon_sym_DOT_DOT2] = ACTIONS(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [anon_sym_COLON2] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [anon_sym_err_GT_GT] = ACTIONS(1474), + [anon_sym_out_GT_GT] = ACTIONS(1474), + [anon_sym_e_GT_GT] = ACTIONS(1474), + [anon_sym_o_GT_GT] = ACTIONS(1474), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(3), }, [STATE(420)] = { - [sym__expr_parenthesized_immediate] = STATE(805), - [sym__immediate_decimal] = STATE(980), - [sym_val_variable] = STATE(805), + [sym__expr_parenthesized_immediate] = STATE(925), + [sym__immediate_decimal] = STATE(986), + [sym_val_variable] = STATE(925), [sym_comment] = STATE(420), - [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_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = 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_LPAREN2] = ACTIONS(1606), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [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(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, [STATE(421)] = { - [sym__expr_parenthesized_immediate] = STATE(768), - [sym__immediate_decimal] = STATE(972), - [sym_val_variable] = STATE(768), + [sym__expr_parenthesized_immediate] = STATE(747), + [sym__immediate_decimal] = STATE(953), + [sym_val_variable] = STATE(747), [sym_comment] = STATE(421), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [aux_sym__immediate_decimal_token1] = ACTIONS(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(422)] = { - [sym_cell_path] = STATE(487), - [sym_path] = STATE(470), - [sym_comment] = STATE(422), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), [anon_sym_in] = ACTIONS(1689), [sym__newline] = ACTIONS(1689), [anon_sym_SEMI] = ACTIONS(1689), @@ -82208,11 +82353,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1630), [anon_sym_GT2] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1691), [anon_sym_LBRACE] = ACTIONS(1689), [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_EQ_GT] = ACTIONS(1689), [anon_sym_STAR2] = ACTIONS(1691), [anon_sym_and2] = ACTIONS(1689), [anon_sym_xor2] = ACTIONS(1689), @@ -82233,6 +82378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1689), [anon_sym_like2] = ACTIONS(1689), [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1634), [anon_sym_STAR_STAR2] = ACTIONS(1689), [anon_sym_PLUS_PLUS2] = ACTIONS(1689), [anon_sym_SLASH2] = ACTIONS(1691), @@ -82244,11 +82390,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1689), [anon_sym_bit_DASHxor2] = ACTIONS(1689), [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1689), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1689), - [anon_sym_COLON2] = ACTIONS(1689), - [anon_sym_DOT2] = ACTIONS(1679), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), [anon_sym_err_GT] = ACTIONS(1691), [anon_sym_out_GT] = ACTIONS(1691), [anon_sym_e_GT] = ACTIONS(1691), @@ -82267,337 +82412,1323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(422)] = { + [sym__expr_parenthesized_immediate] = STATE(957), + [sym__immediate_decimal] = STATE(724), + [sym_val_variable] = STATE(957), + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(1642), + [anon_sym_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1697), + [aux_sym__immediate_decimal_token1] = ACTIONS(1699), + [aux_sym__immediate_decimal_token2] = ACTIONS(1699), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [sym__unquoted_pattern] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(423)] = { + [sym_cell_path] = STATE(482), + [sym_path] = STATE(472), [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), + [anon_sym_in] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_EQ_GT] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1705), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1705), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_like2] = ACTIONS(1703), + [anon_sym_not_DASHlike2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1705), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_COLON2] = ACTIONS(1703), + [anon_sym_DOT2] = ACTIONS(1673), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), [anon_sym_POUND] = ACTIONS(3), }, [STATE(424)] = { - [sym__expr_parenthesized_immediate] = STATE(764), - [sym__immediate_decimal] = STATE(765), - [sym_val_variable] = STATE(764), + [sym__expr_parenthesized_immediate] = STATE(760), + [sym__immediate_decimal] = STATE(761), + [sym_val_variable] = STATE(760), [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1600), - [sym__newline] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_err_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_GT_PIPE] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_STAR2] = ACTIONS(1604), - [anon_sym_and2] = ACTIONS(1600), - [anon_sym_xor2] = ACTIONS(1600), - [anon_sym_or2] = ACTIONS(1600), - [anon_sym_not_DASHin2] = ACTIONS(1600), - [anon_sym_has2] = ACTIONS(1600), - [anon_sym_not_DASHhas2] = ACTIONS(1600), - [anon_sym_starts_DASHwith2] = ACTIONS(1600), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), - [anon_sym_ends_DASHwith2] = ACTIONS(1600), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), - [anon_sym_EQ_EQ2] = ACTIONS(1600), - [anon_sym_BANG_EQ2] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ2] = ACTIONS(1600), - [anon_sym_GT_EQ2] = ACTIONS(1600), - [anon_sym_EQ_TILDE2] = ACTIONS(1600), - [anon_sym_BANG_TILDE2] = ACTIONS(1600), - [anon_sym_like2] = ACTIONS(1600), - [anon_sym_not_DASHlike2] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR_STAR2] = ACTIONS(1600), - [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1604), - [anon_sym_mod2] = ACTIONS(1600), - [anon_sym_SLASH_SLASH2] = ACTIONS(1600), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_bit_DASHshl2] = ACTIONS(1600), - [anon_sym_bit_DASHshr2] = ACTIONS(1600), - [anon_sym_bit_DASHand2] = ACTIONS(1600), - [anon_sym_bit_DASHxor2] = ACTIONS(1600), - [anon_sym_bit_DASHor2] = ACTIONS(1600), - [aux_sym__immediate_decimal_token1] = ACTIONS(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token3] = ACTIONS(1612), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1600), - [anon_sym_out_GT_GT] = ACTIONS(1600), - [anon_sym_e_GT_GT] = ACTIONS(1600), - [anon_sym_o_GT_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_has2] = ACTIONS(1707), + [anon_sym_not_DASHhas2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_like2] = ACTIONS(1707), + [anon_sym_not_DASHlike2] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1640), + [aux_sym__immediate_decimal_token4] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), [anon_sym_POUND] = ACTIONS(3), }, [STATE(425)] = { + [sym__expr_parenthesized_immediate] = STATE(747), + [sym__immediate_decimal] = STATE(956), + [sym_val_variable] = STATE(747), [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1695), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_GT2] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1691), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1634), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1691), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1691), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [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(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [sym__unquoted_pattern] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [STATE(426)] = { [sym_comment] = STATE(426), - [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_POUND] = ACTIONS(3), - }, - [STATE(427)] = { - [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1547), - [anon_sym_EQ] = ACTIONS(1545), - [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), + [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(1713), + [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(427)] = { + [sym_comment] = STATE(427), + [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(428)] = { + [sym_path] = STATE(472), + [sym_comment] = STATE(428), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_COLON2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(429)] = { + [sym_comment] = STATE(429), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1718), + [aux_sym__immediate_decimal_token5] = ACTIONS(1720), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(430)] = { + [sym_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1567), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1567), + [anon_sym_in] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1567), + [anon_sym_xor2] = ACTIONS(1567), + [anon_sym_or2] = ACTIONS(1567), + [anon_sym_not_DASHin2] = ACTIONS(1567), + [anon_sym_has2] = ACTIONS(1567), + [anon_sym_not_DASHhas2] = ACTIONS(1567), + [anon_sym_starts_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), + [anon_sym_ends_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), + [anon_sym_EQ_EQ2] = ACTIONS(1567), + [anon_sym_BANG_EQ2] = ACTIONS(1567), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1567), + [anon_sym_GT_EQ2] = ACTIONS(1567), + [anon_sym_EQ_TILDE2] = ACTIONS(1567), + [anon_sym_BANG_TILDE2] = ACTIONS(1567), + [anon_sym_like2] = ACTIONS(1567), + [anon_sym_not_DASHlike2] = ACTIONS(1567), + [anon_sym_STAR_STAR2] = ACTIONS(1567), + [anon_sym_PLUS_PLUS2] = ACTIONS(1565), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1567), + [anon_sym_SLASH_SLASH2] = ACTIONS(1567), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1567), + [anon_sym_bit_DASHshr2] = ACTIONS(1567), + [anon_sym_bit_DASHand2] = ACTIONS(1567), + [anon_sym_bit_DASHxor2] = ACTIONS(1567), + [anon_sym_bit_DASHor2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [anon_sym_DOT2] = ACTIONS(1565), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(431)] = { + [sym_comment] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_PLUS_EQ] = ACTIONS(1602), + [anon_sym_DASH_EQ] = ACTIONS(1602), + [anon_sym_STAR_EQ] = ACTIONS(1602), + [anon_sym_SLASH_EQ] = ACTIONS(1602), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [sym__newline] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_err_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_GT_PIPE] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1600), + [anon_sym_DASH2] = ACTIONS(1600), + [anon_sym_STAR2] = ACTIONS(1600), + [anon_sym_and2] = ACTIONS(1602), + [anon_sym_xor2] = ACTIONS(1602), + [anon_sym_or2] = ACTIONS(1602), + [anon_sym_not_DASHin2] = ACTIONS(1602), + [anon_sym_has2] = ACTIONS(1602), + [anon_sym_not_DASHhas2] = ACTIONS(1602), + [anon_sym_starts_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), + [anon_sym_ends_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), + [anon_sym_EQ_EQ2] = ACTIONS(1602), + [anon_sym_BANG_EQ2] = ACTIONS(1602), + [anon_sym_LT2] = ACTIONS(1600), + [anon_sym_LT_EQ2] = ACTIONS(1602), + [anon_sym_GT_EQ2] = ACTIONS(1602), + [anon_sym_EQ_TILDE2] = ACTIONS(1602), + [anon_sym_BANG_TILDE2] = ACTIONS(1602), + [anon_sym_like2] = ACTIONS(1602), + [anon_sym_not_DASHlike2] = ACTIONS(1602), + [anon_sym_STAR_STAR2] = ACTIONS(1602), + [anon_sym_PLUS_PLUS2] = ACTIONS(1600), + [anon_sym_SLASH2] = ACTIONS(1600), + [anon_sym_mod2] = ACTIONS(1602), + [anon_sym_SLASH_SLASH2] = ACTIONS(1602), + [anon_sym_PLUS2] = ACTIONS(1600), + [anon_sym_bit_DASHshl2] = ACTIONS(1602), + [anon_sym_bit_DASHshr2] = ACTIONS(1602), + [anon_sym_bit_DASHand2] = ACTIONS(1602), + [anon_sym_bit_DASHxor2] = ACTIONS(1602), + [anon_sym_bit_DASHor2] = ACTIONS(1602), + [anon_sym_DOT_DOT2] = ACTIONS(1600), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1600), + [anon_sym_out_GT] = ACTIONS(1600), + [anon_sym_e_GT] = ACTIONS(1600), + [anon_sym_o_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT] = ACTIONS(1600), + [anon_sym_err_GT_GT] = ACTIONS(1602), + [anon_sym_out_GT_GT] = ACTIONS(1602), + [anon_sym_e_GT_GT] = ACTIONS(1602), + [anon_sym_o_GT_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(432)] = { + [sym_cell_path] = STATE(497), + [sym_path] = STATE(472), + [sym_comment] = STATE(432), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ_GT] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1673), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(433)] = { + [sym_comment] = STATE(433), + [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_RPAREN] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_EQ_GT] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1541), + [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(1541), + [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(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [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(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_COLON2] = ACTIONS(1543), + [anon_sym_QMARK2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [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(3), + }, + [STATE(434)] = { + [sym_comment] = STATE(434), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(435)] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1563), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_err_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_GT_PIPE] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), + [anon_sym_GT2] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1561), + [anon_sym_STAR2] = ACTIONS(1561), + [anon_sym_and2] = ACTIONS(1563), + [anon_sym_xor2] = ACTIONS(1563), + [anon_sym_or2] = ACTIONS(1563), + [anon_sym_not_DASHin2] = ACTIONS(1563), + [anon_sym_has2] = ACTIONS(1563), + [anon_sym_not_DASHhas2] = ACTIONS(1563), + [anon_sym_starts_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), + [anon_sym_ends_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), + [anon_sym_EQ_EQ2] = ACTIONS(1563), + [anon_sym_BANG_EQ2] = ACTIONS(1563), + [anon_sym_LT2] = ACTIONS(1561), + [anon_sym_LT_EQ2] = ACTIONS(1563), + [anon_sym_GT_EQ2] = ACTIONS(1563), + [anon_sym_EQ_TILDE2] = ACTIONS(1563), + [anon_sym_BANG_TILDE2] = ACTIONS(1563), + [anon_sym_like2] = ACTIONS(1563), + [anon_sym_not_DASHlike2] = ACTIONS(1563), + [anon_sym_STAR_STAR2] = ACTIONS(1563), + [anon_sym_PLUS_PLUS2] = ACTIONS(1561), + [anon_sym_SLASH2] = ACTIONS(1561), + [anon_sym_mod2] = ACTIONS(1563), + [anon_sym_SLASH_SLASH2] = ACTIONS(1563), + [anon_sym_PLUS2] = ACTIONS(1561), + [anon_sym_bit_DASHshl2] = ACTIONS(1563), + [anon_sym_bit_DASHshr2] = ACTIONS(1563), + [anon_sym_bit_DASHand2] = ACTIONS(1563), + [anon_sym_bit_DASHxor2] = ACTIONS(1563), + [anon_sym_bit_DASHor2] = ACTIONS(1563), + [anon_sym_DOT_DOT2] = ACTIONS(1561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), + [anon_sym_DOT2] = ACTIONS(1561), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [anon_sym_err_GT_GT] = ACTIONS(1563), + [anon_sym_out_GT_GT] = ACTIONS(1563), + [anon_sym_e_GT_GT] = ACTIONS(1563), + [anon_sym_o_GT_GT] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(436)] = { + [sym_comment] = STATE(436), + [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_POUND] = ACTIONS(3), + }, + [STATE(437)] = { + [sym__expr_parenthesized_immediate] = STATE(1325), + [sym__immediate_decimal] = STATE(1014), + [sym_val_variable] = STATE(1325), + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(1642), + [anon_sym_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [aux_sym__immediate_decimal_token1] = ACTIONS(1722), + [aux_sym__immediate_decimal_token2] = ACTIONS(1722), + [aux_sym__immediate_decimal_token3] = ACTIONS(1724), + [aux_sym__immediate_decimal_token4] = ACTIONS(1724), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [sym__unquoted_pattern] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(438)] = { + [sym_path] = STATE(472), + [sym_comment] = STATE(438), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_EQ_GT] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1577), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1577), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_like2] = ACTIONS(1579), + [anon_sym_not_DASHlike2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1577), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1577), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), + [anon_sym_COLON2] = ACTIONS(1579), + [anon_sym_DOT2] = ACTIONS(1673), + [anon_sym_err_GT] = ACTIONS(1577), + [anon_sym_out_GT] = ACTIONS(1577), + [anon_sym_e_GT] = ACTIONS(1577), + [anon_sym_o_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT] = ACTIONS(1577), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(439)] = { + [sym_comment] = STATE(439), + [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), + [anon_sym_RPAREN] = ACTIONS(1547), [anon_sym_GT2] = ACTIONS(1545), - [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_EQ_GT] = ACTIONS(1547), [anon_sym_STAR2] = ACTIONS(1545), [anon_sym_and2] = ACTIONS(1547), [anon_sym_xor2] = ACTIONS(1547), @@ -82619,7 +83750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1547), [anon_sym_not_DASHlike2] = ACTIONS(1547), [anon_sym_STAR_STAR2] = ACTIONS(1547), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), [anon_sym_SLASH2] = ACTIONS(1545), [anon_sym_mod2] = ACTIONS(1547), [anon_sym_SLASH_SLASH2] = ACTIONS(1547), @@ -82632,6 +83763,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1545), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_QMARK2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1545), [anon_sym_DOT2] = ACTIONS(1545), [anon_sym_err_GT] = ACTIONS(1545), [anon_sym_out_GT] = ACTIONS(1545), @@ -82651,2882 +83785,3166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(428)] = { - [sym_comment] = STATE(428), - [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_RPAREN] = ACTIONS(1532), - [anon_sym_GT2] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_EQ_GT] = ACTIONS(1532), - [anon_sym_STAR2] = ACTIONS(1530), - [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(1530), - [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(1530), - [anon_sym_mod2] = ACTIONS(1532), - [anon_sym_SLASH_SLASH2] = ACTIONS(1532), - [anon_sym_PLUS2] = ACTIONS(1530), - [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(1530), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), - [anon_sym_COLON2] = ACTIONS(1532), - [anon_sym_QMARK2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DOT2] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [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(3), - }, - [STATE(429)] = { - [sym_cell_path] = STATE(518), - [sym_path] = STATE(470), - [sym_comment] = STATE(429), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), - [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(1679), - [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(430)] = { - [sym_path] = STATE(470), - [sym_comment] = STATE(430), - [aux_sym__where_predicate_lhs_repeat1] = STATE(437), - [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_RPAREN] = ACTIONS(1528), - [anon_sym_GT2] = ACTIONS(1526), - [anon_sym_DASH2] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_EQ_GT] = ACTIONS(1528), - [anon_sym_STAR2] = ACTIONS(1526), - [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(1526), - [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(1526), - [anon_sym_mod2] = ACTIONS(1528), - [anon_sym_SLASH_SLASH2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1526), - [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(1526), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), - [anon_sym_COLON2] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1526), - [anon_sym_out_GT] = ACTIONS(1526), - [anon_sym_e_GT] = ACTIONS(1526), - [anon_sym_o_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT] = ACTIONS(1526), - [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(3), - }, - [STATE(431)] = { - [sym_comment] = STATE(431), - [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] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1699), - [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(432)] = { - [sym_comment] = STATE(432), - [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_token1] = ACTIONS(1701), - [aux_sym__immediate_decimal_token5] = ACTIONS(1703), - [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(433)] = { - [sym_comment] = STATE(433), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_EQ_GT] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1472), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1472), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1472), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), - [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(434)] = { - [sym__expr_parenthesized_immediate] = STATE(941), - [sym__immediate_decimal] = STATE(942), - [sym_val_variable] = STATE(941), - [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [sym__newline] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_err_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_GT_PIPE] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_STAR2] = ACTIONS(1604), - [anon_sym_and2] = ACTIONS(1600), - [anon_sym_xor2] = ACTIONS(1600), - [anon_sym_or2] = ACTIONS(1600), - [anon_sym_not_DASHin2] = ACTIONS(1600), - [anon_sym_has2] = ACTIONS(1600), - [anon_sym_not_DASHhas2] = ACTIONS(1600), - [anon_sym_starts_DASHwith2] = ACTIONS(1600), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), - [anon_sym_ends_DASHwith2] = ACTIONS(1600), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), - [anon_sym_EQ_EQ2] = ACTIONS(1600), - [anon_sym_BANG_EQ2] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ2] = ACTIONS(1600), - [anon_sym_GT_EQ2] = ACTIONS(1600), - [anon_sym_EQ_TILDE2] = ACTIONS(1600), - [anon_sym_BANG_TILDE2] = ACTIONS(1600), - [anon_sym_like2] = ACTIONS(1600), - [anon_sym_not_DASHlike2] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1600), - [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1604), - [anon_sym_mod2] = ACTIONS(1600), - [anon_sym_SLASH_SLASH2] = ACTIONS(1600), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_bit_DASHshl2] = ACTIONS(1600), - [anon_sym_bit_DASHshr2] = ACTIONS(1600), - [anon_sym_bit_DASHand2] = ACTIONS(1600), - [anon_sym_bit_DASHxor2] = ACTIONS(1600), - [anon_sym_bit_DASHor2] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(1661), - [aux_sym__immediate_decimal_token2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1600), - [anon_sym_out_GT_GT] = ACTIONS(1600), - [anon_sym_e_GT_GT] = ACTIONS(1600), - [anon_sym_o_GT_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(435)] = { - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1476), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1476), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1476), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1476), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1476), - [anon_sym_err_GT] = ACTIONS(1476), - [anon_sym_out_GT] = ACTIONS(1476), - [anon_sym_e_GT] = ACTIONS(1476), - [anon_sym_o_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT] = ACTIONS(1476), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(436)] = { - [sym_comment] = STATE(436), - [anon_sym_in] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_err_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_GT_PIPE] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_GT2] = ACTIONS(1516), - [anon_sym_DASH2] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_STAR2] = ACTIONS(1516), - [anon_sym_and2] = ACTIONS(1518), - [anon_sym_xor2] = ACTIONS(1518), - [anon_sym_or2] = ACTIONS(1518), - [anon_sym_not_DASHin2] = ACTIONS(1518), - [anon_sym_has2] = ACTIONS(1518), - [anon_sym_not_DASHhas2] = ACTIONS(1518), - [anon_sym_starts_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), - [anon_sym_ends_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), - [anon_sym_EQ_EQ2] = ACTIONS(1518), - [anon_sym_BANG_EQ2] = ACTIONS(1518), - [anon_sym_LT2] = ACTIONS(1516), - [anon_sym_LT_EQ2] = ACTIONS(1518), - [anon_sym_GT_EQ2] = ACTIONS(1518), - [anon_sym_EQ_TILDE2] = ACTIONS(1518), - [anon_sym_BANG_TILDE2] = ACTIONS(1518), - [anon_sym_like2] = ACTIONS(1518), - [anon_sym_not_DASHlike2] = ACTIONS(1518), - [anon_sym_STAR_STAR2] = ACTIONS(1518), - [anon_sym_PLUS_PLUS2] = ACTIONS(1518), - [anon_sym_SLASH2] = ACTIONS(1516), - [anon_sym_mod2] = ACTIONS(1518), - [anon_sym_SLASH_SLASH2] = ACTIONS(1518), - [anon_sym_PLUS2] = ACTIONS(1516), - [anon_sym_bit_DASHshl2] = ACTIONS(1518), - [anon_sym_bit_DASHshr2] = ACTIONS(1518), - [anon_sym_bit_DASHand2] = ACTIONS(1518), - [anon_sym_bit_DASHxor2] = ACTIONS(1518), - [anon_sym_bit_DASHor2] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), - [anon_sym_COLON2] = ACTIONS(1518), - [anon_sym_QMARK2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DOT2] = ACTIONS(1516), - [anon_sym_err_GT] = ACTIONS(1516), - [anon_sym_out_GT] = ACTIONS(1516), - [anon_sym_e_GT] = ACTIONS(1516), - [anon_sym_o_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT] = ACTIONS(1516), - [anon_sym_err_GT_GT] = ACTIONS(1518), - [anon_sym_out_GT_GT] = ACTIONS(1518), - [anon_sym_e_GT_GT] = ACTIONS(1518), - [anon_sym_o_GT_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(437)] = { - [sym_path] = STATE(470), - [sym_comment] = STATE(437), - [aux_sym__where_predicate_lhs_repeat1] = STATE(437), - [anon_sym_in] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_EQ_GT] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_like2] = ACTIONS(1538), - [anon_sym_not_DASHlike2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [anon_sym_COLON2] = ACTIONS(1538), - [anon_sym_DOT2] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(438)] = { - [sym_comment] = STATE(438), - [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_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = 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(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(439)] = { - [sym_comment] = STATE(439), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1710), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(440)] = { [sym_comment] = STATE(440), - [anon_sym_in] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_GT2] = ACTIONS(1480), - [anon_sym_DASH2] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_EQ_GT] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1480), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1480), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_like2] = ACTIONS(1482), - [anon_sym_not_DASHlike2] = ACTIONS(1482), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1482), - [anon_sym_SLASH2] = ACTIONS(1480), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1480), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [anon_sym_DOT_DOT2] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), - [anon_sym_COLON2] = ACTIONS(1482), - [anon_sym_QMARK2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1480), - [anon_sym_out_GT] = ACTIONS(1480), - [anon_sym_e_GT] = ACTIONS(1480), - [anon_sym_o_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT] = ACTIONS(1480), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), + [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(1726), + [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(441)] = { [sym_comment] = STATE(441), - [anon_sym_EQ] = ACTIONS(1586), - [anon_sym_PLUS_EQ] = ACTIONS(1712), - [anon_sym_DASH_EQ] = ACTIONS(1712), - [anon_sym_STAR_EQ] = ACTIONS(1712), - [anon_sym_SLASH_EQ] = ACTIONS(1712), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1712), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_COLON2] = ACTIONS(1716), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(753), + [sym__newline] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_err_GT_PIPE] = ACTIONS(753), + [anon_sym_out_GT_PIPE] = ACTIONS(753), + [anon_sym_e_GT_PIPE] = ACTIONS(753), + [anon_sym_o_GT_PIPE] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(753), + [anon_sym_xor2] = ACTIONS(753), + [anon_sym_or2] = ACTIONS(753), + [anon_sym_not_DASHin2] = ACTIONS(753), + [anon_sym_has2] = ACTIONS(753), + [anon_sym_not_DASHhas2] = ACTIONS(753), + [anon_sym_starts_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), + [anon_sym_ends_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), + [anon_sym_EQ_EQ2] = ACTIONS(753), + [anon_sym_BANG_EQ2] = ACTIONS(753), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(753), + [anon_sym_GT_EQ2] = ACTIONS(753), + [anon_sym_EQ_TILDE2] = ACTIONS(753), + [anon_sym_BANG_TILDE2] = ACTIONS(753), + [anon_sym_like2] = ACTIONS(753), + [anon_sym_not_DASHlike2] = ACTIONS(753), + [anon_sym_LPAREN2] = ACTIONS(753), + [anon_sym_STAR_STAR2] = ACTIONS(753), + [anon_sym_PLUS_PLUS2] = ACTIONS(753), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(753), + [anon_sym_SLASH_SLASH2] = ACTIONS(753), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(753), + [anon_sym_bit_DASHshr2] = ACTIONS(753), + [anon_sym_bit_DASHand2] = ACTIONS(753), + [anon_sym_bit_DASHxor2] = ACTIONS(753), + [anon_sym_bit_DASHor2] = ACTIONS(753), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1730), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(753), + [anon_sym_out_GT_GT] = ACTIONS(753), + [anon_sym_e_GT_GT] = ACTIONS(753), + [anon_sym_o_GT_GT] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), + [sym__unquoted_pattern] = ACTIONS(751), [anon_sym_POUND] = ACTIONS(3), }, [STATE(442)] = { [sym_comment] = STATE(442), - [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_RPAREN] = ACTIONS(1524), - [anon_sym_GT2] = ACTIONS(1522), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_EQ_GT] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1522), - [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(1522), - [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(1522), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1522), - [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(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), - [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_QMARK2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1522), - [anon_sym_err_GT] = ACTIONS(1522), - [anon_sym_out_GT] = ACTIONS(1522), - [anon_sym_e_GT] = ACTIONS(1522), - [anon_sym_o_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT] = ACTIONS(1522), - [anon_sym_err_GT_GT] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1557), + [anon_sym_STAR_EQ] = ACTIONS(1557), + [anon_sym_SLASH_EQ] = ACTIONS(1557), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1557), + [anon_sym_in] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_GT2] = ACTIONS(1555), + [anon_sym_DASH2] = ACTIONS(1555), + [anon_sym_STAR2] = ACTIONS(1555), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_has2] = ACTIONS(1557), + [anon_sym_not_DASHhas2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_like2] = ACTIONS(1557), + [anon_sym_not_DASHlike2] = ACTIONS(1557), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1555), + [anon_sym_SLASH2] = ACTIONS(1555), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1555), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [anon_sym_DOT_DOT2] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), + [anon_sym_DOT2] = ACTIONS(1555), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(3), }, [STATE(443)] = { + [sym__expr_parenthesized_immediate] = STATE(954), + [sym__immediate_decimal] = STATE(928), + [sym_val_variable] = STATE(954), [sym_comment] = STATE(443), - [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), + [ts_builtin_sym_end] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_STAR2] = ACTIONS(1632), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1632), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_like2] = ACTIONS(1628), + [anon_sym_not_DASHlike2] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1632), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1732), + [aux_sym__immediate_decimal_token1] = ACTIONS(1699), + [aux_sym__immediate_decimal_token2] = ACTIONS(1699), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), [anon_sym_POUND] = ACTIONS(3), }, [STATE(444)] = { - [sym__expr_parenthesized_immediate] = STATE(1297), - [sym__immediate_decimal] = STATE(1144), - [sym_val_variable] = STATE(1297), + [sym__expr_parenthesized_immediate] = STATE(957), + [sym__immediate_decimal] = STATE(958), + [sym_val_variable] = STATE(957), [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [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(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), - [sym__unquoted_pattern] = ACTIONS(1641), + [ts_builtin_sym_end] = ACTIONS(1642), + [anon_sym_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(1699), + [aux_sym__immediate_decimal_token2] = ACTIONS(1699), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, [STATE(445)] = { [sym_comment] = STATE(445), - [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_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_EQ] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_COLON2] = ACTIONS(1740), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(943), - [sym__immediate_decimal] = STATE(944), - [sym_val_variable] = STATE(943), + [sym__expr_parenthesized_immediate] = STATE(1306), + [sym__immediate_decimal] = STATE(1022), + [sym_val_variable] = STATE(1306), [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1722), - [aux_sym__immediate_decimal_token1] = ACTIONS(1661), - [aux_sym__immediate_decimal_token2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_STAR2] = ACTIONS(1691), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1691), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1691), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [aux_sym__immediate_decimal_token1] = ACTIONS(1722), + [aux_sym__immediate_decimal_token2] = ACTIONS(1722), + [aux_sym__immediate_decimal_token3] = ACTIONS(1724), + [aux_sym__immediate_decimal_token4] = ACTIONS(1724), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [sym__unquoted_pattern] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [STATE(447)] = { - [sym__expr_parenthesized_immediate] = STATE(1324), - [sym__immediate_decimal] = STATE(1077), - [sym_val_variable] = STATE(1324), [sym_comment] = STATE(447), - [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_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1647), - [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_LPAREN2] = ACTIONS(1657), - [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), - [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(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), - [sym__unquoted_pattern] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1488), + [sym__newline] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_err_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_GT_PIPE] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_DASH2] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ_GT] = ACTIONS(1488), + [anon_sym_STAR2] = ACTIONS(1486), + [anon_sym_and2] = ACTIONS(1488), + [anon_sym_xor2] = ACTIONS(1488), + [anon_sym_or2] = ACTIONS(1488), + [anon_sym_not_DASHin2] = ACTIONS(1488), + [anon_sym_has2] = ACTIONS(1488), + [anon_sym_not_DASHhas2] = ACTIONS(1488), + [anon_sym_starts_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), + [anon_sym_ends_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), + [anon_sym_EQ_EQ2] = ACTIONS(1488), + [anon_sym_BANG_EQ2] = ACTIONS(1488), + [anon_sym_LT2] = ACTIONS(1486), + [anon_sym_LT_EQ2] = ACTIONS(1488), + [anon_sym_GT_EQ2] = ACTIONS(1488), + [anon_sym_EQ_TILDE2] = ACTIONS(1488), + [anon_sym_BANG_TILDE2] = ACTIONS(1488), + [anon_sym_like2] = ACTIONS(1488), + [anon_sym_not_DASHlike2] = ACTIONS(1488), + [anon_sym_STAR_STAR2] = ACTIONS(1488), + [anon_sym_PLUS_PLUS2] = ACTIONS(1488), + [anon_sym_SLASH2] = ACTIONS(1486), + [anon_sym_mod2] = ACTIONS(1488), + [anon_sym_SLASH_SLASH2] = ACTIONS(1488), + [anon_sym_PLUS2] = ACTIONS(1486), + [anon_sym_bit_DASHshl2] = ACTIONS(1488), + [anon_sym_bit_DASHshr2] = ACTIONS(1488), + [anon_sym_bit_DASHand2] = ACTIONS(1488), + [anon_sym_bit_DASHxor2] = ACTIONS(1488), + [anon_sym_bit_DASHor2] = ACTIONS(1488), + [anon_sym_DOT_DOT2] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), + [anon_sym_COLON2] = ACTIONS(1488), + [anon_sym_QMARK2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DOT2] = ACTIONS(1486), + [anon_sym_err_GT] = ACTIONS(1486), + [anon_sym_out_GT] = ACTIONS(1486), + [anon_sym_e_GT] = ACTIONS(1486), + [anon_sym_o_GT] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT] = ACTIONS(1486), + [anon_sym_err_GT_GT] = ACTIONS(1488), + [anon_sym_out_GT_GT] = ACTIONS(1488), + [anon_sym_e_GT_GT] = ACTIONS(1488), + [anon_sym_o_GT_GT] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, [STATE(448)] = { [sym_comment] = STATE(448), - [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(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(753), + [sym__newline] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_err_GT_PIPE] = ACTIONS(753), + [anon_sym_out_GT_PIPE] = ACTIONS(753), + [anon_sym_e_GT_PIPE] = ACTIONS(753), + [anon_sym_o_GT_PIPE] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(753), + [anon_sym_xor2] = ACTIONS(753), + [anon_sym_or2] = ACTIONS(753), + [anon_sym_not_DASHin2] = ACTIONS(753), + [anon_sym_has2] = ACTIONS(753), + [anon_sym_not_DASHhas2] = ACTIONS(753), + [anon_sym_starts_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), + [anon_sym_ends_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), + [anon_sym_EQ_EQ2] = ACTIONS(753), + [anon_sym_BANG_EQ2] = ACTIONS(753), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(753), + [anon_sym_GT_EQ2] = ACTIONS(753), + [anon_sym_EQ_TILDE2] = ACTIONS(753), + [anon_sym_BANG_TILDE2] = ACTIONS(753), + [anon_sym_like2] = ACTIONS(753), + [anon_sym_not_DASHlike2] = ACTIONS(753), + [anon_sym_LPAREN2] = ACTIONS(753), + [anon_sym_STAR_STAR2] = ACTIONS(753), + [anon_sym_PLUS_PLUS2] = ACTIONS(753), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(753), + [anon_sym_SLASH_SLASH2] = ACTIONS(753), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(753), + [anon_sym_bit_DASHshr2] = ACTIONS(753), + [anon_sym_bit_DASHand2] = ACTIONS(753), + [anon_sym_bit_DASHxor2] = ACTIONS(753), + [anon_sym_bit_DASHor2] = ACTIONS(753), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1730), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(753), + [anon_sym_out_GT_GT] = ACTIONS(753), + [anon_sym_e_GT_GT] = ACTIONS(753), + [anon_sym_o_GT_GT] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), + [sym__unquoted_pattern] = ACTIONS(751), [anon_sym_POUND] = ACTIONS(3), }, [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1332), - [sym__immediate_decimal] = STATE(1350), - [sym_val_variable] = STATE(1332), [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [sym__newline] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_err_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_GT_PIPE] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_STAR2] = ACTIONS(1604), - [anon_sym_and2] = ACTIONS(1600), - [anon_sym_xor2] = ACTIONS(1600), - [anon_sym_or2] = ACTIONS(1600), - [anon_sym_not_DASHin2] = ACTIONS(1600), - [anon_sym_has2] = ACTIONS(1600), - [anon_sym_not_DASHhas2] = ACTIONS(1600), - [anon_sym_starts_DASHwith2] = ACTIONS(1600), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), - [anon_sym_ends_DASHwith2] = ACTIONS(1600), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), - [anon_sym_EQ_EQ2] = ACTIONS(1600), - [anon_sym_BANG_EQ2] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ2] = ACTIONS(1600), - [anon_sym_GT_EQ2] = ACTIONS(1600), - [anon_sym_EQ_TILDE2] = ACTIONS(1600), - [anon_sym_BANG_TILDE2] = ACTIONS(1600), - [anon_sym_like2] = ACTIONS(1600), - [anon_sym_not_DASHlike2] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1600), - [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1604), - [anon_sym_mod2] = ACTIONS(1600), - [anon_sym_SLASH_SLASH2] = ACTIONS(1600), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_bit_DASHshl2] = ACTIONS(1600), - [anon_sym_bit_DASHshr2] = ACTIONS(1600), - [anon_sym_bit_DASHand2] = ACTIONS(1600), - [anon_sym_bit_DASHxor2] = ACTIONS(1600), - [anon_sym_bit_DASHor2] = ACTIONS(1600), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1600), - [anon_sym_out_GT_GT] = ACTIONS(1600), - [anon_sym_e_GT_GT] = ACTIONS(1600), - [anon_sym_o_GT_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1742), + [anon_sym_PLUS_EQ] = ACTIONS(1744), + [anon_sym_DASH_EQ] = ACTIONS(1744), + [anon_sym_STAR_EQ] = ACTIONS(1744), + [anon_sym_SLASH_EQ] = ACTIONS(1744), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(450)] = { [sym_comment] = STATE(450), - [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_in] = ACTIONS(793), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1746), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [sym__unquoted_pattern] = ACTIONS(791), [anon_sym_POUND] = ACTIONS(3), }, [STATE(451)] = { [sym_comment] = STATE(451), - [anon_sym_in] = ACTIONS(777), - [sym__newline] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_err_GT_PIPE] = ACTIONS(777), - [anon_sym_out_GT_PIPE] = ACTIONS(777), - [anon_sym_e_GT_PIPE] = ACTIONS(777), - [anon_sym_o_GT_PIPE] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(777), - [anon_sym_xor2] = ACTIONS(777), - [anon_sym_or2] = ACTIONS(777), - [anon_sym_not_DASHin2] = ACTIONS(777), - [anon_sym_has2] = ACTIONS(777), - [anon_sym_not_DASHhas2] = ACTIONS(777), - [anon_sym_starts_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), - [anon_sym_ends_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), - [anon_sym_EQ_EQ2] = ACTIONS(777), - [anon_sym_BANG_EQ2] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(777), - [anon_sym_GT_EQ2] = ACTIONS(777), - [anon_sym_EQ_TILDE2] = ACTIONS(777), - [anon_sym_BANG_TILDE2] = ACTIONS(777), - [anon_sym_like2] = ACTIONS(777), - [anon_sym_not_DASHlike2] = ACTIONS(777), - [anon_sym_LPAREN2] = ACTIONS(777), - [anon_sym_STAR_STAR2] = ACTIONS(777), - [anon_sym_PLUS_PLUS2] = ACTIONS(777), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(777), - [anon_sym_SLASH_SLASH2] = ACTIONS(777), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(777), - [anon_sym_bit_DASHshr2] = ACTIONS(777), - [anon_sym_bit_DASHand2] = ACTIONS(777), - [anon_sym_bit_DASHxor2] = ACTIONS(777), - [anon_sym_bit_DASHor2] = ACTIONS(777), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1738), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(777), - [anon_sym_out_GT_GT] = ACTIONS(777), - [anon_sym_e_GT_GT] = ACTIONS(777), - [anon_sym_o_GT_GT] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), - [sym__unquoted_pattern] = ACTIONS(775), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_in] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_EQ_GT] = ACTIONS(1567), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1567), + [anon_sym_xor2] = ACTIONS(1567), + [anon_sym_or2] = ACTIONS(1567), + [anon_sym_not_DASHin2] = ACTIONS(1567), + [anon_sym_has2] = ACTIONS(1567), + [anon_sym_not_DASHhas2] = ACTIONS(1567), + [anon_sym_starts_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), + [anon_sym_ends_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), + [anon_sym_EQ_EQ2] = ACTIONS(1567), + [anon_sym_BANG_EQ2] = ACTIONS(1567), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1567), + [anon_sym_GT_EQ2] = ACTIONS(1567), + [anon_sym_EQ_TILDE2] = ACTIONS(1567), + [anon_sym_BANG_TILDE2] = ACTIONS(1567), + [anon_sym_like2] = ACTIONS(1567), + [anon_sym_not_DASHlike2] = ACTIONS(1567), + [anon_sym_STAR_STAR2] = ACTIONS(1567), + [anon_sym_PLUS_PLUS2] = ACTIONS(1567), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1567), + [anon_sym_SLASH_SLASH2] = ACTIONS(1567), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1567), + [anon_sym_bit_DASHshr2] = ACTIONS(1567), + [anon_sym_bit_DASHand2] = ACTIONS(1567), + [anon_sym_bit_DASHxor2] = ACTIONS(1567), + [anon_sym_bit_DASHor2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [anon_sym_COLON2] = ACTIONS(1567), + [anon_sym_DOT2] = ACTIONS(1565), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(3), }, [STATE(452)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5481), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), + [sym_cmd_identifier] = STATE(4664), + [sym__match_pattern_record_body] = STATE(5509), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4373), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4760), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(452), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1750), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [aux_sym__types_body_repeat1] = STATE(496), + [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(453)] = { [sym_comment] = STATE(453), - [anon_sym_if] = 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(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_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_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1776), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token1] = ACTIONS(1778), + [aux_sym__immediate_decimal_token5] = ACTIONS(1780), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(454)] = { - [sym_cmd_identifier] = STATE(4489), - [sym__match_pattern_record_body] = STATE(5322), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4465), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4872), - [sym__record_key] = STATE(5246), + [sym__expr_parenthesized_immediate] = STATE(1296), + [sym__immediate_decimal] = STATE(1298), + [sym_val_variable] = STATE(1296), [sym_comment] = STATE(454), - [aux_sym__types_body_repeat1] = STATE(496), - [aux_sym__match_pattern_record_body_repeat1] = STATE(701), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1768), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [ts_builtin_sym_end] = ACTIONS(1707), + [anon_sym_in] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_has2] = ACTIONS(1707), + [anon_sym_not_DASHhas2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_like2] = ACTIONS(1707), + [anon_sym_not_DASHlike2] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(455)] = { + [sym__expr_parenthesized_immediate] = STATE(1300), + [sym__immediate_decimal] = STATE(1301), + [sym_val_variable] = STATE(1300), [sym_comment] = STATE(455), - [anon_sym_EQ] = ACTIONS(1586), - [anon_sym_PLUS_EQ] = ACTIONS(1712), - [anon_sym_DASH_EQ] = ACTIONS(1712), - [anon_sym_STAR_EQ] = ACTIONS(1712), - [anon_sym_SLASH_EQ] = ACTIONS(1712), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1712), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [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(1693), + [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(1695), + [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(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [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(456)] = { + [sym__expr_parenthesized_immediate] = STATE(1302), + [sym__immediate_decimal] = STATE(1304), + [sym_val_variable] = STATE(1302), [sym_comment] = STATE(456), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, + [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(1693), + [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(1695), + [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(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [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(457)] = { + [sym__expr_parenthesized_immediate] = STATE(1306), + [sym__immediate_decimal] = STATE(1307), + [sym_val_variable] = STATE(1306), [sym_comment] = STATE(457), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1774), - [anon_sym_DASH_EQ] = ACTIONS(1774), - [anon_sym_STAR_EQ] = ACTIONS(1774), - [anon_sym_SLASH_EQ] = ACTIONS(1774), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_STAR2] = ACTIONS(1691), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1691), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1691), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [aux_sym__immediate_decimal_token1] = ACTIONS(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [STATE(458)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5353), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1714), - [anon_sym_EQ] = ACTIONS(1776), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(459)] = { [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT_DOT2] = ACTIONS(1786), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), - [aux_sym__immediate_decimal_token5] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [aux_sym__immediate_decimal_token5] = ACTIONS(1794), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(460)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5236), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), + [sym__expr_parenthesized_immediate] = STATE(5068), [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1792), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [anon_sym_in] = ACTIONS(914), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(914), + [anon_sym_xor2] = ACTIONS(914), + [anon_sym_or2] = ACTIONS(914), + [anon_sym_not_DASHin2] = ACTIONS(914), + [anon_sym_has2] = ACTIONS(914), + [anon_sym_not_DASHhas2] = ACTIONS(914), + [anon_sym_starts_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), + [anon_sym_ends_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(914), + [anon_sym_like2] = ACTIONS(914), + [anon_sym_not_DASHlike2] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(914), + [anon_sym_PLUS_PLUS2] = ACTIONS(914), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(914), + [anon_sym_SLASH_SLASH2] = ACTIONS(914), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(914), + [anon_sym_bit_DASHshr2] = ACTIONS(914), + [anon_sym_bit_DASHand2] = ACTIONS(914), + [anon_sym_bit_DASHxor2] = ACTIONS(914), + [anon_sym_bit_DASHor2] = ACTIONS(914), + [anon_sym_DOT_DOT2] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), + [sym_filesize_unit] = ACTIONS(1802), + [sym_duration_unit] = ACTIONS(1804), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [sym__unquoted_pattern] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(461)] = { - [sym__expr_parenthesized_immediate] = STATE(1324), - [sym__immediate_decimal] = STATE(1338), - [sym_val_variable] = STATE(1324), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5524), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(461), - [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_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1647), - [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_LPAREN2] = ACTIONS(1657), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [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), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(462)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1321), - [sym_val_variable] = STATE(1311), + [sym_cmd_identifier] = STATE(4664), + [sym__match_pattern_record_body] = STATE(5502), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4373), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4760), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1685), - [anon_sym_in] = ACTIONS(1685), - [sym__newline] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_err_GT_PIPE] = ACTIONS(1685), - [anon_sym_out_GT_PIPE] = ACTIONS(1685), - [anon_sym_e_GT_PIPE] = ACTIONS(1685), - [anon_sym_o_GT_PIPE] = ACTIONS(1685), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1685), - [anon_sym_xor2] = ACTIONS(1685), - [anon_sym_or2] = ACTIONS(1685), - [anon_sym_not_DASHin2] = ACTIONS(1685), - [anon_sym_has2] = ACTIONS(1685), - [anon_sym_not_DASHhas2] = ACTIONS(1685), - [anon_sym_starts_DASHwith2] = ACTIONS(1685), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1685), - [anon_sym_ends_DASHwith2] = ACTIONS(1685), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1685), - [anon_sym_EQ_EQ2] = ACTIONS(1685), - [anon_sym_BANG_EQ2] = ACTIONS(1685), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1685), - [anon_sym_GT_EQ2] = ACTIONS(1685), - [anon_sym_EQ_TILDE2] = ACTIONS(1685), - [anon_sym_BANG_TILDE2] = ACTIONS(1685), - [anon_sym_like2] = ACTIONS(1685), - [anon_sym_not_DASHlike2] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1685), - [anon_sym_PLUS_PLUS2] = ACTIONS(1685), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1685), - [anon_sym_SLASH_SLASH2] = ACTIONS(1685), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1685), - [anon_sym_bit_DASHshr2] = ACTIONS(1685), - [anon_sym_bit_DASHand2] = ACTIONS(1685), - [anon_sym_bit_DASHxor2] = ACTIONS(1685), - [anon_sym_bit_DASHor2] = ACTIONS(1685), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1687), - [anon_sym_out_GT] = ACTIONS(1687), - [anon_sym_e_GT] = ACTIONS(1687), - [anon_sym_o_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT] = ACTIONS(1687), - [anon_sym_err_GT_GT] = ACTIONS(1685), - [anon_sym_out_GT_GT] = ACTIONS(1685), - [anon_sym_e_GT_GT] = ACTIONS(1685), - [anon_sym_o_GT_GT] = ACTIONS(1685), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(496), + [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(463)] = { - [sym_cmd_identifier] = STATE(4489), - [sym__match_pattern_record_body] = STATE(5509), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4465), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4872), - [sym__record_key] = STATE(5246), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5507), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(463), - [aux_sym__types_body_repeat1] = STATE(496), - [aux_sym__match_pattern_record_body_repeat1] = STATE(701), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1794), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(464)] = { - [sym__expr_parenthesized_immediate] = STATE(5075), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5114), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(464), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_DOT_DOT2] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), - [sym_filesize_unit] = ACTIONS(1802), - [sym_duration_unit] = ACTIONS(1804), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(465)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5136), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), + [sym__expr_parenthesized_immediate] = STATE(1320), + [sym__immediate_decimal] = STATE(1322), + [sym_val_variable] = STATE(1320), [sym_comment] = STATE(465), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [ts_builtin_sym_end] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_STAR2] = ACTIONS(1632), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1632), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_like2] = ACTIONS(1628), + [anon_sym_not_DASHlike2] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1632), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [aux_sym__immediate_decimal_token1] = ACTIONS(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(466)] = { - [sym__expr_parenthesized_immediate] = STATE(1363), - [sym__immediate_decimal] = STATE(1315), - [sym_val_variable] = STATE(1363), [sym_comment] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_EQ] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1818), + [anon_sym_DASH_EQ] = ACTIONS(1818), + [anon_sym_STAR_EQ] = ACTIONS(1818), + [anon_sym_SLASH_EQ] = ACTIONS(1818), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1818), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_comment] = STATE(467), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(468)] = { + [sym_comment] = STATE(468), + [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(1820), + [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(469)] = { + [sym__expr_parenthesized_immediate] = STATE(1325), + [sym__immediate_decimal] = STATE(1330), + [sym_val_variable] = STATE(1325), + [sym_comment] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(1642), + [anon_sym_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [aux_sym__immediate_decimal_token1] = ACTIONS(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token3] = ACTIONS(1701), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(470)] = { + [sym_comment] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_comment] = STATE(471), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1830), + [aux_sym__immediate_decimal_token5] = ACTIONS(1832), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(472)] = { + [sym_comment] = STATE(472), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_in] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_GT2] = ACTIONS(1555), + [anon_sym_DASH2] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_EQ_GT] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1555), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_has2] = ACTIONS(1557), + [anon_sym_not_DASHhas2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_like2] = ACTIONS(1557), + [anon_sym_not_DASHlike2] = ACTIONS(1557), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1557), + [anon_sym_SLASH2] = ACTIONS(1555), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1555), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [anon_sym_DOT_DOT2] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), + [anon_sym_COLON2] = ACTIONS(1557), + [anon_sym_DOT2] = ACTIONS(1555), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(473)] = { + [sym_cmd_identifier] = STATE(4664), + [sym__match_pattern_record_body] = STATE(5328), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4373), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4760), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(473), + [aux_sym__types_body_repeat1] = STATE(496), + [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(474)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5483), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(474), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(475)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5240), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(475), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(476)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5354), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(476), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(477)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5129), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(477), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(478)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_body] = STATE(5190), + [sym_record_entry] = STATE(4691), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(478), + [aux_sym__types_body_repeat1] = STATE(503), + [aux_sym_record_body_repeat1] = STATE(728), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(479)] = { + [sym_comment] = STATE(479), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_err_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_GT_PIPE] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_GT2] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_EQ_GT] = ACTIONS(1563), + [anon_sym_STAR2] = ACTIONS(1561), + [anon_sym_and2] = ACTIONS(1563), + [anon_sym_xor2] = ACTIONS(1563), + [anon_sym_or2] = ACTIONS(1563), + [anon_sym_not_DASHin2] = ACTIONS(1563), + [anon_sym_has2] = ACTIONS(1563), + [anon_sym_not_DASHhas2] = ACTIONS(1563), + [anon_sym_starts_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), + [anon_sym_ends_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), + [anon_sym_EQ_EQ2] = ACTIONS(1563), + [anon_sym_BANG_EQ2] = ACTIONS(1563), + [anon_sym_LT2] = ACTIONS(1561), + [anon_sym_LT_EQ2] = ACTIONS(1563), + [anon_sym_GT_EQ2] = ACTIONS(1563), + [anon_sym_EQ_TILDE2] = ACTIONS(1563), + [anon_sym_BANG_TILDE2] = ACTIONS(1563), + [anon_sym_like2] = ACTIONS(1563), + [anon_sym_not_DASHlike2] = ACTIONS(1563), + [anon_sym_STAR_STAR2] = ACTIONS(1563), + [anon_sym_PLUS_PLUS2] = ACTIONS(1563), + [anon_sym_SLASH2] = ACTIONS(1561), + [anon_sym_mod2] = ACTIONS(1563), + [anon_sym_SLASH_SLASH2] = ACTIONS(1563), + [anon_sym_PLUS2] = ACTIONS(1561), + [anon_sym_bit_DASHshl2] = ACTIONS(1563), + [anon_sym_bit_DASHshr2] = ACTIONS(1563), + [anon_sym_bit_DASHand2] = ACTIONS(1563), + [anon_sym_bit_DASHxor2] = ACTIONS(1563), + [anon_sym_bit_DASHor2] = ACTIONS(1563), + [anon_sym_DOT_DOT2] = ACTIONS(1561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), + [anon_sym_COLON2] = ACTIONS(1563), + [anon_sym_DOT2] = ACTIONS(1561), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [anon_sym_err_GT_GT] = ACTIONS(1563), + [anon_sym_out_GT_GT] = ACTIONS(1563), + [anon_sym_e_GT_GT] = ACTIONS(1563), + [anon_sym_o_GT_GT] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(480)] = { + [sym_comment] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_in] = ACTIONS(753), + [sym__newline] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_err_GT_PIPE] = ACTIONS(753), + [anon_sym_out_GT_PIPE] = ACTIONS(753), + [anon_sym_e_GT_PIPE] = ACTIONS(753), + [anon_sym_o_GT_PIPE] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(753), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(753), + [anon_sym_xor2] = ACTIONS(753), + [anon_sym_or2] = ACTIONS(753), + [anon_sym_not_DASHin2] = ACTIONS(753), + [anon_sym_has2] = ACTIONS(753), + [anon_sym_not_DASHhas2] = ACTIONS(753), + [anon_sym_starts_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), + [anon_sym_ends_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), + [anon_sym_EQ_EQ2] = ACTIONS(753), + [anon_sym_BANG_EQ2] = ACTIONS(753), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(753), + [anon_sym_GT_EQ2] = ACTIONS(753), + [anon_sym_EQ_TILDE2] = ACTIONS(753), + [anon_sym_BANG_TILDE2] = ACTIONS(753), + [anon_sym_like2] = ACTIONS(753), + [anon_sym_not_DASHlike2] = ACTIONS(753), + [anon_sym_LPAREN2] = ACTIONS(753), + [anon_sym_STAR_STAR2] = ACTIONS(753), + [anon_sym_PLUS_PLUS2] = ACTIONS(753), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(753), + [anon_sym_SLASH_SLASH2] = ACTIONS(753), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(753), + [anon_sym_bit_DASHshr2] = ACTIONS(753), + [anon_sym_bit_DASHand2] = ACTIONS(753), + [anon_sym_bit_DASHxor2] = ACTIONS(753), + [anon_sym_bit_DASHor2] = ACTIONS(753), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT] = ACTIONS(1846), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1848), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(753), + [anon_sym_out_GT_GT] = ACTIONS(753), + [anon_sym_e_GT_GT] = ACTIONS(753), + [anon_sym_o_GT_GT] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), + [sym__unquoted_pattern] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(481)] = { + [sym_comment] = STATE(481), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_comment] = STATE(482), + [anon_sym_if] = ACTIONS(1669), [anon_sym_in] = ACTIONS(1669), [sym__newline] = ACTIONS(1669), [anon_sym_SEMI] = ACTIONS(1669), @@ -85539,9 +86957,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1655), + [anon_sym_RPAREN] = ACTIONS(1669), [anon_sym_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_EQ_GT] = ACTIONS(1669), [anon_sym_STAR2] = ACTIONS(1671), [anon_sym_and2] = ACTIONS(1669), [anon_sym_xor2] = ACTIONS(1669), @@ -85562,7 +86983,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1669), [anon_sym_like2] = ACTIONS(1669), [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1657), [anon_sym_STAR_STAR2] = ACTIONS(1669), [anon_sym_PLUS_PLUS2] = ACTIONS(1669), [anon_sym_SLASH2] = ACTIONS(1671), @@ -85574,10 +86994,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1671), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_COLON2] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1671), [anon_sym_out_GT] = ACTIONS(1671), [anon_sym_e_GT] = ACTIONS(1671), @@ -85596,234 +87016,897 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(467)] = { - [sym_cmd_identifier] = STATE(4489), - [sym__match_pattern_record_body] = STATE(5313), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4465), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4872), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(467), - [aux_sym__types_body_repeat1] = STATE(496), - [aux_sym__match_pattern_record_body_repeat1] = STATE(701), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [STATE(483)] = { + [sym_comment] = STATE(483), + [anon_sym_in] = ACTIONS(793), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [sym__unquoted_pattern] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5350), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [STATE(484)] = { + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_val_entry] = STATE(4867), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(484), + [aux_sym__types_body_repeat1] = STATE(2185), + [aux_sym_list_body_repeat1] = STATE(535), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, - [STATE(469)] = { - [sym_comment] = STATE(469), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1699), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(485)] = { + [sym_comment] = STATE(485), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_PLUS_EQ] = ACTIONS(1852), + [anon_sym_DASH_EQ] = ACTIONS(1852), + [anon_sym_STAR_EQ] = ACTIONS(1852), + [anon_sym_SLASH_EQ] = ACTIONS(1852), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_if] = ACTIONS(1547), + [STATE(486)] = { + [sym_comment] = STATE(486), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_in] = ACTIONS(753), + [sym__newline] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_err_GT_PIPE] = ACTIONS(753), + [anon_sym_out_GT_PIPE] = ACTIONS(753), + [anon_sym_e_GT_PIPE] = ACTIONS(753), + [anon_sym_o_GT_PIPE] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), + [anon_sym_GT2] = ACTIONS(751), + [anon_sym_DASH2] = ACTIONS(753), + [anon_sym_STAR2] = ACTIONS(751), + [anon_sym_and2] = ACTIONS(753), + [anon_sym_xor2] = ACTIONS(753), + [anon_sym_or2] = ACTIONS(753), + [anon_sym_not_DASHin2] = ACTIONS(753), + [anon_sym_has2] = ACTIONS(753), + [anon_sym_not_DASHhas2] = ACTIONS(753), + [anon_sym_starts_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), + [anon_sym_ends_DASHwith2] = ACTIONS(753), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), + [anon_sym_EQ_EQ2] = ACTIONS(753), + [anon_sym_BANG_EQ2] = ACTIONS(753), + [anon_sym_LT2] = ACTIONS(751), + [anon_sym_LT_EQ2] = ACTIONS(753), + [anon_sym_GT_EQ2] = ACTIONS(753), + [anon_sym_EQ_TILDE2] = ACTIONS(753), + [anon_sym_BANG_TILDE2] = ACTIONS(753), + [anon_sym_like2] = ACTIONS(753), + [anon_sym_not_DASHlike2] = ACTIONS(753), + [anon_sym_LPAREN2] = ACTIONS(753), + [anon_sym_STAR_STAR2] = ACTIONS(753), + [anon_sym_PLUS_PLUS2] = ACTIONS(753), + [anon_sym_SLASH2] = ACTIONS(751), + [anon_sym_mod2] = ACTIONS(753), + [anon_sym_SLASH_SLASH2] = ACTIONS(753), + [anon_sym_PLUS2] = ACTIONS(751), + [anon_sym_bit_DASHshl2] = ACTIONS(753), + [anon_sym_bit_DASHshr2] = ACTIONS(753), + [anon_sym_bit_DASHand2] = ACTIONS(753), + [anon_sym_bit_DASHxor2] = ACTIONS(753), + [anon_sym_bit_DASHor2] = ACTIONS(753), + [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(1848), + [sym_filesize_unit] = ACTIONS(751), + [sym_duration_unit] = ACTIONS(753), + [anon_sym_err_GT] = ACTIONS(751), + [anon_sym_out_GT] = ACTIONS(751), + [anon_sym_e_GT] = ACTIONS(751), + [anon_sym_o_GT] = ACTIONS(751), + [anon_sym_err_PLUSout_GT] = ACTIONS(751), + [anon_sym_out_PLUSerr_GT] = ACTIONS(751), + [anon_sym_o_PLUSe_GT] = ACTIONS(751), + [anon_sym_e_PLUSo_GT] = ACTIONS(751), + [anon_sym_err_GT_GT] = ACTIONS(753), + [anon_sym_out_GT_GT] = ACTIONS(753), + [anon_sym_e_GT_GT] = ACTIONS(753), + [anon_sym_o_GT_GT] = ACTIONS(753), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), + [sym__unquoted_pattern] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(487)] = { + [sym_comment] = STATE(487), + [anon_sym_in] = ACTIONS(805), + [sym__newline] = ACTIONS(805), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(805), + [anon_sym_err_GT_PIPE] = ACTIONS(805), + [anon_sym_out_GT_PIPE] = ACTIONS(805), + [anon_sym_e_GT_PIPE] = ACTIONS(805), + [anon_sym_o_GT_PIPE] = ACTIONS(805), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(805), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(805), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(805), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(805), + [anon_sym_RBRACE] = ACTIONS(805), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(805), + [anon_sym_xor2] = ACTIONS(805), + [anon_sym_or2] = ACTIONS(805), + [anon_sym_not_DASHin2] = ACTIONS(805), + [anon_sym_has2] = ACTIONS(805), + [anon_sym_not_DASHhas2] = ACTIONS(805), + [anon_sym_starts_DASHwith2] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(805), + [anon_sym_ends_DASHwith2] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(805), + [anon_sym_EQ_EQ2] = ACTIONS(805), + [anon_sym_BANG_EQ2] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(805), + [anon_sym_GT_EQ2] = ACTIONS(805), + [anon_sym_EQ_TILDE2] = ACTIONS(805), + [anon_sym_BANG_TILDE2] = ACTIONS(805), + [anon_sym_like2] = ACTIONS(805), + [anon_sym_not_DASHlike2] = ACTIONS(805), + [anon_sym_LPAREN2] = ACTIONS(805), + [anon_sym_STAR_STAR2] = ACTIONS(805), + [anon_sym_PLUS_PLUS2] = ACTIONS(805), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(805), + [anon_sym_SLASH_SLASH2] = ACTIONS(805), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(805), + [anon_sym_bit_DASHshr2] = ACTIONS(805), + [anon_sym_bit_DASHand2] = ACTIONS(805), + [anon_sym_bit_DASHxor2] = ACTIONS(805), + [anon_sym_bit_DASHor2] = ACTIONS(805), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(805), + [anon_sym_out_GT_GT] = ACTIONS(805), + [anon_sym_e_GT_GT] = ACTIONS(805), + [anon_sym_o_GT_GT] = ACTIONS(805), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(805), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(805), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(805), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(805), + [sym__unquoted_pattern] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(488)] = { + [sym_comment] = STATE(488), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_in] = ACTIONS(793), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(1854), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [sym__unquoted_pattern] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(489)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4628), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4749), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(489), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym__match_pattern_record_body_repeat1] = STATE(731), + [aux_sym_record_body_repeat1] = STATE(744), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(490)] = { + [sym__expr_parenthesized_immediate] = STATE(4987), + [sym_comment] = STATE(490), + [ts_builtin_sym_end] = ACTIONS(914), + [anon_sym_in] = ACTIONS(914), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(914), + [anon_sym_xor2] = ACTIONS(914), + [anon_sym_or2] = ACTIONS(914), + [anon_sym_not_DASHin2] = ACTIONS(914), + [anon_sym_has2] = ACTIONS(914), + [anon_sym_not_DASHhas2] = ACTIONS(914), + [anon_sym_starts_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), + [anon_sym_ends_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(914), + [anon_sym_like2] = ACTIONS(914), + [anon_sym_not_DASHlike2] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(914), + [anon_sym_PLUS_PLUS2] = ACTIONS(914), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(914), + [anon_sym_SLASH_SLASH2] = ACTIONS(914), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(914), + [anon_sym_bit_DASHshr2] = ACTIONS(914), + [anon_sym_bit_DASHand2] = ACTIONS(914), + [anon_sym_bit_DASHxor2] = ACTIONS(914), + [anon_sym_bit_DASHor2] = ACTIONS(914), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [sym_filesize_unit] = ACTIONS(1860), + [sym_duration_unit] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [sym__unquoted_pattern] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(491)] = { + [sym_comment] = STATE(491), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [aux_sym__immediate_decimal_token5] = ACTIONS(1794), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(492)] = { + [sym_comment] = STATE(492), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), + [aux_sym__immediate_decimal_token5] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(493)] = { + [sym_comment] = STATE(493), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1872), + [anon_sym_COLON2] = ACTIONS(1872), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(494)] = { + [sym_comment] = STATE(494), + [anon_sym_EQ] = ACTIONS(1876), + [anon_sym_PLUS_EQ] = ACTIONS(1878), + [anon_sym_DASH_EQ] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1878), + [anon_sym_SLASH_EQ] = ACTIONS(1878), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_comment] = STATE(495), + [ts_builtin_sym_end] = ACTIONS(1547), [anon_sym_in] = ACTIONS(1547), [sym__newline] = ACTIONS(1547), [anon_sym_SEMI] = ACTIONS(1547), @@ -85836,12 +87919,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(1547), [anon_sym_GT2] = ACTIONS(1545), [anon_sym_DASH2] = ACTIONS(1547), [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_EQ_GT] = ACTIONS(1547), [anon_sym_STAR2] = ACTIONS(1545), [anon_sym_and2] = ACTIONS(1547), [anon_sym_xor2] = ACTIONS(1547), @@ -85876,7 +87956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1545), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), - [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_QMARK2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1545), [anon_sym_DOT2] = ACTIONS(1545), [anon_sym_err_GT] = ACTIONS(1545), [anon_sym_out_GT] = ACTIONS(1545), @@ -85896,2016 +87977,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(471)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5111), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(471), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [STATE(496)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4628), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4870), + [sym__record_key] = STATE(5380), + [sym_comment] = STATE(496), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym__match_pattern_record_body_repeat1] = STATE(731), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1818), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(497)] = { + [sym_comment] = STATE(497), + [anon_sym_in] = ACTIONS(1602), + [sym__newline] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_err_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_GT_PIPE] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1600), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ_GT] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1600), + [anon_sym_and2] = ACTIONS(1602), + [anon_sym_xor2] = ACTIONS(1602), + [anon_sym_or2] = ACTIONS(1602), + [anon_sym_not_DASHin2] = ACTIONS(1602), + [anon_sym_has2] = ACTIONS(1602), + [anon_sym_not_DASHhas2] = ACTIONS(1602), + [anon_sym_starts_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), + [anon_sym_ends_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), + [anon_sym_EQ_EQ2] = ACTIONS(1602), + [anon_sym_BANG_EQ2] = ACTIONS(1602), + [anon_sym_LT2] = ACTIONS(1600), + [anon_sym_LT_EQ2] = ACTIONS(1602), + [anon_sym_GT_EQ2] = ACTIONS(1602), + [anon_sym_EQ_TILDE2] = ACTIONS(1602), + [anon_sym_BANG_TILDE2] = ACTIONS(1602), + [anon_sym_like2] = ACTIONS(1602), + [anon_sym_not_DASHlike2] = ACTIONS(1602), + [anon_sym_STAR_STAR2] = ACTIONS(1602), + [anon_sym_PLUS_PLUS2] = ACTIONS(1602), + [anon_sym_SLASH2] = ACTIONS(1600), + [anon_sym_mod2] = ACTIONS(1602), + [anon_sym_SLASH_SLASH2] = ACTIONS(1602), + [anon_sym_PLUS2] = ACTIONS(1600), + [anon_sym_bit_DASHshl2] = ACTIONS(1602), + [anon_sym_bit_DASHshr2] = ACTIONS(1602), + [anon_sym_bit_DASHand2] = ACTIONS(1602), + [anon_sym_bit_DASHxor2] = ACTIONS(1602), + [anon_sym_bit_DASHor2] = ACTIONS(1602), + [anon_sym_DOT_DOT2] = ACTIONS(1600), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), + [anon_sym_COLON2] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1600), + [anon_sym_out_GT] = ACTIONS(1600), + [anon_sym_e_GT] = ACTIONS(1600), + [anon_sym_o_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT] = ACTIONS(1600), + [anon_sym_err_GT_GT] = ACTIONS(1602), + [anon_sym_out_GT_GT] = ACTIONS(1602), + [anon_sym_e_GT_GT] = ACTIONS(1602), + [anon_sym_o_GT_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5125), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(473), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1820), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [STATE(498)] = { + [sym_comment] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [sym__newline] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_err_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_GT_PIPE] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_DASH2] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_STAR2] = ACTIONS(1486), + [anon_sym_and2] = ACTIONS(1488), + [anon_sym_xor2] = ACTIONS(1488), + [anon_sym_or2] = ACTIONS(1488), + [anon_sym_not_DASHin2] = ACTIONS(1488), + [anon_sym_has2] = ACTIONS(1488), + [anon_sym_not_DASHhas2] = ACTIONS(1488), + [anon_sym_starts_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), + [anon_sym_ends_DASHwith2] = ACTIONS(1488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), + [anon_sym_EQ_EQ2] = ACTIONS(1488), + [anon_sym_BANG_EQ2] = ACTIONS(1488), + [anon_sym_LT2] = ACTIONS(1486), + [anon_sym_LT_EQ2] = ACTIONS(1488), + [anon_sym_GT_EQ2] = ACTIONS(1488), + [anon_sym_EQ_TILDE2] = ACTIONS(1488), + [anon_sym_BANG_TILDE2] = ACTIONS(1488), + [anon_sym_like2] = ACTIONS(1488), + [anon_sym_not_DASHlike2] = ACTIONS(1488), + [anon_sym_STAR_STAR2] = ACTIONS(1488), + [anon_sym_PLUS_PLUS2] = ACTIONS(1488), + [anon_sym_SLASH2] = ACTIONS(1486), + [anon_sym_mod2] = ACTIONS(1488), + [anon_sym_SLASH_SLASH2] = ACTIONS(1488), + [anon_sym_PLUS2] = ACTIONS(1486), + [anon_sym_bit_DASHshl2] = ACTIONS(1488), + [anon_sym_bit_DASHshr2] = ACTIONS(1488), + [anon_sym_bit_DASHand2] = ACTIONS(1488), + [anon_sym_bit_DASHxor2] = ACTIONS(1488), + [anon_sym_bit_DASHor2] = ACTIONS(1488), + [anon_sym_DOT_DOT2] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), + [anon_sym_QMARK2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DOT2] = ACTIONS(1486), + [anon_sym_err_GT] = ACTIONS(1486), + [anon_sym_out_GT] = ACTIONS(1486), + [anon_sym_e_GT] = ACTIONS(1486), + [anon_sym_o_GT] = ACTIONS(1486), + [anon_sym_err_PLUSout_GT] = ACTIONS(1486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), + [anon_sym_o_PLUSe_GT] = ACTIONS(1486), + [anon_sym_e_PLUSo_GT] = ACTIONS(1486), + [anon_sym_err_GT_GT] = ACTIONS(1488), + [anon_sym_out_GT_GT] = ACTIONS(1488), + [anon_sym_e_GT_GT] = ACTIONS(1488), + [anon_sym_o_GT_GT] = ACTIONS(1488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(474)] = { - [sym__expr_parenthesized_immediate] = STATE(1328), - [sym__immediate_decimal] = STATE(1349), - [sym_val_variable] = STATE(1328), - [sym_comment] = STATE(474), - [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(1655), - [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(1657), - [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(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [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(475)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5367), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), - }, - [STATE(476)] = { - [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1824), - [aux_sym__immediate_decimal_token5] = ACTIONS(1826), - [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(477)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5283), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(477), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1828), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), - }, - [STATE(478)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_body] = STATE(5521), - [sym_record_entry] = STATE(4845), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(478), - [aux_sym__types_body_repeat1] = STATE(497), - [aux_sym_record_body_repeat1] = STATE(716), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(175), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), - }, - [STATE(479)] = { - [sym__expr_parenthesized_immediate] = STATE(1297), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1297), - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_err_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_GT_PIPE] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1622), - [anon_sym_DASH2] = ACTIONS(1622), - [anon_sym_STAR2] = ACTIONS(1622), - [anon_sym_and2] = ACTIONS(1620), - [anon_sym_xor2] = ACTIONS(1620), - [anon_sym_or2] = ACTIONS(1620), - [anon_sym_not_DASHin2] = ACTIONS(1620), - [anon_sym_has2] = ACTIONS(1620), - [anon_sym_not_DASHhas2] = ACTIONS(1620), - [anon_sym_starts_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), - [anon_sym_ends_DASHwith2] = ACTIONS(1620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), - [anon_sym_EQ_EQ2] = ACTIONS(1620), - [anon_sym_BANG_EQ2] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1622), - [anon_sym_LT_EQ2] = ACTIONS(1620), - [anon_sym_GT_EQ2] = ACTIONS(1620), - [anon_sym_EQ_TILDE2] = ACTIONS(1620), - [anon_sym_BANG_TILDE2] = ACTIONS(1620), - [anon_sym_like2] = ACTIONS(1620), - [anon_sym_not_DASHlike2] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1620), - [anon_sym_PLUS_PLUS2] = ACTIONS(1620), - [anon_sym_SLASH2] = ACTIONS(1622), - [anon_sym_mod2] = ACTIONS(1620), - [anon_sym_SLASH_SLASH2] = ACTIONS(1620), - [anon_sym_PLUS2] = ACTIONS(1622), - [anon_sym_bit_DASHshl2] = ACTIONS(1620), - [anon_sym_bit_DASHshr2] = ACTIONS(1620), - [anon_sym_bit_DASHand2] = ACTIONS(1620), - [anon_sym_bit_DASHxor2] = ACTIONS(1620), - [anon_sym_bit_DASHor2] = ACTIONS(1620), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1663), - [aux_sym__immediate_decimal_token4] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1622), - [anon_sym_out_GT] = ACTIONS(1622), - [anon_sym_e_GT] = ACTIONS(1622), - [anon_sym_o_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT] = ACTIONS(1622), - [anon_sym_err_GT_GT] = ACTIONS(1620), - [anon_sym_out_GT_GT] = ACTIONS(1620), - [anon_sym_e_GT_GT] = ACTIONS(1620), - [anon_sym_o_GT_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(480)] = { - [sym_comment] = STATE(480), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_EQ_GT] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1476), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1476), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1476), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1476), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1476), - [anon_sym_err_GT] = ACTIONS(1476), - [anon_sym_out_GT] = ACTIONS(1476), - [anon_sym_e_GT] = ACTIONS(1476), - [anon_sym_o_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT] = ACTIONS(1476), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(481)] = { - [sym_comment] = STATE(481), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [anon_sym_DOT_DOT2] = ACTIONS(1834), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), - [aux_sym__immediate_decimal_token5] = ACTIONS(1836), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(482)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4520), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4766), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(482), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(735), - [aux_sym_record_body_repeat1] = STATE(706), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), - }, - [STATE(483)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_val_entry] = STATE(4887), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), - [sym_comment] = STATE(483), - [aux_sym__types_body_repeat1] = STATE(2189), - [aux_sym_list_body_repeat1] = STATE(532), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [sym__newline] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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(484)] = { - [sym__expr_parenthesized_immediate] = STATE(5070), - [sym_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_DOT_DOT2] = ACTIONS(1838), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1840), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1840), - [sym_filesize_unit] = ACTIONS(1842), - [sym_duration_unit] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(485)] = { - [sym_comment] = STATE(485), - [anon_sym_in] = ACTIONS(777), - [sym__newline] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_err_GT_PIPE] = ACTIONS(777), - [anon_sym_out_GT_PIPE] = ACTIONS(777), - [anon_sym_e_GT_PIPE] = ACTIONS(777), - [anon_sym_o_GT_PIPE] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(777), - [anon_sym_xor2] = ACTIONS(777), - [anon_sym_or2] = ACTIONS(777), - [anon_sym_not_DASHin2] = ACTIONS(777), - [anon_sym_has2] = ACTIONS(777), - [anon_sym_not_DASHhas2] = ACTIONS(777), - [anon_sym_starts_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), - [anon_sym_ends_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), - [anon_sym_EQ_EQ2] = ACTIONS(777), - [anon_sym_BANG_EQ2] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(777), - [anon_sym_GT_EQ2] = ACTIONS(777), - [anon_sym_EQ_TILDE2] = ACTIONS(777), - [anon_sym_BANG_TILDE2] = ACTIONS(777), - [anon_sym_like2] = ACTIONS(777), - [anon_sym_not_DASHlike2] = ACTIONS(777), - [anon_sym_LPAREN2] = ACTIONS(777), - [anon_sym_STAR_STAR2] = ACTIONS(777), - [anon_sym_PLUS_PLUS2] = ACTIONS(777), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(777), - [anon_sym_SLASH_SLASH2] = ACTIONS(777), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(777), - [anon_sym_bit_DASHshr2] = ACTIONS(777), - [anon_sym_bit_DASHand2] = ACTIONS(777), - [anon_sym_bit_DASHxor2] = ACTIONS(777), - [anon_sym_bit_DASHor2] = ACTIONS(777), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(777), - [anon_sym_out_GT_GT] = ACTIONS(777), - [anon_sym_e_GT_GT] = ACTIONS(777), - [anon_sym_o_GT_GT] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), - [sym__unquoted_pattern] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(486)] = { - [sym_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(777), - [anon_sym_in] = ACTIONS(777), - [sym__newline] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_err_GT_PIPE] = ACTIONS(777), - [anon_sym_out_GT_PIPE] = ACTIONS(777), - [anon_sym_e_GT_PIPE] = ACTIONS(777), - [anon_sym_o_GT_PIPE] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(777), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(777), - [anon_sym_xor2] = ACTIONS(777), - [anon_sym_or2] = ACTIONS(777), - [anon_sym_not_DASHin2] = ACTIONS(777), - [anon_sym_has2] = ACTIONS(777), - [anon_sym_not_DASHhas2] = ACTIONS(777), - [anon_sym_starts_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), - [anon_sym_ends_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), - [anon_sym_EQ_EQ2] = ACTIONS(777), - [anon_sym_BANG_EQ2] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(777), - [anon_sym_GT_EQ2] = ACTIONS(777), - [anon_sym_EQ_TILDE2] = ACTIONS(777), - [anon_sym_BANG_TILDE2] = ACTIONS(777), - [anon_sym_like2] = ACTIONS(777), - [anon_sym_not_DASHlike2] = ACTIONS(777), - [anon_sym_LPAREN2] = ACTIONS(777), - [anon_sym_STAR_STAR2] = ACTIONS(777), - [anon_sym_PLUS_PLUS2] = ACTIONS(777), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(777), - [anon_sym_SLASH_SLASH2] = ACTIONS(777), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(777), - [anon_sym_bit_DASHshr2] = ACTIONS(777), - [anon_sym_bit_DASHand2] = ACTIONS(777), - [anon_sym_bit_DASHxor2] = ACTIONS(777), - [anon_sym_bit_DASHor2] = ACTIONS(777), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(777), - [anon_sym_out_GT_GT] = ACTIONS(777), - [anon_sym_e_GT_GT] = ACTIONS(777), - [anon_sym_o_GT_GT] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), - [sym__unquoted_pattern] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(487)] = { - [sym_comment] = STATE(487), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_EQ_GT] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_COLON2] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(488)] = { - [sym_comment] = STATE(488), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_LPAREN2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [sym__unquoted_pattern] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(489)] = { - [sym_comment] = STATE(489), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT_DOT2] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), - [aux_sym__immediate_decimal_token5] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(490)] = { - [sym_comment] = STATE(490), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_PLUS_EQ] = ACTIONS(1852), - [anon_sym_DASH_EQ] = ACTIONS(1852), - [anon_sym_STAR_EQ] = ACTIONS(1852), - [anon_sym_SLASH_EQ] = ACTIONS(1852), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(491)] = { - [sym_comment] = STATE(491), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(492)] = { - [sym_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1818), - [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(493)] = { - [sym_comment] = STATE(493), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [sym__newline] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_err_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_GT_PIPE] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_GT2] = ACTIONS(1856), - [anon_sym_DASH2] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_EQ_GT] = ACTIONS(1854), - [anon_sym_STAR2] = ACTIONS(1856), - [anon_sym_and2] = ACTIONS(1854), - [anon_sym_xor2] = ACTIONS(1854), - [anon_sym_or2] = ACTIONS(1854), - [anon_sym_not_DASHin2] = ACTIONS(1854), - [anon_sym_has2] = ACTIONS(1854), - [anon_sym_not_DASHhas2] = ACTIONS(1854), - [anon_sym_starts_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), - [anon_sym_ends_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), - [anon_sym_EQ_EQ2] = ACTIONS(1854), - [anon_sym_BANG_EQ2] = ACTIONS(1854), - [anon_sym_LT2] = ACTIONS(1856), - [anon_sym_LT_EQ2] = ACTIONS(1854), - [anon_sym_GT_EQ2] = ACTIONS(1854), - [anon_sym_EQ_TILDE2] = ACTIONS(1854), - [anon_sym_BANG_TILDE2] = ACTIONS(1854), - [anon_sym_like2] = ACTIONS(1854), - [anon_sym_not_DASHlike2] = ACTIONS(1854), - [anon_sym_STAR_STAR2] = ACTIONS(1854), - [anon_sym_PLUS_PLUS2] = ACTIONS(1854), - [anon_sym_SLASH2] = ACTIONS(1856), - [anon_sym_mod2] = ACTIONS(1854), - [anon_sym_SLASH_SLASH2] = ACTIONS(1854), - [anon_sym_PLUS2] = ACTIONS(1856), - [anon_sym_bit_DASHshl2] = ACTIONS(1854), - [anon_sym_bit_DASHshr2] = ACTIONS(1854), - [anon_sym_bit_DASHand2] = ACTIONS(1854), - [anon_sym_bit_DASHxor2] = ACTIONS(1854), - [anon_sym_bit_DASHor2] = ACTIONS(1854), - [anon_sym_DOT_DOT2] = ACTIONS(1856), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), - [anon_sym_COLON2] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1854), - [anon_sym_out_GT_GT] = ACTIONS(1854), - [anon_sym_e_GT_GT] = ACTIONS(1854), - [anon_sym_o_GT_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [STATE(499)] = { + [sym_cell_path] = STATE(959), + [sym_path] = STATE(472), + [sym_comment] = STATE(499), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1883), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1883), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1883), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT2] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(494)] = { - [sym_comment] = STATE(494), - [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(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [STATE(500)] = { + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1543), + [anon_sym_in] = ACTIONS(1543), + [sym__newline] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_err_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_GT_PIPE] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1541), + [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(1541), + [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(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [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(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_QMARK2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [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(3), }, - [STATE(495)] = { - [sym_comment] = STATE(495), - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_PLUS_EQ] = ACTIONS(1864), - [anon_sym_DASH_EQ] = ACTIONS(1864), - [anon_sym_STAR_EQ] = ACTIONS(1864), - [anon_sym_SLASH_EQ] = ACTIONS(1864), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1864), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [STATE(501)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(501), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_catch] = ACTIONS(1888), + [anon_sym_finally] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [sym__newline] = ACTIONS(1890), + [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_COLON] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1893), + [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(1893), + [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(1893), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1893), + [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_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(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(496)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4520), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4923), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(496), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(735), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), - }, - [STATE(497)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4775), - [sym__record_key] = STATE(5246), - [sym_comment] = STATE(497), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym_record_body_repeat1] = STATE(706), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [sym__newline] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), - }, - [STATE(498)] = { - [sym_cell_path] = STATE(953), - [sym_path] = STATE(470), - [sym_comment] = STATE(498), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [STATE(502)] = { + [sym_comment] = STATE(502), [anon_sym_in] = ACTIONS(1866), [sym__newline] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1866), @@ -87923,7 +88434,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1866), [anon_sym_LBRACE] = ACTIONS(1866), [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), [anon_sym_STAR2] = ACTIONS(1868), [anon_sym_and2] = ACTIONS(1866), [anon_sym_xor2] = ACTIONS(1866), @@ -87944,6 +88454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1866), [anon_sym_like2] = ACTIONS(1866), [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), [anon_sym_STAR_STAR2] = ACTIONS(1866), [anon_sym_PLUS_PLUS2] = ACTIONS(1866), [anon_sym_SLASH2] = ACTIONS(1868), @@ -87955,7 +88466,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1866), [anon_sym_bit_DASHxor2] = ACTIONS(1866), [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), [anon_sym_err_GT] = ACTIONS(1868), [anon_sym_out_GT] = ACTIONS(1868), [anon_sym_e_GT] = ACTIONS(1868), @@ -87972,816 +88485,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(499)] = { - [sym_cell_path] = STATE(954), - [sym_path] = STATE(470), - [sym_comment] = STATE(499), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), - [anon_sym_in] = ACTIONS(1872), - [sym__newline] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_err_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_GT_PIPE] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_GT2] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_EQ_GT] = ACTIONS(1872), - [anon_sym_STAR2] = ACTIONS(1875), - [anon_sym_and2] = ACTIONS(1872), - [anon_sym_xor2] = ACTIONS(1872), - [anon_sym_or2] = ACTIONS(1872), - [anon_sym_not_DASHin2] = ACTIONS(1872), - [anon_sym_has2] = ACTIONS(1872), - [anon_sym_not_DASHhas2] = ACTIONS(1872), - [anon_sym_starts_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), - [anon_sym_ends_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), - [anon_sym_EQ_EQ2] = ACTIONS(1872), - [anon_sym_BANG_EQ2] = ACTIONS(1872), - [anon_sym_LT2] = ACTIONS(1875), - [anon_sym_LT_EQ2] = ACTIONS(1872), - [anon_sym_GT_EQ2] = ACTIONS(1872), - [anon_sym_EQ_TILDE2] = ACTIONS(1872), - [anon_sym_BANG_TILDE2] = ACTIONS(1872), - [anon_sym_like2] = ACTIONS(1872), - [anon_sym_not_DASHlike2] = ACTIONS(1872), - [anon_sym_STAR_STAR2] = ACTIONS(1872), - [anon_sym_PLUS_PLUS2] = ACTIONS(1872), - [anon_sym_SLASH2] = ACTIONS(1875), - [anon_sym_mod2] = ACTIONS(1872), - [anon_sym_SLASH_SLASH2] = ACTIONS(1872), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_bit_DASHshl2] = ACTIONS(1872), - [anon_sym_bit_DASHshr2] = ACTIONS(1872), - [anon_sym_bit_DASHand2] = ACTIONS(1872), - [anon_sym_bit_DASHxor2] = ACTIONS(1872), - [anon_sym_bit_DASHor2] = ACTIONS(1872), - [anon_sym_DOT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1872), - [anon_sym_out_GT_GT] = ACTIONS(1872), - [anon_sym_e_GT_GT] = ACTIONS(1872), - [anon_sym_o_GT_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(500)] = { - [sym_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(501)] = { - [sym_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(777), - [anon_sym_in] = ACTIONS(777), - [sym__newline] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_err_GT_PIPE] = ACTIONS(777), - [anon_sym_out_GT_PIPE] = ACTIONS(777), - [anon_sym_e_GT_PIPE] = ACTIONS(777), - [anon_sym_o_GT_PIPE] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), - [anon_sym_GT2] = ACTIONS(775), - [anon_sym_DASH2] = ACTIONS(777), - [anon_sym_STAR2] = ACTIONS(775), - [anon_sym_and2] = ACTIONS(777), - [anon_sym_xor2] = ACTIONS(777), - [anon_sym_or2] = ACTIONS(777), - [anon_sym_not_DASHin2] = ACTIONS(777), - [anon_sym_has2] = ACTIONS(777), - [anon_sym_not_DASHhas2] = ACTIONS(777), - [anon_sym_starts_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), - [anon_sym_ends_DASHwith2] = ACTIONS(777), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), - [anon_sym_EQ_EQ2] = ACTIONS(777), - [anon_sym_BANG_EQ2] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(775), - [anon_sym_LT_EQ2] = ACTIONS(777), - [anon_sym_GT_EQ2] = ACTIONS(777), - [anon_sym_EQ_TILDE2] = ACTIONS(777), - [anon_sym_BANG_TILDE2] = ACTIONS(777), - [anon_sym_like2] = ACTIONS(777), - [anon_sym_not_DASHlike2] = ACTIONS(777), - [anon_sym_LPAREN2] = ACTIONS(777), - [anon_sym_STAR_STAR2] = ACTIONS(777), - [anon_sym_PLUS_PLUS2] = ACTIONS(777), - [anon_sym_SLASH2] = ACTIONS(775), - [anon_sym_mod2] = ACTIONS(777), - [anon_sym_SLASH_SLASH2] = ACTIONS(777), - [anon_sym_PLUS2] = ACTIONS(775), - [anon_sym_bit_DASHshl2] = ACTIONS(777), - [anon_sym_bit_DASHshr2] = ACTIONS(777), - [anon_sym_bit_DASHand2] = ACTIONS(777), - [anon_sym_bit_DASHxor2] = ACTIONS(777), - [anon_sym_bit_DASHor2] = ACTIONS(777), - [anon_sym_DOT_DOT2] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), - [anon_sym_DOT_DOT_LT2] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(775), - [sym_duration_unit] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(775), - [anon_sym_out_GT] = ACTIONS(775), - [anon_sym_e_GT] = ACTIONS(775), - [anon_sym_o_GT] = ACTIONS(775), - [anon_sym_err_PLUSout_GT] = ACTIONS(775), - [anon_sym_out_PLUSerr_GT] = ACTIONS(775), - [anon_sym_o_PLUSe_GT] = ACTIONS(775), - [anon_sym_e_PLUSo_GT] = ACTIONS(775), - [anon_sym_err_GT_GT] = ACTIONS(777), - [anon_sym_out_GT_GT] = ACTIONS(777), - [anon_sym_e_GT_GT] = ACTIONS(777), - [anon_sym_o_GT_GT] = ACTIONS(777), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), - [sym__unquoted_pattern] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(502)] = { - [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(868), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_LPAREN2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(866), - [sym_duration_unit] = ACTIONS(868), - [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(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [sym__unquoted_pattern] = ACTIONS(866), + [sym__unquoted_pattern] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [STATE(503)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4776), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(503), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_finally] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1880), - [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_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1883), - [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(1883), - [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(1883), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1883), - [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_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym_record_body_repeat1] = STATE(744), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [sym__newline] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(504)] = { [sym_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_GT2] = ACTIONS(1480), - [anon_sym_DASH2] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1480), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1480), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_like2] = ACTIONS(1482), - [anon_sym_not_DASHlike2] = ACTIONS(1482), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1482), - [anon_sym_SLASH2] = ACTIONS(1480), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1480), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [anon_sym_DOT_DOT2] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), - [anon_sym_QMARK2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1480), - [anon_sym_out_GT] = ACTIONS(1480), - [anon_sym_e_GT] = ACTIONS(1480), - [anon_sym_o_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT] = ACTIONS(1480), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(505)] = { [sym_comment] = STATE(505), - [ts_builtin_sym_end] = 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(1522), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1522), - [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(1522), - [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(1522), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1522), - [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(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), - [anon_sym_QMARK2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1522), - [anon_sym_err_GT] = ACTIONS(1522), - [anon_sym_out_GT] = ACTIONS(1522), - [anon_sym_e_GT] = ACTIONS(1522), - [anon_sym_o_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT] = ACTIONS(1522), - [anon_sym_err_GT_GT] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1895), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [aux_sym__immediate_decimal_token5] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(506)] = { - [sym_cell_path] = STATE(974), - [sym_path] = STATE(470), + [sym_cell_path] = STATE(947), + [sym_path] = STATE(737), [sym_comment] = STATE(506), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), - [anon_sym_in] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_GT2] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_STAR2] = ACTIONS(1887), - [anon_sym_and2] = ACTIONS(1885), - [anon_sym_xor2] = ACTIONS(1885), - [anon_sym_or2] = ACTIONS(1885), - [anon_sym_not_DASHin2] = ACTIONS(1885), - [anon_sym_has2] = ACTIONS(1885), - [anon_sym_not_DASHhas2] = ACTIONS(1885), - [anon_sym_starts_DASHwith2] = ACTIONS(1885), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1885), - [anon_sym_ends_DASHwith2] = ACTIONS(1885), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1885), - [anon_sym_EQ_EQ2] = ACTIONS(1885), - [anon_sym_BANG_EQ2] = ACTIONS(1885), - [anon_sym_LT2] = ACTIONS(1887), - [anon_sym_LT_EQ2] = ACTIONS(1885), - [anon_sym_GT_EQ2] = ACTIONS(1885), - [anon_sym_EQ_TILDE2] = ACTIONS(1885), - [anon_sym_BANG_TILDE2] = ACTIONS(1885), - [anon_sym_like2] = ACTIONS(1885), - [anon_sym_not_DASHlike2] = ACTIONS(1885), - [anon_sym_STAR_STAR2] = ACTIONS(1885), - [anon_sym_PLUS_PLUS2] = ACTIONS(1885), - [anon_sym_SLASH2] = ACTIONS(1887), - [anon_sym_mod2] = ACTIONS(1885), - [anon_sym_SLASH_SLASH2] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_bit_DASHshl2] = ACTIONS(1885), - [anon_sym_bit_DASHshr2] = ACTIONS(1885), - [anon_sym_bit_DASHand2] = ACTIONS(1885), - [anon_sym_bit_DASHxor2] = ACTIONS(1885), - [anon_sym_bit_DASHor2] = ACTIONS(1885), - [anon_sym_DOT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1887), - [anon_sym_out_GT] = ACTIONS(1887), - [anon_sym_e_GT] = ACTIONS(1887), - [anon_sym_o_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT] = ACTIONS(1887), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1899), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(507)] = { - [sym_cell_path] = STATE(772), - [sym_path] = STATE(470), + [sym_cell_path] = STATE(937), + [sym_path] = STATE(737), [sym_comment] = STATE(507), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), - [anon_sym_in] = ACTIONS(1889), - [sym__newline] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_err_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_GT_PIPE] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_GT2] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1889), - [anon_sym_STAR2] = ACTIONS(1891), - [anon_sym_and2] = ACTIONS(1889), - [anon_sym_xor2] = ACTIONS(1889), - [anon_sym_or2] = ACTIONS(1889), - [anon_sym_not_DASHin2] = ACTIONS(1889), - [anon_sym_has2] = ACTIONS(1889), - [anon_sym_not_DASHhas2] = ACTIONS(1889), - [anon_sym_starts_DASHwith2] = ACTIONS(1889), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1889), - [anon_sym_ends_DASHwith2] = ACTIONS(1889), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1889), - [anon_sym_EQ_EQ2] = ACTIONS(1889), - [anon_sym_BANG_EQ2] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LT_EQ2] = ACTIONS(1889), - [anon_sym_GT_EQ2] = ACTIONS(1889), - [anon_sym_EQ_TILDE2] = ACTIONS(1889), - [anon_sym_BANG_TILDE2] = ACTIONS(1889), - [anon_sym_like2] = ACTIONS(1889), - [anon_sym_not_DASHlike2] = ACTIONS(1889), - [anon_sym_STAR_STAR2] = ACTIONS(1889), - [anon_sym_PLUS_PLUS2] = ACTIONS(1889), - [anon_sym_SLASH2] = ACTIONS(1891), - [anon_sym_mod2] = ACTIONS(1889), - [anon_sym_SLASH_SLASH2] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_bit_DASHshl2] = ACTIONS(1889), - [anon_sym_bit_DASHshr2] = ACTIONS(1889), - [anon_sym_bit_DASHand2] = ACTIONS(1889), - [anon_sym_bit_DASHxor2] = ACTIONS(1889), - [anon_sym_bit_DASHor2] = ACTIONS(1889), - [anon_sym_DOT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1889), - [anon_sym_out_GT_GT] = ACTIONS(1889), - [anon_sym_e_GT_GT] = ACTIONS(1889), - [anon_sym_o_GT_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [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_GT2] = ACTIONS(1671), + [anon_sym_DASH2] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1671), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_DOT2] = ACTIONS(1899), + [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(508)] = { - [sym_cell_path] = STATE(978), - [sym_path] = STATE(470), [sym_comment] = STATE(508), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), - [anon_sym_in] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_GT2] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_STAR2] = ACTIONS(1895), - [anon_sym_and2] = ACTIONS(1893), - [anon_sym_xor2] = ACTIONS(1893), - [anon_sym_or2] = ACTIONS(1893), - [anon_sym_not_DASHin2] = ACTIONS(1893), - [anon_sym_has2] = ACTIONS(1893), - [anon_sym_not_DASHhas2] = ACTIONS(1893), - [anon_sym_starts_DASHwith2] = ACTIONS(1893), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1893), - [anon_sym_ends_DASHwith2] = ACTIONS(1893), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1893), - [anon_sym_EQ_EQ2] = ACTIONS(1893), - [anon_sym_BANG_EQ2] = ACTIONS(1893), - [anon_sym_LT2] = ACTIONS(1895), - [anon_sym_LT_EQ2] = ACTIONS(1893), - [anon_sym_GT_EQ2] = ACTIONS(1893), - [anon_sym_EQ_TILDE2] = ACTIONS(1893), - [anon_sym_BANG_TILDE2] = ACTIONS(1893), - [anon_sym_like2] = ACTIONS(1893), - [anon_sym_not_DASHlike2] = ACTIONS(1893), - [anon_sym_STAR_STAR2] = ACTIONS(1893), - [anon_sym_PLUS_PLUS2] = ACTIONS(1893), - [anon_sym_SLASH2] = ACTIONS(1895), - [anon_sym_mod2] = ACTIONS(1893), - [anon_sym_SLASH_SLASH2] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_bit_DASHshl2] = ACTIONS(1893), - [anon_sym_bit_DASHshr2] = ACTIONS(1893), - [anon_sym_bit_DASHand2] = ACTIONS(1893), - [anon_sym_bit_DASHxor2] = ACTIONS(1893), - [anon_sym_bit_DASHor2] = ACTIONS(1893), - [anon_sym_DOT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [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_POUND] = ACTIONS(3), }, [STATE(509)] = { + [sym_cell_path] = STATE(944), + [sym_path] = STATE(472), [sym_comment] = STATE(509), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_GT2] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_EQ_GT] = ACTIONS(1897), - [anon_sym_STAR2] = ACTIONS(1899), - [anon_sym_and2] = ACTIONS(1897), - [anon_sym_xor2] = ACTIONS(1897), - [anon_sym_or2] = ACTIONS(1897), - [anon_sym_not_DASHin2] = ACTIONS(1897), - [anon_sym_has2] = ACTIONS(1897), - [anon_sym_not_DASHhas2] = ACTIONS(1897), - [anon_sym_starts_DASHwith2] = ACTIONS(1897), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1897), - [anon_sym_ends_DASHwith2] = ACTIONS(1897), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1897), - [anon_sym_EQ_EQ2] = ACTIONS(1897), - [anon_sym_BANG_EQ2] = ACTIONS(1897), - [anon_sym_LT2] = ACTIONS(1899), - [anon_sym_LT_EQ2] = ACTIONS(1897), - [anon_sym_GT_EQ2] = ACTIONS(1897), - [anon_sym_EQ_TILDE2] = ACTIONS(1897), - [anon_sym_BANG_TILDE2] = ACTIONS(1897), - [anon_sym_like2] = ACTIONS(1897), - [anon_sym_not_DASHlike2] = ACTIONS(1897), - [anon_sym_STAR_STAR2] = ACTIONS(1897), - [anon_sym_PLUS_PLUS2] = ACTIONS(1897), - [anon_sym_SLASH2] = ACTIONS(1899), - [anon_sym_mod2] = ACTIONS(1897), - [anon_sym_SLASH_SLASH2] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_bit_DASHshl2] = ACTIONS(1897), - [anon_sym_bit_DASHshr2] = ACTIONS(1897), - [anon_sym_bit_DASHand2] = ACTIONS(1897), - [anon_sym_bit_DASHxor2] = ACTIONS(1897), - [anon_sym_bit_DASHor2] = ACTIONS(1897), - [anon_sym_DOT_DOT2] = ACTIONS(1899), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(510)] = { - [sym_cell_path] = STATE(783), - [sym_path] = STATE(470), - [sym_comment] = STATE(510), - [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), [anon_sym_in] = ACTIONS(1901), [sym__newline] = ACTIONS(1901), [anon_sym_SEMI] = ACTIONS(1901), @@ -88831,7 +88980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1901), [anon_sym_bit_DASHxor2] = ACTIONS(1901), [anon_sym_bit_DASHor2] = ACTIONS(1901), - [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_DOT2] = ACTIONS(1886), [anon_sym_err_GT] = ACTIONS(1903), [anon_sym_out_GT] = ACTIONS(1903), [anon_sym_e_GT] = ACTIONS(1903), @@ -88850,9 +88999,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(511)] = { - [sym_comment] = STATE(511), - [anon_sym_if] = ACTIONS(1905), + [STATE(510)] = { + [sym_cell_path] = STATE(748), + [sym_path] = STATE(472), + [sym_comment] = STATE(510), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), [anon_sym_in] = ACTIONS(1905), [sym__newline] = ACTIONS(1905), [anon_sym_SEMI] = ACTIONS(1905), @@ -88902,9 +89053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1905), [anon_sym_bit_DASHxor2] = ACTIONS(1905), [anon_sym_bit_DASHor2] = ACTIONS(1905), - [anon_sym_DOT_DOT2] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1905), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1905), + [anon_sym_DOT2] = ACTIONS(1886), [anon_sym_err_GT] = ACTIONS(1907), [anon_sym_out_GT] = ACTIONS(1907), [anon_sym_e_GT] = ACTIONS(1907), @@ -88923,884 +89072,593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(511)] = { + [sym_cell_path] = STATE(939), + [sym_path] = STATE(472), + [sym_comment] = STATE(511), + [aux_sym__where_predicate_lhs_repeat1] = STATE(438), + [anon_sym_in] = ACTIONS(1909), + [sym__newline] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_err_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_GT_PIPE] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_GT2] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_EQ_GT] = ACTIONS(1909), + [anon_sym_STAR2] = ACTIONS(1911), + [anon_sym_and2] = ACTIONS(1909), + [anon_sym_xor2] = ACTIONS(1909), + [anon_sym_or2] = ACTIONS(1909), + [anon_sym_not_DASHin2] = ACTIONS(1909), + [anon_sym_has2] = ACTIONS(1909), + [anon_sym_not_DASHhas2] = ACTIONS(1909), + [anon_sym_starts_DASHwith2] = ACTIONS(1909), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1909), + [anon_sym_ends_DASHwith2] = ACTIONS(1909), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1909), + [anon_sym_EQ_EQ2] = ACTIONS(1909), + [anon_sym_BANG_EQ2] = ACTIONS(1909), + [anon_sym_LT2] = ACTIONS(1911), + [anon_sym_LT_EQ2] = ACTIONS(1909), + [anon_sym_GT_EQ2] = ACTIONS(1909), + [anon_sym_EQ_TILDE2] = ACTIONS(1909), + [anon_sym_BANG_TILDE2] = ACTIONS(1909), + [anon_sym_like2] = ACTIONS(1909), + [anon_sym_not_DASHlike2] = ACTIONS(1909), + [anon_sym_STAR_STAR2] = ACTIONS(1909), + [anon_sym_PLUS_PLUS2] = ACTIONS(1909), + [anon_sym_SLASH2] = ACTIONS(1911), + [anon_sym_mod2] = ACTIONS(1909), + [anon_sym_SLASH_SLASH2] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(1911), + [anon_sym_bit_DASHshl2] = ACTIONS(1909), + [anon_sym_bit_DASHshr2] = ACTIONS(1909), + [anon_sym_bit_DASHand2] = ACTIONS(1909), + [anon_sym_bit_DASHxor2] = ACTIONS(1909), + [anon_sym_bit_DASHor2] = ACTIONS(1909), + [anon_sym_DOT2] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1911), + [anon_sym_out_GT] = ACTIONS(1911), + [anon_sym_e_GT] = ACTIONS(1911), + [anon_sym_o_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT] = ACTIONS(1911), + [anon_sym_err_GT_GT] = ACTIONS(1909), + [anon_sym_out_GT_GT] = ACTIONS(1909), + [anon_sym_e_GT_GT] = ACTIONS(1909), + [anon_sym_o_GT_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(512)] = { [sym_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT_DOT2] = ACTIONS(1786), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), - [aux_sym__immediate_decimal_token5] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [sym__newline] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_err_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_GT_PIPE] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_GT2] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_EQ_GT] = ACTIONS(1913), + [anon_sym_STAR2] = ACTIONS(1915), + [anon_sym_and2] = ACTIONS(1913), + [anon_sym_xor2] = ACTIONS(1913), + [anon_sym_or2] = ACTIONS(1913), + [anon_sym_not_DASHin2] = ACTIONS(1913), + [anon_sym_has2] = ACTIONS(1913), + [anon_sym_not_DASHhas2] = ACTIONS(1913), + [anon_sym_starts_DASHwith2] = ACTIONS(1913), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1913), + [anon_sym_ends_DASHwith2] = ACTIONS(1913), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1913), + [anon_sym_EQ_EQ2] = ACTIONS(1913), + [anon_sym_BANG_EQ2] = ACTIONS(1913), + [anon_sym_LT2] = ACTIONS(1915), + [anon_sym_LT_EQ2] = ACTIONS(1913), + [anon_sym_GT_EQ2] = ACTIONS(1913), + [anon_sym_EQ_TILDE2] = ACTIONS(1913), + [anon_sym_BANG_TILDE2] = ACTIONS(1913), + [anon_sym_like2] = ACTIONS(1913), + [anon_sym_not_DASHlike2] = ACTIONS(1913), + [anon_sym_STAR_STAR2] = ACTIONS(1913), + [anon_sym_PLUS_PLUS2] = ACTIONS(1913), + [anon_sym_SLASH2] = ACTIONS(1915), + [anon_sym_mod2] = ACTIONS(1913), + [anon_sym_SLASH_SLASH2] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_bit_DASHshl2] = ACTIONS(1913), + [anon_sym_bit_DASHshr2] = ACTIONS(1913), + [anon_sym_bit_DASHand2] = ACTIONS(1913), + [anon_sym_bit_DASHxor2] = ACTIONS(1913), + [anon_sym_bit_DASHor2] = ACTIONS(1913), + [anon_sym_DOT_DOT2] = ACTIONS(1915), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1913), + [anon_sym_out_GT_GT] = ACTIONS(1913), + [anon_sym_e_GT_GT] = ACTIONS(1913), + [anon_sym_o_GT_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), [anon_sym_POUND] = ACTIONS(3), }, [STATE(513)] = { - [sym_cell_path] = STATE(959), - [sym_path] = STATE(703), [sym_comment] = STATE(513), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_DOT2] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(514)] = { - [sym__path_suffix] = STATE(726), + [sym_cell_path] = STATE(989), + [sym_path] = STATE(472), [sym_comment] = STATE(514), - [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_QMARK2] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1917), - [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(438), + [anon_sym_in] = ACTIONS(1917), + [sym__newline] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_err_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_GT_PIPE] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_GT2] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_EQ_GT] = ACTIONS(1917), + [anon_sym_STAR2] = ACTIONS(1919), + [anon_sym_and2] = ACTIONS(1917), + [anon_sym_xor2] = ACTIONS(1917), + [anon_sym_or2] = ACTIONS(1917), + [anon_sym_not_DASHin2] = ACTIONS(1917), + [anon_sym_has2] = ACTIONS(1917), + [anon_sym_not_DASHhas2] = ACTIONS(1917), + [anon_sym_starts_DASHwith2] = ACTIONS(1917), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1917), + [anon_sym_ends_DASHwith2] = ACTIONS(1917), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1917), + [anon_sym_EQ_EQ2] = ACTIONS(1917), + [anon_sym_BANG_EQ2] = ACTIONS(1917), + [anon_sym_LT2] = ACTIONS(1919), + [anon_sym_LT_EQ2] = ACTIONS(1917), + [anon_sym_GT_EQ2] = ACTIONS(1917), + [anon_sym_EQ_TILDE2] = ACTIONS(1917), + [anon_sym_BANG_TILDE2] = ACTIONS(1917), + [anon_sym_like2] = ACTIONS(1917), + [anon_sym_not_DASHlike2] = ACTIONS(1917), + [anon_sym_STAR_STAR2] = ACTIONS(1917), + [anon_sym_PLUS_PLUS2] = ACTIONS(1917), + [anon_sym_SLASH2] = ACTIONS(1919), + [anon_sym_mod2] = ACTIONS(1917), + [anon_sym_SLASH_SLASH2] = ACTIONS(1917), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_bit_DASHshl2] = ACTIONS(1917), + [anon_sym_bit_DASHshr2] = ACTIONS(1917), + [anon_sym_bit_DASHand2] = ACTIONS(1917), + [anon_sym_bit_DASHxor2] = ACTIONS(1917), + [anon_sym_bit_DASHor2] = ACTIONS(1917), + [anon_sym_DOT2] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1917), + [anon_sym_out_GT_GT] = ACTIONS(1917), + [anon_sym_e_GT_GT] = ACTIONS(1917), + [anon_sym_o_GT_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), }, [STATE(515)] = { + [sym_cell_path] = STATE(981), + [sym_path] = STATE(737), [sym_comment] = STATE(515), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1705), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1705), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_like2] = ACTIONS(1703), + [anon_sym_not_DASHlike2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1705), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT2] = ACTIONS(1899), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), [anon_sym_POUND] = ACTIONS(3), }, [STATE(516)] = { [sym_comment] = STATE(516), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [anon_sym_DOT_DOT2] = ACTIONS(1834), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), + [anon_sym_in] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_GT2] = ACTIONS(1923), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_STAR2] = ACTIONS(1923), + [anon_sym_and2] = ACTIONS(1921), + [anon_sym_xor2] = ACTIONS(1921), + [anon_sym_or2] = ACTIONS(1921), + [anon_sym_not_DASHin2] = ACTIONS(1921), + [anon_sym_has2] = ACTIONS(1921), + [anon_sym_not_DASHhas2] = ACTIONS(1921), + [anon_sym_starts_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), + [anon_sym_ends_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), + [anon_sym_EQ_EQ2] = ACTIONS(1921), + [anon_sym_BANG_EQ2] = ACTIONS(1921), + [anon_sym_LT2] = ACTIONS(1923), + [anon_sym_LT_EQ2] = ACTIONS(1921), + [anon_sym_GT_EQ2] = ACTIONS(1921), + [anon_sym_EQ_TILDE2] = ACTIONS(1921), + [anon_sym_BANG_TILDE2] = ACTIONS(1921), + [anon_sym_like2] = ACTIONS(1921), + [anon_sym_not_DASHlike2] = ACTIONS(1921), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_STAR_STAR2] = ACTIONS(1921), + [anon_sym_PLUS_PLUS2] = ACTIONS(1921), + [anon_sym_SLASH2] = ACTIONS(1923), + [anon_sym_mod2] = ACTIONS(1921), + [anon_sym_SLASH_SLASH2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1923), + [anon_sym_bit_DASHshl2] = ACTIONS(1921), + [anon_sym_bit_DASHshr2] = ACTIONS(1921), + [anon_sym_bit_DASHand2] = ACTIONS(1921), + [anon_sym_bit_DASHxor2] = ACTIONS(1921), + [anon_sym_bit_DASHor2] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1923), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1923), + [anon_sym_out_GT] = ACTIONS(1923), + [anon_sym_e_GT] = ACTIONS(1923), + [anon_sym_o_GT] = ACTIONS(1923), + [anon_sym_err_PLUSout_GT] = ACTIONS(1923), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), + [anon_sym_o_PLUSe_GT] = ACTIONS(1923), + [anon_sym_e_PLUSo_GT] = ACTIONS(1923), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [sym__unquoted_pattern] = ACTIONS(1923), [anon_sym_POUND] = ACTIONS(3), }, [STATE(517)] = { [sym_comment] = STATE(517), - [anon_sym_in] = ACTIONS(1919), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_GT2] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_STAR2] = ACTIONS(1921), - [anon_sym_and2] = ACTIONS(1919), - [anon_sym_xor2] = ACTIONS(1919), - [anon_sym_or2] = ACTIONS(1919), - [anon_sym_not_DASHin2] = ACTIONS(1919), - [anon_sym_has2] = ACTIONS(1919), - [anon_sym_not_DASHhas2] = ACTIONS(1919), - [anon_sym_starts_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), - [anon_sym_ends_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), - [anon_sym_EQ_EQ2] = ACTIONS(1919), - [anon_sym_BANG_EQ2] = ACTIONS(1919), - [anon_sym_LT2] = ACTIONS(1921), - [anon_sym_LT_EQ2] = ACTIONS(1919), - [anon_sym_GT_EQ2] = ACTIONS(1919), - [anon_sym_EQ_TILDE2] = ACTIONS(1919), - [anon_sym_BANG_TILDE2] = ACTIONS(1919), - [anon_sym_like2] = ACTIONS(1919), - [anon_sym_not_DASHlike2] = ACTIONS(1919), - [anon_sym_LPAREN2] = ACTIONS(1919), - [anon_sym_STAR_STAR2] = ACTIONS(1919), - [anon_sym_PLUS_PLUS2] = ACTIONS(1919), - [anon_sym_SLASH2] = ACTIONS(1921), - [anon_sym_mod2] = ACTIONS(1919), - [anon_sym_SLASH_SLASH2] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_bit_DASHshl2] = ACTIONS(1919), - [anon_sym_bit_DASHshr2] = ACTIONS(1919), - [anon_sym_bit_DASHand2] = ACTIONS(1919), - [anon_sym_bit_DASHxor2] = ACTIONS(1919), - [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_DOT_DOT2] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [sym__unquoted_pattern] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1776), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(518)] = { + [sym_cell_path] = STATE(758), + [sym_path] = STATE(472), [sym_comment] = STATE(518), - [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(438), + [anon_sym_in] = ACTIONS(1925), + [sym__newline] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_err_GT_PIPE] = ACTIONS(1925), + [anon_sym_out_GT_PIPE] = ACTIONS(1925), + [anon_sym_e_GT_PIPE] = ACTIONS(1925), + [anon_sym_o_GT_PIPE] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_GT2] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_EQ_GT] = ACTIONS(1925), + [anon_sym_STAR2] = ACTIONS(1927), + [anon_sym_and2] = ACTIONS(1925), + [anon_sym_xor2] = ACTIONS(1925), + [anon_sym_or2] = ACTIONS(1925), + [anon_sym_not_DASHin2] = ACTIONS(1925), + [anon_sym_has2] = ACTIONS(1925), + [anon_sym_not_DASHhas2] = ACTIONS(1925), + [anon_sym_starts_DASHwith2] = ACTIONS(1925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1925), + [anon_sym_ends_DASHwith2] = ACTIONS(1925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1925), + [anon_sym_EQ_EQ2] = ACTIONS(1925), + [anon_sym_BANG_EQ2] = ACTIONS(1925), + [anon_sym_LT2] = ACTIONS(1927), + [anon_sym_LT_EQ2] = ACTIONS(1925), + [anon_sym_GT_EQ2] = ACTIONS(1925), + [anon_sym_EQ_TILDE2] = ACTIONS(1925), + [anon_sym_BANG_TILDE2] = ACTIONS(1925), + [anon_sym_like2] = ACTIONS(1925), + [anon_sym_not_DASHlike2] = ACTIONS(1925), + [anon_sym_STAR_STAR2] = ACTIONS(1925), + [anon_sym_PLUS_PLUS2] = ACTIONS(1925), + [anon_sym_SLASH2] = ACTIONS(1927), + [anon_sym_mod2] = ACTIONS(1925), + [anon_sym_SLASH_SLASH2] = ACTIONS(1925), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_bit_DASHshl2] = ACTIONS(1925), + [anon_sym_bit_DASHshr2] = ACTIONS(1925), + [anon_sym_bit_DASHand2] = ACTIONS(1925), + [anon_sym_bit_DASHxor2] = ACTIONS(1925), + [anon_sym_bit_DASHor2] = ACTIONS(1925), + [anon_sym_DOT2] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1927), + [anon_sym_out_GT] = ACTIONS(1927), + [anon_sym_e_GT] = ACTIONS(1927), + [anon_sym_o_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT] = ACTIONS(1927), + [anon_sym_err_GT_GT] = ACTIONS(1925), + [anon_sym_out_GT_GT] = ACTIONS(1925), + [anon_sym_e_GT_GT] = ACTIONS(1925), + [anon_sym_o_GT_GT] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(3), }, [STATE(519)] = { + [sym__path_suffix] = STATE(742), [sym_comment] = STATE(519), - [ts_builtin_sym_end] = 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(1530), - [anon_sym_DASH2] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_STAR2] = ACTIONS(1530), - [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(1530), - [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(1530), - [anon_sym_mod2] = ACTIONS(1532), - [anon_sym_SLASH_SLASH2] = ACTIONS(1532), - [anon_sym_PLUS2] = ACTIONS(1530), - [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(1530), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), - [anon_sym_QMARK2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DOT2] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [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(3), - }, - [STATE(520)] = { - [sym_cell_path] = STATE(948), - [sym_path] = STATE(703), - [sym_comment] = STATE(520), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1691), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1691), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1691), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1691), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1689), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1689), - [anon_sym_DOT2] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1691), - [anon_sym_out_GT] = ACTIONS(1691), - [anon_sym_e_GT] = ACTIONS(1691), - [anon_sym_o_GT] = ACTIONS(1691), - [anon_sym_err_PLUSout_GT] = ACTIONS(1691), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), - [anon_sym_o_PLUSe_GT] = ACTIONS(1691), - [anon_sym_e_PLUSo_GT] = ACTIONS(1691), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(521)] = { - [sym_comment] = STATE(521), - [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(1923), - [aux_sym__immediate_decimal_token5] = ACTIONS(1925), - [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(522)] = { - [sym_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_err_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_GT_PIPE] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), - [anon_sym_GT2] = ACTIONS(1516), - [anon_sym_DASH2] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_STAR2] = ACTIONS(1516), - [anon_sym_and2] = ACTIONS(1518), - [anon_sym_xor2] = ACTIONS(1518), - [anon_sym_or2] = ACTIONS(1518), - [anon_sym_not_DASHin2] = ACTIONS(1518), - [anon_sym_has2] = ACTIONS(1518), - [anon_sym_not_DASHhas2] = ACTIONS(1518), - [anon_sym_starts_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), - [anon_sym_ends_DASHwith2] = ACTIONS(1518), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), - [anon_sym_EQ_EQ2] = ACTIONS(1518), - [anon_sym_BANG_EQ2] = ACTIONS(1518), - [anon_sym_LT2] = ACTIONS(1516), - [anon_sym_LT_EQ2] = ACTIONS(1518), - [anon_sym_GT_EQ2] = ACTIONS(1518), - [anon_sym_EQ_TILDE2] = ACTIONS(1518), - [anon_sym_BANG_TILDE2] = ACTIONS(1518), - [anon_sym_like2] = ACTIONS(1518), - [anon_sym_not_DASHlike2] = ACTIONS(1518), - [anon_sym_STAR_STAR2] = ACTIONS(1518), - [anon_sym_PLUS_PLUS2] = ACTIONS(1518), - [anon_sym_SLASH2] = ACTIONS(1516), - [anon_sym_mod2] = ACTIONS(1518), - [anon_sym_SLASH_SLASH2] = ACTIONS(1518), - [anon_sym_PLUS2] = ACTIONS(1516), - [anon_sym_bit_DASHshl2] = ACTIONS(1518), - [anon_sym_bit_DASHshr2] = ACTIONS(1518), - [anon_sym_bit_DASHand2] = ACTIONS(1518), - [anon_sym_bit_DASHxor2] = ACTIONS(1518), - [anon_sym_bit_DASHor2] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), - [anon_sym_QMARK2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DOT2] = ACTIONS(1516), - [anon_sym_err_GT] = ACTIONS(1516), - [anon_sym_out_GT] = ACTIONS(1516), - [anon_sym_e_GT] = ACTIONS(1516), - [anon_sym_o_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT] = ACTIONS(1516), - [anon_sym_err_GT_GT] = ACTIONS(1518), - [anon_sym_out_GT_GT] = ACTIONS(1518), - [anon_sym_e_GT_GT] = ACTIONS(1518), - [anon_sym_o_GT_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(523)] = { - [sym_comment] = STATE(523), - [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_GT2] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_LBRACE] = 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_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = 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(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(524)] = { - [sym_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1474), [anon_sym_in] = ACTIONS(1474), [sym__newline] = ACTIONS(1474), @@ -89816,7 +89674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), [anon_sym_GT2] = ACTIONS(1472), [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_STAR2] = ACTIONS(1472), [anon_sym_and2] = ACTIONS(1474), [anon_sym_xor2] = ACTIONS(1474), @@ -89851,8 +89708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1472), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1931), [anon_sym_DOT2] = ACTIONS(1472), [anon_sym_err_GT] = ACTIONS(1472), [anon_sym_out_GT] = ACTIONS(1472), @@ -89872,28950 +89729,28140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(520)] = { + [sym_comment] = STATE(520), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_in] = ACTIONS(1933), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_GT2] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_EQ_GT] = ACTIONS(1933), + [anon_sym_STAR2] = ACTIONS(1935), + [anon_sym_and2] = ACTIONS(1933), + [anon_sym_xor2] = ACTIONS(1933), + [anon_sym_or2] = ACTIONS(1933), + [anon_sym_not_DASHin2] = ACTIONS(1933), + [anon_sym_has2] = ACTIONS(1933), + [anon_sym_not_DASHhas2] = ACTIONS(1933), + [anon_sym_starts_DASHwith2] = ACTIONS(1933), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1933), + [anon_sym_ends_DASHwith2] = ACTIONS(1933), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1933), + [anon_sym_EQ_EQ2] = ACTIONS(1933), + [anon_sym_BANG_EQ2] = ACTIONS(1933), + [anon_sym_LT2] = ACTIONS(1935), + [anon_sym_LT_EQ2] = ACTIONS(1933), + [anon_sym_GT_EQ2] = ACTIONS(1933), + [anon_sym_EQ_TILDE2] = ACTIONS(1933), + [anon_sym_BANG_TILDE2] = ACTIONS(1933), + [anon_sym_like2] = ACTIONS(1933), + [anon_sym_not_DASHlike2] = ACTIONS(1933), + [anon_sym_STAR_STAR2] = ACTIONS(1933), + [anon_sym_PLUS_PLUS2] = ACTIONS(1933), + [anon_sym_SLASH2] = ACTIONS(1935), + [anon_sym_mod2] = ACTIONS(1933), + [anon_sym_SLASH_SLASH2] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1935), + [anon_sym_bit_DASHshl2] = ACTIONS(1933), + [anon_sym_bit_DASHshr2] = ACTIONS(1933), + [anon_sym_bit_DASHand2] = ACTIONS(1933), + [anon_sym_bit_DASHxor2] = ACTIONS(1933), + [anon_sym_bit_DASHor2] = ACTIONS(1933), + [anon_sym_DOT_DOT2] = ACTIONS(1935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1933), + [anon_sym_err_GT] = ACTIONS(1935), + [anon_sym_out_GT] = ACTIONS(1935), + [anon_sym_e_GT] = ACTIONS(1935), + [anon_sym_o_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT] = ACTIONS(1935), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(521)] = { + [sym_comment] = STATE(521), + [anon_sym_EQ] = ACTIONS(1937), + [anon_sym_PLUS_EQ] = ACTIONS(1939), + [anon_sym_DASH_EQ] = ACTIONS(1939), + [anon_sym_STAR_EQ] = ACTIONS(1939), + [anon_sym_SLASH_EQ] = ACTIONS(1939), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1939), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(522)] = { + [sym_comment] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(523)] = { + [sym_comment] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1776), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token1] = ACTIONS(1941), + [aux_sym__immediate_decimal_token5] = ACTIONS(1943), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(524)] = { + [sym_comment] = STATE(524), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_in] = ACTIONS(793), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(791), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(791), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(791), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(791), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(791), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(791), + [sym_duration_unit] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(791), + [anon_sym_out_GT] = ACTIONS(791), + [anon_sym_e_GT] = ACTIONS(791), + [anon_sym_o_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT] = ACTIONS(791), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [sym__unquoted_pattern] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(525)] = { - [sym_cell_path] = STATE(926), - [sym_path] = STATE(703), [sym_comment] = STATE(525), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [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(1913), - [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_EQ] = ACTIONS(1945), + [anon_sym_PLUS_EQ] = ACTIONS(1947), + [anon_sym_DASH_EQ] = ACTIONS(1947), + [anon_sym_STAR_EQ] = ACTIONS(1947), + [anon_sym_SLASH_EQ] = ACTIONS(1947), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(526)] = { [sym_comment] = STATE(526), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_PLUS_EQ] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1929), - [anon_sym_STAR_EQ] = ACTIONS(1929), - [anon_sym_SLASH_EQ] = ACTIONS(1929), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1929), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1588), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1588), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(805), + [anon_sym_in] = ACTIONS(805), + [sym__newline] = ACTIONS(805), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(805), + [anon_sym_err_GT_PIPE] = ACTIONS(805), + [anon_sym_out_GT_PIPE] = ACTIONS(805), + [anon_sym_e_GT_PIPE] = ACTIONS(805), + [anon_sym_o_GT_PIPE] = ACTIONS(805), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(805), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(805), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(805), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(805), + [anon_sym_GT2] = ACTIONS(803), + [anon_sym_DASH2] = ACTIONS(805), + [anon_sym_STAR2] = ACTIONS(803), + [anon_sym_and2] = ACTIONS(805), + [anon_sym_xor2] = ACTIONS(805), + [anon_sym_or2] = ACTIONS(805), + [anon_sym_not_DASHin2] = ACTIONS(805), + [anon_sym_has2] = ACTIONS(805), + [anon_sym_not_DASHhas2] = ACTIONS(805), + [anon_sym_starts_DASHwith2] = ACTIONS(805), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(805), + [anon_sym_ends_DASHwith2] = ACTIONS(805), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(805), + [anon_sym_EQ_EQ2] = ACTIONS(805), + [anon_sym_BANG_EQ2] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(803), + [anon_sym_LT_EQ2] = ACTIONS(805), + [anon_sym_GT_EQ2] = ACTIONS(805), + [anon_sym_EQ_TILDE2] = ACTIONS(805), + [anon_sym_BANG_TILDE2] = ACTIONS(805), + [anon_sym_like2] = ACTIONS(805), + [anon_sym_not_DASHlike2] = ACTIONS(805), + [anon_sym_LPAREN2] = ACTIONS(805), + [anon_sym_STAR_STAR2] = ACTIONS(805), + [anon_sym_PLUS_PLUS2] = ACTIONS(805), + [anon_sym_SLASH2] = ACTIONS(803), + [anon_sym_mod2] = ACTIONS(805), + [anon_sym_SLASH_SLASH2] = ACTIONS(805), + [anon_sym_PLUS2] = ACTIONS(803), + [anon_sym_bit_DASHshl2] = ACTIONS(805), + [anon_sym_bit_DASHshr2] = ACTIONS(805), + [anon_sym_bit_DASHand2] = ACTIONS(805), + [anon_sym_bit_DASHxor2] = ACTIONS(805), + [anon_sym_bit_DASHor2] = ACTIONS(805), + [anon_sym_DOT_DOT2] = ACTIONS(803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(805), + [sym_filesize_unit] = ACTIONS(803), + [sym_duration_unit] = ACTIONS(805), + [anon_sym_err_GT] = ACTIONS(803), + [anon_sym_out_GT] = ACTIONS(803), + [anon_sym_e_GT] = ACTIONS(803), + [anon_sym_o_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT] = ACTIONS(803), + [anon_sym_err_GT_GT] = ACTIONS(805), + [anon_sym_out_GT_GT] = ACTIONS(805), + [anon_sym_e_GT_GT] = ACTIONS(805), + [anon_sym_o_GT_GT] = ACTIONS(805), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(805), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(805), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(805), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(805), + [sym__unquoted_pattern] = ACTIONS(803), [anon_sym_POUND] = ACTIONS(3), }, [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1213), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1234), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(761), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(528)] = { + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2052), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(528), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [sym__unquoted_pattern] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1230), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2053), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(881), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(530)] = { + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2055), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(530), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_finally] = ACTIONS(1965), - [anon_sym_in] = ACTIONS(1965), - [sym__newline] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_GT2] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_STAR2] = ACTIONS(1967), - [anon_sym_and2] = ACTIONS(1965), - [anon_sym_xor2] = ACTIONS(1965), - [anon_sym_or2] = ACTIONS(1965), - [anon_sym_not_DASHin2] = ACTIONS(1965), - [anon_sym_has2] = ACTIONS(1965), - [anon_sym_not_DASHhas2] = ACTIONS(1965), - [anon_sym_starts_DASHwith2] = ACTIONS(1965), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1965), - [anon_sym_ends_DASHwith2] = ACTIONS(1965), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1965), - [anon_sym_EQ_EQ2] = ACTIONS(1965), - [anon_sym_BANG_EQ2] = ACTIONS(1965), - [anon_sym_LT2] = ACTIONS(1967), - [anon_sym_LT_EQ2] = ACTIONS(1965), - [anon_sym_GT_EQ2] = ACTIONS(1965), - [anon_sym_EQ_TILDE2] = ACTIONS(1965), - [anon_sym_BANG_TILDE2] = ACTIONS(1965), - [anon_sym_like2] = ACTIONS(1965), - [anon_sym_not_DASHlike2] = ACTIONS(1965), - [anon_sym_STAR_STAR2] = ACTIONS(1965), - [anon_sym_PLUS_PLUS2] = ACTIONS(1965), - [anon_sym_SLASH2] = ACTIONS(1967), - [anon_sym_mod2] = ACTIONS(1965), - [anon_sym_SLASH_SLASH2] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1967), - [anon_sym_bit_DASHshl2] = ACTIONS(1965), - [anon_sym_bit_DASHshr2] = ACTIONS(1965), - [anon_sym_bit_DASHand2] = ACTIONS(1965), - [anon_sym_bit_DASHxor2] = ACTIONS(1965), - [anon_sym_bit_DASHor2] = ACTIONS(1965), - [anon_sym_err_GT] = ACTIONS(1967), - [anon_sym_out_GT] = ACTIONS(1967), - [anon_sym_e_GT] = ACTIONS(1967), - [anon_sym_o_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT] = ACTIONS(1967), - [anon_sym_err_GT_GT] = ACTIONS(1965), - [anon_sym_out_GT_GT] = ACTIONS(1965), - [anon_sym_e_GT_GT] = ACTIONS(1965), - [anon_sym_o_GT_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1233), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2057), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(883), + [sym__unquoted_with_expr] = STATE(1073), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(532)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_val_entry] = STATE(4756), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(552), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1275), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(532), - [aux_sym_list_body_repeat1] = STATE(534), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1280), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1140), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_val_entry] = STATE(4872), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_list_body_repeat1] = STATE(537), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(534)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_val_entry] = STATE(4950), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), + [aux_sym__repeat_newline] = STATE(554), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1154), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(838), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(534), - [aux_sym_list_body_repeat1] = STATE(534), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = ACTIONS(1969), - [anon_sym_null] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1996), - [anon_sym_DOT_DOT_LT] = ACTIONS(1996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2005), - [aux_sym__val_number_decimal_token3] = ACTIONS(2008), - [aux_sym__val_number_decimal_token4] = ACTIONS(2008), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [anon_sym_0b] = ACTIONS(2014), - [anon_sym_0o] = ACTIONS(2017), - [anon_sym_0x] = ACTIONS(2017), - [sym_val_date] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2038), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(683), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1184), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(899), - [sym__unquoted_with_expr] = STATE(1043), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_val_entry] = STATE(4754), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_list_body_repeat1] = STATE(537), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(686), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(904), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), + [aux_sym__immediate_decimal_token5] = ACTIONS(1989), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(687), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1194), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(906), - [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_expr_parenthesized] = STATE(4216), + [sym__spread_parenthesized] = STATE(5037), + [sym_val_range] = STATE(4990), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(4990), + [sym_val_nothing] = STATE(4854), + [sym_val_bool] = STATE(4482), + [sym__spread_variable] = STATE(5024), + [sym_val_variable] = STATE(4196), + [sym_val_cellpath] = STATE(4854), + [sym_val_number] = STATE(4854), + [sym__val_number_decimal] = STATE(3713), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4854), + [sym_val_filesize] = STATE(4854), + [sym_val_binary] = STATE(4854), + [sym_val_string] = STATE(4854), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_interpolated] = STATE(4854), + [sym__inter_single_quotes] = STATE(4926), + [sym__inter_double_quotes] = STATE(4927), + [sym_val_list] = STATE(4854), + [sym__spread_list] = STATE(5037), + [sym_val_entry] = STATE(4944), + [sym_val_record] = STATE(4854), + [sym_val_table] = STATE(4854), + [sym_val_closure] = STATE(4854), + [sym__unquoted_in_list] = STATE(4529), + [sym__unquoted_in_list_with_expr] = STATE(4990), + [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_list_body_repeat1] = STATE(537), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [anon_sym_null] = ACTIONS(1994), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2018), + [anon_sym_DOT_DOT_LT] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2024), + [aux_sym__val_number_decimal_token2] = ACTIONS(2027), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2033), + [aux_sym__val_number_token2] = ACTIONS(2033), + [aux_sym__val_number_token3] = ACTIONS(2033), + [anon_sym_0b] = ACTIONS(2036), + [anon_sym_0o] = ACTIONS(2039), + [anon_sym_0x] = ACTIONS(2039), + [sym_val_date] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2045), + [anon_sym_SQUOTE] = ACTIONS(2048), + [anon_sym_BQUOTE] = ACTIONS(2051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2060), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2066), }, [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(689), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1196), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(636), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2116), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(909), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(924), + [sym__unquoted_with_expr] = STATE(1148), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2061), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(899), - [sym__unquoted_with_expr] = STATE(1043), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(735), + [aux_sym__pipe_separator] = STATE(652), [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_export] = ACTIONS(2069), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [aux_sym_cmd_identifier_token1] = ACTIONS(2069), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_catch] = ACTIONS(2071), + [anon_sym_finally] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_in] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [anon_sym_null] = ACTIONS(2071), + [aux_sym_cmd_identifier_token3] = ACTIONS(2071), + [aux_sym_cmd_identifier_token4] = ACTIONS(2071), + [aux_sym_cmd_identifier_token5] = ACTIONS(2071), + [sym__newline] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_err_GT_PIPE] = ACTIONS(2075), + [anon_sym_out_GT_PIPE] = ACTIONS(2075), + [anon_sym_e_GT_PIPE] = ACTIONS(2075), + [anon_sym_o_GT_PIPE] = ACTIONS(2075), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2075), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2075), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2075), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_DASH2] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(2071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), + [anon_sym_DOT_DOT_LT] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2069), + [aux_sym__val_number_decimal_token2] = ACTIONS(2071), + [aux_sym__val_number_decimal_token3] = ACTIONS(2071), + [aux_sym__val_number_decimal_token4] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2071), + [aux_sym__val_number_token2] = ACTIONS(2071), + [aux_sym__val_number_token3] = ACTIONS(2071), + [anon_sym_0b] = ACTIONS(2069), + [anon_sym_0o] = ACTIONS(2069), + [anon_sym_0x] = ACTIONS(2069), + [sym_val_date] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_BQUOTE] = ACTIONS(2071), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(2071), + [anon_sym_PERCENT] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2071), }, [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(637), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2117), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(904), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(926), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(540), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2063), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1252), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(906), - [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2065), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1261), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(909), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1048), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2067), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1267), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(913), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1050), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(561), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2068), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1271), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(915), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2069), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1278), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(897), - [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2070), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1283), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(902), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1059), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1155), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(911), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2072), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1159), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(791), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2073), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1062), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(792), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(866), [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2074), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1166), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1065), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2075), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1170), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(881), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(691), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1174), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(913), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(692), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2118), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(915), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(927), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1240), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1177), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(883), + [sym__unquoted_with_expr] = STATE(1073), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1248), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(639), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2119), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2094), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1276), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(924), + [sym__unquoted_with_expr] = STATE(1148), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2096), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1284), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(755), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(926), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2098), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1161), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(756), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(927), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2100), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(672), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1232), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2102), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(673), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1269), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(766), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2104), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(674), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1179), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1119), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2106), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(678), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1229), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1122), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2109), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(640), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1128), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1130), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(680), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2111), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(681), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1139), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1138), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(683), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1288), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1140), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(790), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2120), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2121), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(1146), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2125), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(684), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1213), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(1040), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(583), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(527), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1281), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1053), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(794), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(584), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2129), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(686), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1205), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2122), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(748), - [sym__unquoted_with_expr] = STATE(1151), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2131), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2123), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(752), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2136), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(589), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1594), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1082), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(924), + [sym__unquoted_with_expr] = STATE(1148), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2137), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(590), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1595), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1085), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(926), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2138), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(591), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1596), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(894), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(927), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2140), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(592), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1597), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(896), - [sym__unquoted_with_expr] = STATE(1121), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(993), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(593), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1598), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(905), - [sym__unquoted_with_expr] = STATE(1005), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2142), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(594), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(922), - [sym__unquoted_with_expr] = STATE(1041), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2145), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(595), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(759), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2148), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(596), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(761), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2150), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(597), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1139), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(603), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1203), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(897), - [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(790), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(599), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1604), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(600), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(794), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(601), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1606), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2079), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_path] = STATE(737), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym__where_predicate_lhs_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1577), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1577), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_like2] = ACTIONS(1579), + [anon_sym_not_DASHlike2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1577), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1577), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), + [anon_sym_DOT2] = ACTIONS(1899), + [anon_sym_err_GT] = ACTIONS(1577), + [anon_sym_out_GT] = ACTIONS(1577), + [anon_sym_e_GT] = ACTIONS(1577), + [anon_sym_o_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT] = ACTIONS(1577), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2087), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1139), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2090), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2125), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(790), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2092), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1607), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2108), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1542), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1008), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1610), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2133), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1612), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2135), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1614), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1121), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1616), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(844), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1618), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(850), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1131), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1271), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1620), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1134), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(597)] = { + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1138), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1141), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT_DOT2] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), - [aux_sym__immediate_decimal_token5] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(685), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1206), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1622), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(902), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1146), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(688), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1059), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1624), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(911), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1150), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(681), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1208), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1626), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(791), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1274), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1628), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1278), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(618), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1705), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1267), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(619), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1631), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1122), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1008), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(620), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1632), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(533), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1210), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(621), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1633), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(663), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1211), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(622), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1634), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1065), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(664), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1212), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1635), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(624), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1636), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(625), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1637), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(626), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1013), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(899), - [sym__unquoted_with_expr] = STATE(1043), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(625), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1592), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(696), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1638), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(904), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(693), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(628), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1639), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(906), - [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1594), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(629), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1640), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(909), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(630), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1641), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(913), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(838), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(615)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1596), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(915), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(3624), + [aux_sym__pipe_separator] = STATE(652), [sym_comment] = STATE(615), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_export] = ACTIONS(2095), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [aux_sym_cmd_identifier_token1] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_catch] = ACTIONS(2097), + [anon_sym_finally] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token3] = ACTIONS(2097), + [aux_sym_cmd_identifier_token4] = ACTIONS(2097), + [aux_sym_cmd_identifier_token5] = ACTIONS(2097), + [sym__newline] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_err_GT_PIPE] = ACTIONS(2075), + [anon_sym_out_GT_PIPE] = ACTIONS(2075), + [anon_sym_e_GT_PIPE] = ACTIONS(2075), + [anon_sym_o_GT_PIPE] = ACTIONS(2075), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2075), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2075), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2075), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_DASH2] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_where] = ACTIONS(2097), + [aux_sym_expr_unary_token1] = ACTIONS(2097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2095), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2097), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(629), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(646), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(897), - [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(630), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1598), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(647), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2128), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(902), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(794), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(618)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1059), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1654), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(911), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(618), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1656), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(791), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1048), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1600), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1658), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1050), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1660), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1065), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1662), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1160), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1664), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(844), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1666), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(625)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1668), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(755), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(625), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1062), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(546), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1175), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(766), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1672), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1119), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(881), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(629)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1615), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1674), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1122), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(629), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(630)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1617), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1676), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1128), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(883), + [sym__unquoted_with_expr] = STATE(1073), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(630), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1130), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2129), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1619), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1138), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_path] = STATE(737), [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym__where_predicate_lhs_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(2101), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1621), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1140), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [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_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_LPAREN2] = ACTIONS(2108), + [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(2110), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2112), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2112), + [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), + [sym__unquoted_pattern] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1623), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(1146), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_DOT_DOT2] = ACTIONS(2120), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), + [sym__unquoted_pattern] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1625), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(548), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1207), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(1040), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1627), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2135), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1053), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(651), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2137), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(652), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1542), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2139), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(748), - [sym__unquoted_with_expr] = STATE(1151), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(653), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1629), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2141), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(752), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(654), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1705), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2143), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1082), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1121), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(655), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1631), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2145), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1085), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(642)] = { - [aux_sym__repeat_newline] = STATE(656), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2147), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(894), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1131), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(642), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(657), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1633), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2149), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(896), - [sym__unquoted_with_expr] = STATE(1121), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1134), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(658), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(993), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1138), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(905), - [sym__unquoted_with_expr] = STATE(1005), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1141), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(645)] = { - [aux_sym__repeat_newline] = STATE(659), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2151), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(922), - [sym__unquoted_with_expr] = STATE(1041), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1146), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(645), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(660), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2153), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(759), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1150), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(661), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1637), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2155), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(761), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(662), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(850), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_catch] = ACTIONS(2126), + [anon_sym_finally] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [sym__newline] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_err_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_GT_PIPE] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), + [anon_sym_COLON] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(2126), + [anon_sym_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2126), + [anon_sym_xor2] = ACTIONS(2126), + [anon_sym_or2] = ACTIONS(2126), + [anon_sym_not_DASHin2] = ACTIONS(2126), + [anon_sym_has2] = ACTIONS(2126), + [anon_sym_not_DASHhas2] = ACTIONS(2126), + [anon_sym_starts_DASHwith2] = ACTIONS(2126), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2126), + [anon_sym_ends_DASHwith2] = ACTIONS(2126), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2126), + [anon_sym_EQ_EQ2] = ACTIONS(2126), + [anon_sym_BANG_EQ2] = ACTIONS(2126), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2126), + [anon_sym_GT_EQ2] = ACTIONS(2126), + [anon_sym_EQ_TILDE2] = ACTIONS(2126), + [anon_sym_BANG_TILDE2] = ACTIONS(2126), + [anon_sym_like2] = ACTIONS(2126), + [anon_sym_not_DASHlike2] = ACTIONS(2126), + [anon_sym_STAR_STAR2] = ACTIONS(2126), + [anon_sym_PLUS_PLUS2] = ACTIONS(2126), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2126), + [anon_sym_SLASH_SLASH2] = ACTIONS(2126), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2126), + [anon_sym_bit_DASHshr2] = ACTIONS(2126), + [anon_sym_bit_DASHand2] = ACTIONS(2126), + [anon_sym_bit_DASHxor2] = ACTIONS(2126), + [anon_sym_bit_DASHor2] = ACTIONS(2126), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [anon_sym_err_GT_GT] = ACTIONS(2126), + [anon_sym_out_GT_GT] = ACTIONS(2126), + [anon_sym_e_GT_GT] = ACTIONS(2126), + [anon_sym_o_GT_GT] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1652), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(676), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2159), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1654), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(677), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2160), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1656), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(3624), + [aux_sym__pipe_separator] = STATE(652), [sym_comment] = STATE(652), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_mut] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [aux_sym_cmd_identifier_token1] = ACTIONS(2130), + [anon_sym_def] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_export_DASHenv] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_module] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_else] = ACTIONS(2132), + [anon_sym_try] = ACTIONS(2132), + [anon_sym_catch] = ACTIONS(2132), + [anon_sym_finally] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [anon_sym_null] = ACTIONS(2132), + [aux_sym_cmd_identifier_token3] = ACTIONS(2132), + [aux_sym_cmd_identifier_token4] = ACTIONS(2132), + [aux_sym_cmd_identifier_token5] = ACTIONS(2132), + [sym__newline] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_err_GT_PIPE] = ACTIONS(2137), + [anon_sym_out_GT_PIPE] = ACTIONS(2137), + [anon_sym_e_GT_PIPE] = ACTIONS(2137), + [anon_sym_o_GT_PIPE] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_where] = ACTIONS(2132), + [aux_sym_expr_unary_token1] = ACTIONS(2132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2132), + [anon_sym_DOT_DOT_LT] = ACTIONS(2132), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2132), + [aux_sym__val_number_decimal_token3] = ACTIONS(2132), + [aux_sym__val_number_decimal_token4] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2132), + [aux_sym__val_number_token2] = ACTIONS(2132), + [aux_sym__val_number_token3] = ACTIONS(2132), + [anon_sym_0b] = ACTIONS(2130), + [anon_sym_0o] = ACTIONS(2130), + [anon_sym_0x] = ACTIONS(2130), + [sym_val_date] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2132), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1658), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(679), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2161), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1660), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(682), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2162), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1662), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(685), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1664), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(688), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2164), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(657)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1666), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(689), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2165), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(657), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1008), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(692), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2032), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1668), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(659), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [aux_sym__immediate_decimal_token5] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1670), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1197), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1672), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(693), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1013), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(844), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1674), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(528), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2019), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(850), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1283), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1214), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(1146), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(664)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1266), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1224), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(1040), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(664), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(676), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1189), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(529), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2020), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1053), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(529), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1229), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(530), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2021), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(667)] = { - [sym_expr_parenthesized] = STATE(4246), - [sym__spread_parenthesized] = STATE(5089), - [sym_val_range] = STATE(5051), - [sym__val_range] = STATE(4908), - [sym__value] = STATE(5051), - [sym_val_nothing] = STATE(4772), - [sym_val_bool] = STATE(4617), - [sym__spread_variable] = STATE(4948), - [sym_val_variable] = STATE(4025), - [sym_val_cellpath] = STATE(4772), - [sym_val_number] = STATE(4772), - [sym__val_number_decimal] = STATE(3714), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4772), - [sym_val_filesize] = STATE(4772), - [sym_val_binary] = STATE(4772), - [sym_val_string] = STATE(4772), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_interpolated] = STATE(4772), - [sym__inter_single_quotes] = STATE(4830), - [sym__inter_double_quotes] = STATE(4844), - [sym_val_list] = STATE(4772), - [sym__spread_list] = STATE(5089), - [sym_val_entry] = STATE(4893), - [sym_val_record] = STATE(4772), - [sym_val_table] = STATE(4772), - [sym_val_closure] = STATE(4772), - [sym__unquoted_in_list] = STATE(4360), - [sym__unquoted_in_list_with_expr] = STATE(5051), - [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(667), - [aux_sym_list_body_repeat1] = STATE(534), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1488), - [aux_sym_cmd_identifier_token4] = ACTIONS(1488), - [aux_sym_cmd_identifier_token5] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [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(1510), - [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), + [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(2140), + [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(668)] = { - [sym_path] = STATE(703), + [aux_sym__repeat_newline] = STATE(531), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2022), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(838), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(668), - [aux_sym__where_predicate_lhs_repeat1] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_in] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_like2] = ACTIONS(1538), - [anon_sym_not_DASHlike2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [anon_sym_DOT2] = ACTIONS(2083), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(669)] = { - [sym_path] = STATE(703), + [aux_sym__repeat_newline] = STATE(549), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1013), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(669), - [aux_sym__where_predicate_lhs_repeat1] = STATE(668), - [ts_builtin_sym_end] = 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(1526), - [anon_sym_DASH2] = ACTIONS(1528), - [anon_sym_STAR2] = ACTIONS(1526), - [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(1526), - [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(1526), - [anon_sym_mod2] = ACTIONS(1528), - [anon_sym_SLASH_SLASH2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1526), - [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(1526), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1526), - [anon_sym_out_GT] = ACTIONS(1526), - [anon_sym_e_GT] = ACTIONS(1526), - [anon_sym_o_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT] = ACTIONS(1526), - [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(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1284), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(550), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(748), - [sym__unquoted_with_expr] = STATE(1151), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(554), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(551), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1266), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(752), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(672)] = { - [aux_sym__repeat_newline] = STATE(555), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1236), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1082), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(672), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(673)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1245), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1085), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1121), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(673), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(674)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(894), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(674), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(675)] = { + [aux_sym__repeat_newline] = STATE(547), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1198), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_COLON] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2086), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(676)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1227), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2036), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(676), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(677)] = { - [aux_sym__repeat_newline] = STATE(602), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1246), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2038), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(896), - [sym__unquoted_with_expr] = STATE(1121), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1048), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(677), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(678)] = { - [aux_sym__repeat_newline] = STATE(604), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(993), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1262), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(905), - [sym__unquoted_with_expr] = STATE(1005), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1131), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(678), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(679)] = { - [aux_sym__repeat_newline] = STATE(608), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2040), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(922), - [sym__unquoted_with_expr] = STATE(1041), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1050), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(679), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(680)] = { - [aux_sym__repeat_newline] = STATE(609), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1265), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(759), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1134), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(680), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(681)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1277), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1138), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1138), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1141), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(681), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(682)] = { - [aux_sym__repeat_newline] = STATE(649), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2042), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(682), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(683)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1277), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1146), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(683), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(684)] = { + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1282), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1150), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [anon_sym_DOT_DOT2] = ACTIONS(1834), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), - [aux_sym__immediate_decimal_token5] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(685)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1269), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2044), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1128), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(685), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(686)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1239), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1211), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(755), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(686), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(687)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1243), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(541), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1158), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(756), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(687), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(688)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1130), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(688), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(689)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1247), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2048), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(689), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(690)] = { + [aux_sym__repeat_newline] = STATE(542), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2094), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_DOT_DOT2] = ACTIONS(2096), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2098), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2098), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), - [sym__unquoted_pattern] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(691)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(543), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(766), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(691), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(692)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1252), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(2050), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1119), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(692), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(693)] = { - [aux_sym__repeat_newline] = STATE(2223), - [sym_expr_unary] = STATE(1183), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1183), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(898), - [sym_val_range] = STATE(1183), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(1183), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1062), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(756), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(693), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [sym__newline] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(694)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(544), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1251), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(694), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(695)] = { + [aux_sym__repeat_newline] = STATE(545), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1156), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2106), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2106), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [sym__unquoted_pattern] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(696)] = { + [aux_sym__repeat_newline] = STATE(2255), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1273), + [sym__expr_binary_expression_parenthesized] = STATE(1670), + [sym_expr_parenthesized] = STATE(921), + [sym_val_range] = STATE(1273), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(696), - [anon_sym_in] = ACTIONS(2108), - [sym__newline] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_err_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_GT_PIPE] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_GT2] = ACTIONS(2110), - [anon_sym_DASH2] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_STAR2] = ACTIONS(2110), - [anon_sym_and2] = ACTIONS(2108), - [anon_sym_xor2] = ACTIONS(2108), - [anon_sym_or2] = ACTIONS(2108), - [anon_sym_not_DASHin2] = ACTIONS(2108), - [anon_sym_has2] = ACTIONS(2108), - [anon_sym_not_DASHhas2] = ACTIONS(2108), - [anon_sym_starts_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), - [anon_sym_ends_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), - [anon_sym_EQ_EQ2] = ACTIONS(2108), - [anon_sym_BANG_EQ2] = ACTIONS(2108), - [anon_sym_LT2] = ACTIONS(2110), - [anon_sym_LT_EQ2] = ACTIONS(2108), - [anon_sym_GT_EQ2] = ACTIONS(2108), - [anon_sym_EQ_TILDE2] = ACTIONS(2108), - [anon_sym_BANG_TILDE2] = ACTIONS(2108), - [anon_sym_like2] = ACTIONS(2108), - [anon_sym_not_DASHlike2] = ACTIONS(2108), - [anon_sym_STAR_STAR2] = ACTIONS(2108), - [anon_sym_PLUS_PLUS2] = ACTIONS(2108), - [anon_sym_SLASH2] = ACTIONS(2110), - [anon_sym_mod2] = ACTIONS(2108), - [anon_sym_SLASH_SLASH2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(2110), - [anon_sym_bit_DASHshl2] = ACTIONS(2108), - [anon_sym_bit_DASHshr2] = ACTIONS(2108), - [anon_sym_bit_DASHand2] = ACTIONS(2108), - [anon_sym_bit_DASHxor2] = ACTIONS(2108), - [anon_sym_bit_DASHor2] = ACTIONS(2108), - [anon_sym_DOT_DOT2] = ACTIONS(2112), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), - [anon_sym_err_GT] = ACTIONS(2110), - [anon_sym_out_GT] = ACTIONS(2110), - [anon_sym_e_GT] = ACTIONS(2110), - [anon_sym_o_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT] = ACTIONS(2110), - [anon_sym_err_GT_GT] = ACTIONS(2108), - [anon_sym_out_GT_GT] = ACTIONS(2108), - [anon_sym_e_GT_GT] = ACTIONS(2108), - [anon_sym_o_GT_GT] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [sym__newline] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(697)] = { [sym_comment] = STATE(697), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_in] = ACTIONS(2116), - [sym__newline] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_err_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_GT_PIPE] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_GT2] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_STAR2] = ACTIONS(2118), - [anon_sym_and2] = ACTIONS(2116), - [anon_sym_xor2] = ACTIONS(2116), - [anon_sym_or2] = ACTIONS(2116), - [anon_sym_not_DASHin2] = ACTIONS(2116), - [anon_sym_has2] = ACTIONS(2116), - [anon_sym_not_DASHhas2] = ACTIONS(2116), - [anon_sym_starts_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), - [anon_sym_ends_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), - [anon_sym_EQ_EQ2] = ACTIONS(2116), - [anon_sym_BANG_EQ2] = ACTIONS(2116), - [anon_sym_LT2] = ACTIONS(2118), - [anon_sym_LT_EQ2] = ACTIONS(2116), - [anon_sym_GT_EQ2] = ACTIONS(2116), - [anon_sym_EQ_TILDE2] = ACTIONS(2116), - [anon_sym_BANG_TILDE2] = ACTIONS(2116), - [anon_sym_like2] = ACTIONS(2116), - [anon_sym_not_DASHlike2] = ACTIONS(2116), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_STAR_STAR2] = ACTIONS(2116), - [anon_sym_PLUS_PLUS2] = ACTIONS(2116), - [anon_sym_SLASH2] = ACTIONS(2118), - [anon_sym_mod2] = ACTIONS(2116), - [anon_sym_SLASH_SLASH2] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_bit_DASHshl2] = ACTIONS(2116), - [anon_sym_bit_DASHshr2] = ACTIONS(2116), - [anon_sym_bit_DASHand2] = ACTIONS(2116), - [anon_sym_bit_DASHxor2] = ACTIONS(2116), - [anon_sym_bit_DASHor2] = ACTIONS(2116), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2116), - [anon_sym_out_GT_GT] = ACTIONS(2116), - [anon_sym_e_GT_GT] = ACTIONS(2116), - [anon_sym_o_GT_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(914), + [anon_sym_in] = ACTIONS(914), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_EQ_GT] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(914), + [anon_sym_xor2] = ACTIONS(914), + [anon_sym_or2] = ACTIONS(914), + [anon_sym_not_DASHin2] = ACTIONS(914), + [anon_sym_has2] = ACTIONS(914), + [anon_sym_not_DASHhas2] = ACTIONS(914), + [anon_sym_starts_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), + [anon_sym_ends_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(914), + [anon_sym_like2] = ACTIONS(914), + [anon_sym_not_DASHlike2] = ACTIONS(914), + [anon_sym_STAR_STAR2] = ACTIONS(914), + [anon_sym_PLUS_PLUS2] = ACTIONS(914), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(914), + [anon_sym_SLASH_SLASH2] = ACTIONS(914), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(914), + [anon_sym_bit_DASHshr2] = ACTIONS(914), + [anon_sym_bit_DASHand2] = ACTIONS(914), + [anon_sym_bit_DASHxor2] = ACTIONS(914), + [anon_sym_bit_DASHor2] = ACTIONS(914), + [anon_sym_COLON2] = ACTIONS(914), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), [anon_sym_POUND] = ACTIONS(3), }, [STATE(698)] = { + [sym__expr_parenthesized_immediate] = STATE(5283), [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [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(1796), + [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_POUND] = ACTIONS(3), }, [STATE(699)] = { [sym_comment] = STATE(699), - [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(2124), - [aux_sym__immediate_decimal_token5] = ACTIONS(2126), - [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_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_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = 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_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, [STATE(700)] = { + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(2128), - [aux_sym__immediate_decimal_token5] = ACTIONS(2130), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4704), - [sym__record_key] = STATE(5246), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(701), - [aux_sym__match_pattern_record_body_repeat1] = STATE(736), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(702)] = { - [aux_sym__repeat_newline] = STATE(892), - [aux_sym__pipe_separator] = STATE(721), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(2132), - [anon_sym_alias] = ACTIONS(2134), - [anon_sym_let] = ACTIONS(2134), - [anon_sym_mut] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [aux_sym_cmd_identifier_token1] = ACTIONS(2132), - [anon_sym_def] = ACTIONS(2134), - [anon_sym_use] = ACTIONS(2134), - [anon_sym_export_DASHenv] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym_module] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_loop] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_else] = ACTIONS(2134), - [anon_sym_try] = ACTIONS(2134), - [anon_sym_catch] = ACTIONS(2134), - [anon_sym_finally] = ACTIONS(2134), - [anon_sym_match] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2132), - [anon_sym_true] = ACTIONS(2134), - [anon_sym_false] = ACTIONS(2134), - [anon_sym_null] = ACTIONS(2134), - [aux_sym_cmd_identifier_token3] = ACTIONS(2134), - [aux_sym_cmd_identifier_token4] = ACTIONS(2134), - [aux_sym_cmd_identifier_token5] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_err_GT_PIPE] = ACTIONS(2138), - [anon_sym_out_GT_PIPE] = ACTIONS(2138), - [anon_sym_e_GT_PIPE] = ACTIONS(2138), - [anon_sym_o_GT_PIPE] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2132), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2132), - [anon_sym_where] = ACTIONS(2134), - [aux_sym_expr_unary_token1] = ACTIONS(2134), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2134), - [anon_sym_DOT_DOT_LT] = ACTIONS(2134), - [aux_sym__val_number_decimal_token1] = ACTIONS(2132), - [aux_sym__val_number_decimal_token2] = ACTIONS(2134), - [aux_sym__val_number_decimal_token3] = ACTIONS(2134), - [aux_sym__val_number_decimal_token4] = ACTIONS(2134), - [aux_sym__val_number_token1] = ACTIONS(2134), - [aux_sym__val_number_token2] = ACTIONS(2134), - [aux_sym__val_number_token3] = ACTIONS(2134), - [anon_sym_0b] = ACTIONS(2132), - [anon_sym_0o] = ACTIONS(2132), - [anon_sym_0x] = ACTIONS(2132), - [sym_val_date] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), - [anon_sym_CARET] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(703)] = { + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(703), - [ts_builtin_sym_end] = 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), - [anon_sym_COLON] = ACTIONS(1547), - [anon_sym_GT2] = ACTIONS(1545), - [anon_sym_DASH2] = ACTIONS(1547), - [anon_sym_STAR2] = ACTIONS(1545), - [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(1545), - [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(1545), - [anon_sym_mod2] = ACTIONS(1547), - [anon_sym_SLASH_SLASH2] = ACTIONS(1547), - [anon_sym_PLUS2] = ACTIONS(1545), - [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(1545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), - [anon_sym_DOT2] = ACTIONS(1545), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(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_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(704)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(705)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(705), - [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_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), [anon_sym_LPAREN2] = ACTIONS(1796), - [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_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(706)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4901), - [sym__record_key] = STATE(5246), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(706), - [aux_sym_record_body_repeat1] = STATE(707), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(5094), - [sym__record_key] = STATE(5246), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(707), - [aux_sym_record_body_repeat1] = STATE(707), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [aux_sym_cmd_identifier_token1] = ACTIONS(2150), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_else] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_catch] = ACTIONS(2147), - [anon_sym_finally] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_null] = ACTIONS(2153), - [aux_sym_cmd_identifier_token3] = ACTIONS(2156), - [aux_sym_cmd_identifier_token4] = ACTIONS(2156), - [aux_sym_cmd_identifier_token5] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_PLUS2] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2168), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2174), - [aux_sym__val_number_decimal_token2] = ACTIONS(2177), - [aux_sym__val_number_decimal_token3] = ACTIONS(2180), - [aux_sym__val_number_decimal_token4] = ACTIONS(2180), - [aux_sym__val_number_token1] = ACTIONS(2183), - [aux_sym__val_number_token2] = ACTIONS(2183), - [aux_sym__val_number_token3] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2204), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2207), - [sym__newline] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_err_GT_PIPE] = ACTIONS(2207), - [anon_sym_out_GT_PIPE] = ACTIONS(2207), - [anon_sym_e_GT_PIPE] = ACTIONS(2207), - [anon_sym_o_GT_PIPE] = ACTIONS(2207), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2207), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2207), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2207), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_GT2] = ACTIONS(2209), - [anon_sym_DASH2] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_STAR2] = ACTIONS(2209), - [anon_sym_and2] = ACTIONS(2207), - [anon_sym_xor2] = ACTIONS(2207), - [anon_sym_or2] = ACTIONS(2207), - [anon_sym_not_DASHin2] = ACTIONS(2207), - [anon_sym_has2] = ACTIONS(2207), - [anon_sym_not_DASHhas2] = ACTIONS(2207), - [anon_sym_starts_DASHwith2] = ACTIONS(2207), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2207), - [anon_sym_ends_DASHwith2] = ACTIONS(2207), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2207), - [anon_sym_EQ_EQ2] = ACTIONS(2207), - [anon_sym_BANG_EQ2] = ACTIONS(2207), - [anon_sym_LT2] = ACTIONS(2209), - [anon_sym_LT_EQ2] = ACTIONS(2207), - [anon_sym_GT_EQ2] = ACTIONS(2207), - [anon_sym_EQ_TILDE2] = ACTIONS(2207), - [anon_sym_BANG_TILDE2] = ACTIONS(2207), - [anon_sym_like2] = ACTIONS(2207), - [anon_sym_not_DASHlike2] = ACTIONS(2207), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2207), - [anon_sym_PLUS_PLUS2] = ACTIONS(2207), - [anon_sym_SLASH2] = ACTIONS(2209), - [anon_sym_mod2] = ACTIONS(2207), - [anon_sym_SLASH_SLASH2] = ACTIONS(2207), - [anon_sym_PLUS2] = ACTIONS(2209), - [anon_sym_bit_DASHshl2] = ACTIONS(2207), - [anon_sym_bit_DASHshr2] = ACTIONS(2207), - [anon_sym_bit_DASHand2] = ACTIONS(2207), - [anon_sym_bit_DASHxor2] = ACTIONS(2207), - [anon_sym_bit_DASHor2] = ACTIONS(2207), - [anon_sym_err_GT] = ACTIONS(2209), - [anon_sym_out_GT] = ACTIONS(2209), - [anon_sym_e_GT] = ACTIONS(2209), - [anon_sym_o_GT] = ACTIONS(2209), - [anon_sym_err_PLUSout_GT] = ACTIONS(2209), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2209), - [anon_sym_o_PLUSe_GT] = ACTIONS(2209), - [anon_sym_e_PLUSo_GT] = ACTIONS(2209), - [anon_sym_err_GT_GT] = ACTIONS(2207), - [anon_sym_out_GT_GT] = ACTIONS(2207), - [anon_sym_e_GT_GT] = ACTIONS(2207), - [anon_sym_o_GT_GT] = ACTIONS(2207), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2207), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2207), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2207), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2207), + [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_POUND] = ACTIONS(3), }, [STATE(709)] = { [sym_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(2162), + [aux_sym__immediate_decimal_token5] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(710)] = { - [aux_sym__repeat_newline] = STATE(3611), - [aux_sym__pipe_separator] = STATE(721), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [aux_sym_cmd_identifier_token1] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_catch] = ACTIONS(2215), - [anon_sym_finally] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2215), - [aux_sym_cmd_identifier_token3] = ACTIONS(2215), - [aux_sym_cmd_identifier_token4] = ACTIONS(2215), - [aux_sym_cmd_identifier_token5] = ACTIONS(2215), - [sym__newline] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_err_GT_PIPE] = ACTIONS(2138), - [anon_sym_out_GT_PIPE] = ACTIONS(2138), - [anon_sym_e_GT_PIPE] = ACTIONS(2138), - [anon_sym_o_GT_PIPE] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_DASH2] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_DOT_DOT] = ACTIONS(2213), - [anon_sym_where] = ACTIONS(2215), - [aux_sym_expr_unary_token1] = ACTIONS(2215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2215), - [anon_sym_DOT_DOT_LT] = ACTIONS(2215), - [aux_sym__val_number_decimal_token1] = ACTIONS(2213), - [aux_sym__val_number_decimal_token2] = ACTIONS(2215), - [aux_sym__val_number_decimal_token3] = ACTIONS(2215), - [aux_sym__val_number_decimal_token4] = ACTIONS(2215), - [aux_sym__val_number_token1] = ACTIONS(2215), - [aux_sym__val_number_token2] = ACTIONS(2215), - [aux_sym__val_number_token3] = ACTIONS(2215), - [anon_sym_0b] = ACTIONS(2213), - [anon_sym_0o] = ACTIONS(2213), - [anon_sym_0x] = ACTIONS(2213), - [sym_val_date] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_BQUOTE] = ACTIONS(2215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(711)] = { + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_in] = ACTIONS(1919), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_GT2] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_STAR2] = ACTIONS(1921), - [anon_sym_and2] = ACTIONS(1919), - [anon_sym_xor2] = ACTIONS(1919), - [anon_sym_or2] = ACTIONS(1919), - [anon_sym_not_DASHin2] = ACTIONS(1919), - [anon_sym_has2] = ACTIONS(1919), - [anon_sym_not_DASHhas2] = ACTIONS(1919), - [anon_sym_starts_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), - [anon_sym_ends_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), - [anon_sym_EQ_EQ2] = ACTIONS(1919), - [anon_sym_BANG_EQ2] = ACTIONS(1919), - [anon_sym_LT2] = ACTIONS(1921), - [anon_sym_LT_EQ2] = ACTIONS(1919), - [anon_sym_GT_EQ2] = ACTIONS(1919), - [anon_sym_EQ_TILDE2] = ACTIONS(1919), - [anon_sym_BANG_TILDE2] = ACTIONS(1919), - [anon_sym_like2] = ACTIONS(1919), - [anon_sym_not_DASHlike2] = ACTIONS(1919), - [anon_sym_LPAREN2] = ACTIONS(1919), - [anon_sym_STAR_STAR2] = ACTIONS(1919), - [anon_sym_PLUS_PLUS2] = ACTIONS(1919), - [anon_sym_SLASH2] = ACTIONS(1921), - [anon_sym_mod2] = ACTIONS(1919), - [anon_sym_SLASH_SLASH2] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_bit_DASHshl2] = ACTIONS(1919), - [anon_sym_bit_DASHshr2] = ACTIONS(1919), - [anon_sym_bit_DASHand2] = ACTIONS(1919), - [anon_sym_bit_DASHxor2] = ACTIONS(1919), - [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_DOT_DOT2] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [sym__unquoted_pattern] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(712)] = { + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(712), - [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_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(713), - [anon_sym_in] = ACTIONS(2219), - [sym__newline] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_err_GT_PIPE] = ACTIONS(2219), - [anon_sym_out_GT_PIPE] = ACTIONS(2219), - [anon_sym_e_GT_PIPE] = ACTIONS(2219), - [anon_sym_o_GT_PIPE] = ACTIONS(2219), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2219), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2219), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2219), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_GT2] = ACTIONS(2221), - [anon_sym_DASH2] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_EQ_GT] = ACTIONS(2219), - [anon_sym_STAR2] = ACTIONS(2221), - [anon_sym_and2] = ACTIONS(2219), - [anon_sym_xor2] = ACTIONS(2219), - [anon_sym_or2] = ACTIONS(2219), - [anon_sym_not_DASHin2] = ACTIONS(2219), - [anon_sym_has2] = ACTIONS(2219), - [anon_sym_not_DASHhas2] = ACTIONS(2219), - [anon_sym_starts_DASHwith2] = ACTIONS(2219), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2219), - [anon_sym_ends_DASHwith2] = ACTIONS(2219), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2219), - [anon_sym_EQ_EQ2] = ACTIONS(2219), - [anon_sym_BANG_EQ2] = ACTIONS(2219), - [anon_sym_LT2] = ACTIONS(2221), - [anon_sym_LT_EQ2] = ACTIONS(2219), - [anon_sym_GT_EQ2] = ACTIONS(2219), - [anon_sym_EQ_TILDE2] = ACTIONS(2219), - [anon_sym_BANG_TILDE2] = ACTIONS(2219), - [anon_sym_like2] = ACTIONS(2219), - [anon_sym_not_DASHlike2] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2219), - [anon_sym_PLUS_PLUS2] = ACTIONS(2219), - [anon_sym_SLASH2] = ACTIONS(2221), - [anon_sym_mod2] = ACTIONS(2219), - [anon_sym_SLASH_SLASH2] = ACTIONS(2219), - [anon_sym_PLUS2] = ACTIONS(2221), - [anon_sym_bit_DASHshl2] = ACTIONS(2219), - [anon_sym_bit_DASHshr2] = ACTIONS(2219), - [anon_sym_bit_DASHand2] = ACTIONS(2219), - [anon_sym_bit_DASHxor2] = ACTIONS(2219), - [anon_sym_bit_DASHor2] = ACTIONS(2219), - [anon_sym_err_GT] = ACTIONS(2221), - [anon_sym_out_GT] = ACTIONS(2221), - [anon_sym_e_GT] = ACTIONS(2221), - [anon_sym_o_GT] = ACTIONS(2221), - [anon_sym_err_PLUSout_GT] = ACTIONS(2221), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2221), - [anon_sym_o_PLUSe_GT] = ACTIONS(2221), - [anon_sym_e_PLUSo_GT] = ACTIONS(2221), - [anon_sym_err_GT_GT] = ACTIONS(2219), - [anon_sym_out_GT_GT] = ACTIONS(2219), - [anon_sym_e_GT_GT] = ACTIONS(2219), - [anon_sym_o_GT_GT] = ACTIONS(2219), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2219), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2219), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2219), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2219), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(714)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(714), - [anon_sym_in] = ACTIONS(2223), - [sym__newline] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_err_GT_PIPE] = ACTIONS(2223), - [anon_sym_out_GT_PIPE] = ACTIONS(2223), - [anon_sym_e_GT_PIPE] = ACTIONS(2223), - [anon_sym_o_GT_PIPE] = ACTIONS(2223), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2223), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2223), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2223), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2223), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_GT2] = ACTIONS(2225), - [anon_sym_DASH2] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_STAR2] = ACTIONS(2225), - [anon_sym_and2] = ACTIONS(2223), - [anon_sym_xor2] = ACTIONS(2223), - [anon_sym_or2] = ACTIONS(2223), - [anon_sym_not_DASHin2] = ACTIONS(2223), - [anon_sym_has2] = ACTIONS(2223), - [anon_sym_not_DASHhas2] = ACTIONS(2223), - [anon_sym_starts_DASHwith2] = ACTIONS(2223), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2223), - [anon_sym_ends_DASHwith2] = ACTIONS(2223), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2223), - [anon_sym_EQ_EQ2] = ACTIONS(2223), - [anon_sym_BANG_EQ2] = ACTIONS(2223), - [anon_sym_LT2] = ACTIONS(2225), - [anon_sym_LT_EQ2] = ACTIONS(2223), - [anon_sym_GT_EQ2] = ACTIONS(2223), - [anon_sym_EQ_TILDE2] = ACTIONS(2223), - [anon_sym_BANG_TILDE2] = ACTIONS(2223), - [anon_sym_like2] = ACTIONS(2223), - [anon_sym_not_DASHlike2] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2223), - [anon_sym_PLUS_PLUS2] = ACTIONS(2223), - [anon_sym_SLASH2] = ACTIONS(2225), - [anon_sym_mod2] = ACTIONS(2223), - [anon_sym_SLASH_SLASH2] = ACTIONS(2223), - [anon_sym_PLUS2] = ACTIONS(2225), - [anon_sym_bit_DASHshl2] = ACTIONS(2223), - [anon_sym_bit_DASHshr2] = ACTIONS(2223), - [anon_sym_bit_DASHand2] = ACTIONS(2223), - [anon_sym_bit_DASHxor2] = ACTIONS(2223), - [anon_sym_bit_DASHor2] = ACTIONS(2223), - [anon_sym_err_GT] = ACTIONS(2225), - [anon_sym_out_GT] = ACTIONS(2225), - [anon_sym_e_GT] = ACTIONS(2225), - [anon_sym_o_GT] = ACTIONS(2225), - [anon_sym_err_PLUSout_GT] = ACTIONS(2225), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2225), - [anon_sym_o_PLUSe_GT] = ACTIONS(2225), - [anon_sym_e_PLUSo_GT] = ACTIONS(2225), - [anon_sym_err_GT_GT] = ACTIONS(2223), - [anon_sym_out_GT_GT] = ACTIONS(2223), - [anon_sym_e_GT_GT] = ACTIONS(2223), - [anon_sym_o_GT_GT] = ACTIONS(2223), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2223), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2223), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2223), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2223), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(715)] = { [sym_comment] = STATE(715), - [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_COLON] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1512), - [anon_sym_DASH2] = 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_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_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(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(716)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(5476), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4786), - [sym__record_key] = STATE(5246), [sym_comment] = STATE(716), - [aux_sym_record_body_repeat1] = STATE(707), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1748), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [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_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_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_DOT_DOT2] = ACTIONS(2178), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2180), + [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(717)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(717), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(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(2182), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2184), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2184), + [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(718)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(718), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_err_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_GT_PIPE] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_DOT_DOT2] = ACTIONS(2190), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2192), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2186), + [anon_sym_out_GT_GT] = ACTIONS(2186), + [anon_sym_e_GT_GT] = ACTIONS(2186), + [anon_sym_o_GT_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(3), }, [STATE(719)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(719), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_DOT_DOT2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2196), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2196), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(720)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(5008), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(720), - [anon_sym_in] = ACTIONS(2227), - [sym__newline] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_err_GT_PIPE] = ACTIONS(2227), - [anon_sym_out_GT_PIPE] = ACTIONS(2227), - [anon_sym_e_GT_PIPE] = ACTIONS(2227), - [anon_sym_o_GT_PIPE] = ACTIONS(2227), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2227), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2227), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2227), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2227), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_GT2] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2227), - [anon_sym_out_GT_GT] = ACTIONS(2227), - [anon_sym_e_GT_GT] = ACTIONS(2227), - [anon_sym_o_GT_GT] = ACTIONS(2227), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2227), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2227), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2227), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(2198), + [anon_sym_alias] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [aux_sym_cmd_identifier_token1] = ACTIONS(2204), + [anon_sym_def] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_export_DASHenv] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_module] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_catch] = ACTIONS(2201), + [anon_sym_finally] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_in] = ACTIONS(2198), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [anon_sym_null] = ACTIONS(2207), + [aux_sym_cmd_identifier_token3] = ACTIONS(2210), + [aux_sym_cmd_identifier_token4] = ACTIONS(2210), + [aux_sym_cmd_identifier_token5] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2225), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2231), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2237), + [aux_sym__val_number_token2] = ACTIONS(2237), + [aux_sym__val_number_token3] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_BQUOTE] = ACTIONS(2246), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2258), }, [STATE(721)] = { - [aux_sym__repeat_newline] = STATE(3611), - [aux_sym__pipe_separator] = STATE(721), [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(2231), - [anon_sym_alias] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [aux_sym_cmd_identifier_token1] = ACTIONS(2231), - [anon_sym_def] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_export_DASHenv] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_catch] = ACTIONS(2233), - [anon_sym_finally] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [aux_sym_cmd_identifier_token3] = ACTIONS(2233), - [aux_sym_cmd_identifier_token4] = ACTIONS(2233), - [aux_sym_cmd_identifier_token5] = ACTIONS(2233), - [sym__newline] = ACTIONS(2235), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_DASH2] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2231), - [anon_sym_where] = ACTIONS(2233), - [aux_sym_expr_unary_token1] = ACTIONS(2233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_LT] = ACTIONS(2233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2231), - [aux_sym__val_number_decimal_token2] = ACTIONS(2233), - [aux_sym__val_number_decimal_token3] = ACTIONS(2233), - [aux_sym__val_number_decimal_token4] = ACTIONS(2233), - [aux_sym__val_number_token1] = ACTIONS(2233), - [aux_sym__val_number_token2] = ACTIONS(2233), - [aux_sym__val_number_token3] = ACTIONS(2233), - [anon_sym_0b] = ACTIONS(2231), - [anon_sym_0o] = ACTIONS(2231), - [anon_sym_0x] = ACTIONS(2231), - [sym_val_date] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), + [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_LPAREN2] = ACTIONS(2108), + [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(2261), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2263), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2263), + [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), + [sym__unquoted_pattern] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(722)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(722), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_err_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_GT_PIPE] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [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_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(2267), + [anon_sym_out_GT] = ACTIONS(2267), + [anon_sym_e_GT] = ACTIONS(2267), + [anon_sym_o_GT] = ACTIONS(2267), + [anon_sym_err_PLUSout_GT] = ACTIONS(2267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), + [anon_sym_o_PLUSe_GT] = ACTIONS(2267), + [anon_sym_e_PLUSo_GT] = ACTIONS(2267), + [anon_sym_err_GT_GT] = ACTIONS(2265), + [anon_sym_out_GT_GT] = ACTIONS(2265), + [anon_sym_e_GT_GT] = ACTIONS(2265), + [anon_sym_o_GT_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), [anon_sym_POUND] = ACTIONS(3), }, [STATE(723)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym__expr_parenthesized_immediate] = STATE(5283), [sym_comment] = STATE(723), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2269), + [sym__newline] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_err_GT_PIPE] = ACTIONS(2269), + [anon_sym_out_GT_PIPE] = ACTIONS(2269), + [anon_sym_e_GT_PIPE] = ACTIONS(2269), + [anon_sym_o_GT_PIPE] = ACTIONS(2269), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2269), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2269), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2269), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2269), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_GT2] = ACTIONS(2271), + [anon_sym_DASH2] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(2269), + [anon_sym_STAR2] = ACTIONS(2271), + [anon_sym_and2] = ACTIONS(2269), + [anon_sym_xor2] = ACTIONS(2269), + [anon_sym_or2] = ACTIONS(2269), + [anon_sym_not_DASHin2] = ACTIONS(2269), + [anon_sym_has2] = ACTIONS(2269), + [anon_sym_not_DASHhas2] = ACTIONS(2269), + [anon_sym_starts_DASHwith2] = ACTIONS(2269), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2269), + [anon_sym_ends_DASHwith2] = ACTIONS(2269), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2269), + [anon_sym_EQ_EQ2] = ACTIONS(2269), + [anon_sym_BANG_EQ2] = ACTIONS(2269), + [anon_sym_LT2] = ACTIONS(2271), + [anon_sym_LT_EQ2] = ACTIONS(2269), + [anon_sym_GT_EQ2] = ACTIONS(2269), + [anon_sym_EQ_TILDE2] = ACTIONS(2269), + [anon_sym_BANG_TILDE2] = ACTIONS(2269), + [anon_sym_like2] = ACTIONS(2269), + [anon_sym_not_DASHlike2] = ACTIONS(2269), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_STAR_STAR2] = ACTIONS(2269), + [anon_sym_PLUS_PLUS2] = ACTIONS(2269), + [anon_sym_SLASH2] = ACTIONS(2271), + [anon_sym_mod2] = ACTIONS(2269), + [anon_sym_SLASH_SLASH2] = ACTIONS(2269), + [anon_sym_PLUS2] = ACTIONS(2271), + [anon_sym_bit_DASHshl2] = ACTIONS(2269), + [anon_sym_bit_DASHshr2] = ACTIONS(2269), + [anon_sym_bit_DASHand2] = ACTIONS(2269), + [anon_sym_bit_DASHxor2] = ACTIONS(2269), + [anon_sym_bit_DASHor2] = ACTIONS(2269), + [anon_sym_err_GT] = ACTIONS(2271), + [anon_sym_out_GT] = ACTIONS(2271), + [anon_sym_e_GT] = ACTIONS(2271), + [anon_sym_o_GT] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT] = ACTIONS(2271), + [anon_sym_err_GT_GT] = ACTIONS(2269), + [anon_sym_out_GT_GT] = ACTIONS(2269), + [anon_sym_e_GT_GT] = ACTIONS(2269), + [anon_sym_o_GT_GT] = ACTIONS(2269), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2269), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2269), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2269), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2269), [anon_sym_POUND] = ACTIONS(3), }, [STATE(724)] = { [sym_comment] = STATE(724), - [anon_sym_in] = ACTIONS(2241), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_GT2] = ACTIONS(2243), - [anon_sym_DASH2] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_STAR2] = ACTIONS(2243), - [anon_sym_and2] = ACTIONS(2241), - [anon_sym_xor2] = ACTIONS(2241), - [anon_sym_or2] = ACTIONS(2241), - [anon_sym_not_DASHin2] = ACTIONS(2241), - [anon_sym_has2] = ACTIONS(2241), - [anon_sym_not_DASHhas2] = ACTIONS(2241), - [anon_sym_starts_DASHwith2] = ACTIONS(2241), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2241), - [anon_sym_ends_DASHwith2] = ACTIONS(2241), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2241), - [anon_sym_EQ_EQ2] = ACTIONS(2241), - [anon_sym_BANG_EQ2] = ACTIONS(2241), - [anon_sym_LT2] = ACTIONS(2243), - [anon_sym_LT_EQ2] = ACTIONS(2241), - [anon_sym_GT_EQ2] = ACTIONS(2241), - [anon_sym_EQ_TILDE2] = ACTIONS(2241), - [anon_sym_BANG_TILDE2] = ACTIONS(2241), - [anon_sym_like2] = ACTIONS(2241), - [anon_sym_not_DASHlike2] = ACTIONS(2241), - [anon_sym_STAR_STAR2] = ACTIONS(2241), - [anon_sym_PLUS_PLUS2] = ACTIONS(2241), - [anon_sym_SLASH2] = ACTIONS(2243), - [anon_sym_mod2] = ACTIONS(2241), - [anon_sym_SLASH_SLASH2] = ACTIONS(2241), - [anon_sym_PLUS2] = ACTIONS(2243), - [anon_sym_bit_DASHshl2] = ACTIONS(2241), - [anon_sym_bit_DASHshr2] = ACTIONS(2241), - [anon_sym_bit_DASHand2] = ACTIONS(2241), - [anon_sym_bit_DASHxor2] = ACTIONS(2241), - [anon_sym_bit_DASHor2] = ACTIONS(2241), - [anon_sym_DOT_DOT2] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2247), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2247), - [anon_sym_err_GT] = ACTIONS(2243), - [anon_sym_out_GT] = ACTIONS(2243), - [anon_sym_e_GT] = ACTIONS(2243), - [anon_sym_o_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT] = ACTIONS(2243), - [anon_sym_err_GT_GT] = ACTIONS(2241), - [anon_sym_out_GT_GT] = ACTIONS(2241), - [anon_sym_e_GT_GT] = ACTIONS(2241), - [anon_sym_o_GT_GT] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(2114), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_DOT_DOT2] = ACTIONS(2273), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2275), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2275), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), + [sym__unquoted_pattern] = ACTIONS(2124), [anon_sym_POUND] = ACTIONS(3), }, [STATE(725)] = { [sym_comment] = STATE(725), - [anon_sym_in] = ACTIONS(2249), - [sym__newline] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_err_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_GT_PIPE] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_GT2] = ACTIONS(2251), - [anon_sym_DASH2] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_STAR2] = ACTIONS(2251), - [anon_sym_and2] = ACTIONS(2249), - [anon_sym_xor2] = ACTIONS(2249), - [anon_sym_or2] = ACTIONS(2249), - [anon_sym_not_DASHin2] = ACTIONS(2249), - [anon_sym_has2] = ACTIONS(2249), - [anon_sym_not_DASHhas2] = ACTIONS(2249), - [anon_sym_starts_DASHwith2] = ACTIONS(2249), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2249), - [anon_sym_ends_DASHwith2] = ACTIONS(2249), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2249), - [anon_sym_EQ_EQ2] = ACTIONS(2249), - [anon_sym_BANG_EQ2] = ACTIONS(2249), - [anon_sym_LT2] = ACTIONS(2251), - [anon_sym_LT_EQ2] = ACTIONS(2249), - [anon_sym_GT_EQ2] = ACTIONS(2249), - [anon_sym_EQ_TILDE2] = ACTIONS(2249), - [anon_sym_BANG_TILDE2] = ACTIONS(2249), - [anon_sym_like2] = ACTIONS(2249), - [anon_sym_not_DASHlike2] = ACTIONS(2249), - [anon_sym_STAR_STAR2] = ACTIONS(2249), - [anon_sym_PLUS_PLUS2] = ACTIONS(2249), - [anon_sym_SLASH2] = ACTIONS(2251), - [anon_sym_mod2] = ACTIONS(2249), - [anon_sym_SLASH_SLASH2] = ACTIONS(2249), - [anon_sym_PLUS2] = ACTIONS(2251), - [anon_sym_bit_DASHshl2] = ACTIONS(2249), - [anon_sym_bit_DASHshr2] = ACTIONS(2249), - [anon_sym_bit_DASHand2] = ACTIONS(2249), - [anon_sym_bit_DASHxor2] = ACTIONS(2249), - [anon_sym_bit_DASHor2] = ACTIONS(2249), - [anon_sym_DOT_DOT2] = ACTIONS(2253), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2255), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2255), - [anon_sym_err_GT] = ACTIONS(2251), - [anon_sym_out_GT] = ACTIONS(2251), - [anon_sym_e_GT] = ACTIONS(2251), - [anon_sym_o_GT] = ACTIONS(2251), - [anon_sym_err_PLUSout_GT] = ACTIONS(2251), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), - [anon_sym_o_PLUSe_GT] = ACTIONS(2251), - [anon_sym_e_PLUSo_GT] = ACTIONS(2251), - [anon_sym_err_GT_GT] = ACTIONS(2249), - [anon_sym_out_GT_GT] = ACTIONS(2249), - [anon_sym_e_GT_GT] = ACTIONS(2249), - [anon_sym_o_GT_GT] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1776), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(726)] = { [sym_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1476), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1476), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1476), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1476), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1476), - [anon_sym_err_GT] = ACTIONS(1476), - [anon_sym_out_GT] = ACTIONS(1476), - [anon_sym_e_GT] = ACTIONS(1476), - [anon_sym_o_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT] = ACTIONS(1476), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_in] = ACTIONS(2277), + [sym__newline] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2277), + [anon_sym_err_GT_PIPE] = ACTIONS(2277), + [anon_sym_out_GT_PIPE] = ACTIONS(2277), + [anon_sym_e_GT_PIPE] = ACTIONS(2277), + [anon_sym_o_GT_PIPE] = ACTIONS(2277), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2277), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2277), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2277), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_GT2] = ACTIONS(2279), + [anon_sym_DASH2] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_EQ_GT] = ACTIONS(2277), + [anon_sym_STAR2] = ACTIONS(2279), + [anon_sym_and2] = ACTIONS(2277), + [anon_sym_xor2] = ACTIONS(2277), + [anon_sym_or2] = ACTIONS(2277), + [anon_sym_not_DASHin2] = ACTIONS(2277), + [anon_sym_has2] = ACTIONS(2277), + [anon_sym_not_DASHhas2] = ACTIONS(2277), + [anon_sym_starts_DASHwith2] = ACTIONS(2277), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2277), + [anon_sym_ends_DASHwith2] = ACTIONS(2277), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2277), + [anon_sym_EQ_EQ2] = ACTIONS(2277), + [anon_sym_BANG_EQ2] = ACTIONS(2277), + [anon_sym_LT2] = ACTIONS(2279), + [anon_sym_LT_EQ2] = ACTIONS(2277), + [anon_sym_GT_EQ2] = ACTIONS(2277), + [anon_sym_EQ_TILDE2] = ACTIONS(2277), + [anon_sym_BANG_TILDE2] = ACTIONS(2277), + [anon_sym_like2] = ACTIONS(2277), + [anon_sym_not_DASHlike2] = ACTIONS(2277), + [anon_sym_STAR_STAR2] = ACTIONS(2277), + [anon_sym_PLUS_PLUS2] = ACTIONS(2277), + [anon_sym_SLASH2] = ACTIONS(2279), + [anon_sym_mod2] = ACTIONS(2277), + [anon_sym_SLASH_SLASH2] = ACTIONS(2277), + [anon_sym_PLUS2] = ACTIONS(2279), + [anon_sym_bit_DASHshl2] = ACTIONS(2277), + [anon_sym_bit_DASHshr2] = ACTIONS(2277), + [anon_sym_bit_DASHand2] = ACTIONS(2277), + [anon_sym_bit_DASHxor2] = ACTIONS(2277), + [anon_sym_bit_DASHor2] = ACTIONS(2277), + [anon_sym_COLON2] = ACTIONS(2277), + [anon_sym_err_GT] = ACTIONS(2279), + [anon_sym_out_GT] = ACTIONS(2279), + [anon_sym_e_GT] = ACTIONS(2279), + [anon_sym_o_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT] = ACTIONS(2279), + [anon_sym_err_GT_GT] = ACTIONS(2277), + [anon_sym_out_GT_GT] = ACTIONS(2277), + [anon_sym_e_GT_GT] = ACTIONS(2277), + [anon_sym_o_GT_GT] = ACTIONS(2277), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2277), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2277), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2277), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2277), [anon_sym_POUND] = ACTIONS(3), }, [STATE(727)] = { [sym_comment] = STATE(727), - [anon_sym_in] = ACTIONS(2257), - [sym__newline] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_err_GT_PIPE] = ACTIONS(2257), - [anon_sym_out_GT_PIPE] = ACTIONS(2257), - [anon_sym_e_GT_PIPE] = ACTIONS(2257), - [anon_sym_o_GT_PIPE] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_GT2] = ACTIONS(2259), - [anon_sym_DASH2] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_STAR2] = ACTIONS(2259), - [anon_sym_and2] = ACTIONS(2257), - [anon_sym_xor2] = ACTIONS(2257), - [anon_sym_or2] = ACTIONS(2257), - [anon_sym_not_DASHin2] = ACTIONS(2257), - [anon_sym_has2] = ACTIONS(2257), - [anon_sym_not_DASHhas2] = ACTIONS(2257), - [anon_sym_starts_DASHwith2] = ACTIONS(2257), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2257), - [anon_sym_ends_DASHwith2] = ACTIONS(2257), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2257), - [anon_sym_EQ_EQ2] = ACTIONS(2257), - [anon_sym_BANG_EQ2] = ACTIONS(2257), - [anon_sym_LT2] = ACTIONS(2259), - [anon_sym_LT_EQ2] = ACTIONS(2257), - [anon_sym_GT_EQ2] = ACTIONS(2257), - [anon_sym_EQ_TILDE2] = ACTIONS(2257), - [anon_sym_BANG_TILDE2] = ACTIONS(2257), - [anon_sym_like2] = ACTIONS(2257), - [anon_sym_not_DASHlike2] = ACTIONS(2257), - [anon_sym_STAR_STAR2] = ACTIONS(2257), - [anon_sym_PLUS_PLUS2] = ACTIONS(2257), - [anon_sym_SLASH2] = ACTIONS(2259), - [anon_sym_mod2] = ACTIONS(2257), - [anon_sym_SLASH_SLASH2] = ACTIONS(2257), - [anon_sym_PLUS2] = ACTIONS(2259), - [anon_sym_bit_DASHshl2] = ACTIONS(2257), - [anon_sym_bit_DASHshr2] = ACTIONS(2257), - [anon_sym_bit_DASHand2] = ACTIONS(2257), - [anon_sym_bit_DASHxor2] = ACTIONS(2257), - [anon_sym_bit_DASHor2] = ACTIONS(2257), - [anon_sym_DOT_DOT2] = ACTIONS(2261), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2263), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2263), - [anon_sym_err_GT] = ACTIONS(2259), - [anon_sym_out_GT] = ACTIONS(2259), - [anon_sym_e_GT] = ACTIONS(2259), - [anon_sym_o_GT] = ACTIONS(2259), - [anon_sym_err_PLUSout_GT] = ACTIONS(2259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), - [anon_sym_o_PLUSe_GT] = ACTIONS(2259), - [anon_sym_e_PLUSo_GT] = ACTIONS(2259), - [anon_sym_err_GT_GT] = ACTIONS(2257), - [anon_sym_out_GT_GT] = ACTIONS(2257), - [anon_sym_e_GT_GT] = ACTIONS(2257), - [anon_sym_o_GT_GT] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), + [ts_builtin_sym_end] = ACTIONS(1567), + [anon_sym_in] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1567), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1567), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1567), + [anon_sym_xor2] = ACTIONS(1567), + [anon_sym_or2] = ACTIONS(1567), + [anon_sym_not_DASHin2] = ACTIONS(1567), + [anon_sym_has2] = ACTIONS(1567), + [anon_sym_not_DASHhas2] = ACTIONS(1567), + [anon_sym_starts_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), + [anon_sym_ends_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), + [anon_sym_EQ_EQ2] = ACTIONS(1567), + [anon_sym_BANG_EQ2] = ACTIONS(1567), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1567), + [anon_sym_GT_EQ2] = ACTIONS(1567), + [anon_sym_EQ_TILDE2] = ACTIONS(1567), + [anon_sym_BANG_TILDE2] = ACTIONS(1567), + [anon_sym_like2] = ACTIONS(1567), + [anon_sym_not_DASHlike2] = ACTIONS(1567), + [anon_sym_STAR_STAR2] = ACTIONS(1567), + [anon_sym_PLUS_PLUS2] = ACTIONS(1567), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1567), + [anon_sym_SLASH_SLASH2] = ACTIONS(1567), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1567), + [anon_sym_bit_DASHshr2] = ACTIONS(1567), + [anon_sym_bit_DASHand2] = ACTIONS(1567), + [anon_sym_bit_DASHxor2] = ACTIONS(1567), + [anon_sym_bit_DASHor2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [anon_sym_DOT2] = ACTIONS(1565), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(3), }, [STATE(728)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4827), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(728), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(2265), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2267), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2267), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(729)] = { + [sym__expr_parenthesized_immediate] = STATE(5283), [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [anon_sym_DOT_DOT2] = ACTIONS(1834), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), + [anon_sym_in] = ACTIONS(2281), + [sym__newline] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_PIPE] = ACTIONS(2281), + [anon_sym_err_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_GT_PIPE] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_GT2] = ACTIONS(2283), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_EQ_GT] = ACTIONS(2281), + [anon_sym_STAR2] = ACTIONS(2283), + [anon_sym_and2] = ACTIONS(2281), + [anon_sym_xor2] = ACTIONS(2281), + [anon_sym_or2] = ACTIONS(2281), + [anon_sym_not_DASHin2] = ACTIONS(2281), + [anon_sym_has2] = ACTIONS(2281), + [anon_sym_not_DASHhas2] = ACTIONS(2281), + [anon_sym_starts_DASHwith2] = ACTIONS(2281), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2281), + [anon_sym_ends_DASHwith2] = ACTIONS(2281), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2281), + [anon_sym_EQ_EQ2] = ACTIONS(2281), + [anon_sym_BANG_EQ2] = ACTIONS(2281), + [anon_sym_LT2] = ACTIONS(2283), + [anon_sym_LT_EQ2] = ACTIONS(2281), + [anon_sym_GT_EQ2] = ACTIONS(2281), + [anon_sym_EQ_TILDE2] = ACTIONS(2281), + [anon_sym_BANG_TILDE2] = ACTIONS(2281), + [anon_sym_like2] = ACTIONS(2281), + [anon_sym_not_DASHlike2] = ACTIONS(2281), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2281), + [anon_sym_PLUS_PLUS2] = ACTIONS(2281), + [anon_sym_SLASH2] = ACTIONS(2283), + [anon_sym_mod2] = ACTIONS(2281), + [anon_sym_SLASH_SLASH2] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2283), + [anon_sym_bit_DASHshl2] = ACTIONS(2281), + [anon_sym_bit_DASHshr2] = ACTIONS(2281), + [anon_sym_bit_DASHand2] = ACTIONS(2281), + [anon_sym_bit_DASHxor2] = ACTIONS(2281), + [anon_sym_bit_DASHor2] = ACTIONS(2281), + [anon_sym_err_GT] = ACTIONS(2283), + [anon_sym_out_GT] = ACTIONS(2283), + [anon_sym_e_GT] = ACTIONS(2283), + [anon_sym_o_GT] = ACTIONS(2283), + [anon_sym_err_PLUSout_GT] = ACTIONS(2283), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2283), + [anon_sym_o_PLUSe_GT] = ACTIONS(2283), + [anon_sym_e_PLUSo_GT] = ACTIONS(2283), + [anon_sym_err_GT_GT] = ACTIONS(2281), + [anon_sym_out_GT_GT] = ACTIONS(2281), + [anon_sym_e_GT_GT] = ACTIONS(2281), + [anon_sym_o_GT_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), [anon_sym_POUND] = ACTIONS(3), }, [STATE(730)] = { [sym_comment] = STATE(730), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1714), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(731)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4388), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4900), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(731), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_record_body_repeat1] = STATE(732), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(732)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4911), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(5074), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(732), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_record_body_repeat1] = STATE(732), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_alias] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_mut] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [aux_sym_cmd_identifier_token1] = ACTIONS(2291), + [anon_sym_def] = ACTIONS(2288), + [anon_sym_use] = ACTIONS(2288), + [anon_sym_export_DASHenv] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_loop] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_match] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DASH2] = ACTIONS(2306), + [anon_sym_PLUS2] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2318), + [aux_sym__val_number_decimal_token3] = ACTIONS(2321), + [aux_sym__val_number_decimal_token4] = ACTIONS(2321), + [aux_sym__val_number_token1] = ACTIONS(2324), + [aux_sym__val_number_token2] = ACTIONS(2324), + [aux_sym__val_number_token3] = ACTIONS(2324), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_BQUOTE] = ACTIONS(2333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2345), }, [STATE(733)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(733), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2348), + [sym__newline] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2348), + [anon_sym_err_GT_PIPE] = ACTIONS(2348), + [anon_sym_out_GT_PIPE] = ACTIONS(2348), + [anon_sym_e_GT_PIPE] = ACTIONS(2348), + [anon_sym_o_GT_PIPE] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2348), + [anon_sym_RPAREN] = ACTIONS(2348), + [anon_sym_GT2] = ACTIONS(2350), + [anon_sym_DASH2] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_EQ_GT] = ACTIONS(2348), + [anon_sym_STAR2] = ACTIONS(2350), + [anon_sym_and2] = ACTIONS(2348), + [anon_sym_xor2] = ACTIONS(2348), + [anon_sym_or2] = ACTIONS(2348), + [anon_sym_not_DASHin2] = ACTIONS(2348), + [anon_sym_has2] = ACTIONS(2348), + [anon_sym_not_DASHhas2] = ACTIONS(2348), + [anon_sym_starts_DASHwith2] = ACTIONS(2348), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2348), + [anon_sym_ends_DASHwith2] = ACTIONS(2348), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2348), + [anon_sym_EQ_EQ2] = ACTIONS(2348), + [anon_sym_BANG_EQ2] = ACTIONS(2348), + [anon_sym_LT2] = ACTIONS(2350), + [anon_sym_LT_EQ2] = ACTIONS(2348), + [anon_sym_GT_EQ2] = ACTIONS(2348), + [anon_sym_EQ_TILDE2] = ACTIONS(2348), + [anon_sym_BANG_TILDE2] = ACTIONS(2348), + [anon_sym_like2] = ACTIONS(2348), + [anon_sym_not_DASHlike2] = ACTIONS(2348), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_STAR_STAR2] = ACTIONS(2348), + [anon_sym_PLUS_PLUS2] = ACTIONS(2348), + [anon_sym_SLASH2] = ACTIONS(2350), + [anon_sym_mod2] = ACTIONS(2348), + [anon_sym_SLASH_SLASH2] = ACTIONS(2348), + [anon_sym_PLUS2] = ACTIONS(2350), + [anon_sym_bit_DASHshl2] = ACTIONS(2348), + [anon_sym_bit_DASHshr2] = ACTIONS(2348), + [anon_sym_bit_DASHand2] = ACTIONS(2348), + [anon_sym_bit_DASHxor2] = ACTIONS(2348), + [anon_sym_bit_DASHor2] = ACTIONS(2348), + [anon_sym_err_GT] = ACTIONS(2350), + [anon_sym_out_GT] = ACTIONS(2350), + [anon_sym_e_GT] = ACTIONS(2350), + [anon_sym_o_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT] = ACTIONS(2350), + [anon_sym_err_GT_GT] = ACTIONS(2348), + [anon_sym_out_GT_GT] = ACTIONS(2348), + [anon_sym_e_GT_GT] = ACTIONS(2348), + [anon_sym_o_GT_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(3), }, [STATE(734)] = { + [aux_sym__repeat_newline] = STATE(734), [sym_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2094), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_DOT_DOT2] = ACTIONS(2269), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2271), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2271), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), - [sym__unquoted_pattern] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_mut] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_export_DASHenv] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_module] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_try] = ACTIONS(1888), + [anon_sym_catch] = ACTIONS(1888), + [anon_sym_finally] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [sym__newline] = ACTIONS(2352), + [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_LBRACK] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_where] = ACTIONS(1888), + [aux_sym_expr_unary_token1] = ACTIONS(1888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1888), + [anon_sym_CARET] = ACTIONS(1888), + [anon_sym_PERCENT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1888), }, [STATE(735)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4640), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4719), - [sym__record_key] = STATE(5246), + [aux_sym__repeat_newline] = STATE(734), [sym_comment] = STATE(735), - [aux_sym__match_pattern_record_body_repeat1] = STATE(736), - [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(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1742), - [aux_sym_cmd_identifier_token4] = ACTIONS(1742), - [aux_sym_cmd_identifier_token5] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1766), - [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(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_decimal_token4] = ACTIONS(1756), - [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(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [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(1764), + [anon_sym_export] = ACTIONS(2355), + [anon_sym_alias] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [aux_sym_cmd_identifier_token1] = ACTIONS(2355), + [anon_sym_def] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_export_DASHenv] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_module] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_catch] = ACTIONS(2357), + [anon_sym_finally] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_in] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_null] = ACTIONS(2357), + [aux_sym_cmd_identifier_token3] = ACTIONS(2357), + [aux_sym_cmd_identifier_token4] = ACTIONS(2357), + [aux_sym_cmd_identifier_token5] = ACTIONS(2357), + [sym__newline] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_err_GT_PIPE] = ACTIONS(2359), + [anon_sym_out_GT_PIPE] = ACTIONS(2359), + [anon_sym_e_GT_PIPE] = ACTIONS(2359), + [anon_sym_o_GT_PIPE] = ACTIONS(2359), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2359), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2359), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2359), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_DOT_DOT] = ACTIONS(2355), + [anon_sym_where] = ACTIONS(2357), + [aux_sym_expr_unary_token1] = ACTIONS(2357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2357), + [anon_sym_DOT_DOT_LT] = ACTIONS(2357), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2357), + [aux_sym__val_number_decimal_token3] = ACTIONS(2357), + [aux_sym__val_number_decimal_token4] = ACTIONS(2357), + [aux_sym__val_number_token1] = ACTIONS(2357), + [aux_sym__val_number_token2] = ACTIONS(2357), + [aux_sym__val_number_token3] = ACTIONS(2357), + [anon_sym_0b] = ACTIONS(2355), + [anon_sym_0o] = ACTIONS(2355), + [anon_sym_0x] = ACTIONS(2355), + [sym_val_date] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_BQUOTE] = ACTIONS(2357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2357), }, [STATE(736)] = { - [sym_cmd_identifier] = STATE(4489), - [sym_expr_parenthesized] = STATE(5476), - [sym__spread_parenthesized] = STATE(4966), - [sym__spread_variable] = STATE(4967), - [sym_val_variable] = STATE(4728), - [sym_val_number] = STATE(5476), - [sym__val_number_decimal] = STATE(1991), - [sym__val_number] = STATE(744), - [sym_val_string] = STATE(5476), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(5476), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym__spread_record] = STATE(4966), - [sym_record_entry] = STATE(4995), - [sym__record_key] = STATE(5246), [sym_comment] = STATE(736), - [aux_sym__match_pattern_record_body_repeat1] = STATE(736), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_mut] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [aux_sym_cmd_identifier_token1] = ACTIONS(2279), - [anon_sym_def] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_export_DASHenv] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_finally] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2282), - [anon_sym_false] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(2282), - [aux_sym_cmd_identifier_token3] = ACTIONS(2285), - [aux_sym_cmd_identifier_token4] = ACTIONS(2285), - [aux_sym_cmd_identifier_token5] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2306), - [aux_sym__val_number_decimal_token3] = ACTIONS(2309), - [aux_sym__val_number_decimal_token4] = ACTIONS(2309), - [aux_sym__val_number_token1] = ACTIONS(2312), - [aux_sym__val_number_token2] = ACTIONS(2312), - [aux_sym__val_number_token3] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2318), - [anon_sym_BQUOTE] = ACTIONS(2321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_in] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_err_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_GT_PIPE] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2361), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_GT2] = ACTIONS(2363), + [anon_sym_DASH2] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_EQ_GT] = ACTIONS(2361), + [anon_sym_STAR2] = ACTIONS(2363), + [anon_sym_and2] = ACTIONS(2361), + [anon_sym_xor2] = ACTIONS(2361), + [anon_sym_or2] = ACTIONS(2361), + [anon_sym_not_DASHin2] = ACTIONS(2361), + [anon_sym_has2] = ACTIONS(2361), + [anon_sym_not_DASHhas2] = ACTIONS(2361), + [anon_sym_starts_DASHwith2] = ACTIONS(2361), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2361), + [anon_sym_ends_DASHwith2] = ACTIONS(2361), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2361), + [anon_sym_EQ_EQ2] = ACTIONS(2361), + [anon_sym_BANG_EQ2] = ACTIONS(2361), + [anon_sym_LT2] = ACTIONS(2363), + [anon_sym_LT_EQ2] = ACTIONS(2361), + [anon_sym_GT_EQ2] = ACTIONS(2361), + [anon_sym_EQ_TILDE2] = ACTIONS(2361), + [anon_sym_BANG_TILDE2] = ACTIONS(2361), + [anon_sym_like2] = ACTIONS(2361), + [anon_sym_not_DASHlike2] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR_STAR2] = ACTIONS(2361), + [anon_sym_PLUS_PLUS2] = ACTIONS(2361), + [anon_sym_SLASH2] = ACTIONS(2363), + [anon_sym_mod2] = ACTIONS(2361), + [anon_sym_SLASH_SLASH2] = ACTIONS(2361), + [anon_sym_PLUS2] = ACTIONS(2363), + [anon_sym_bit_DASHshl2] = ACTIONS(2361), + [anon_sym_bit_DASHshr2] = ACTIONS(2361), + [anon_sym_bit_DASHand2] = ACTIONS(2361), + [anon_sym_bit_DASHxor2] = ACTIONS(2361), + [anon_sym_bit_DASHor2] = ACTIONS(2361), + [anon_sym_err_GT] = ACTIONS(2363), + [anon_sym_out_GT] = ACTIONS(2363), + [anon_sym_e_GT] = ACTIONS(2363), + [anon_sym_o_GT] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT] = ACTIONS(2363), + [anon_sym_err_GT_GT] = ACTIONS(2361), + [anon_sym_out_GT_GT] = ACTIONS(2361), + [anon_sym_e_GT_GT] = ACTIONS(2361), + [anon_sym_o_GT_GT] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(737)] = { [sym_comment] = STATE(737), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [sym__newline] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_err_GT_PIPE] = ACTIONS(2336), - [anon_sym_out_GT_PIPE] = ACTIONS(2336), - [anon_sym_e_GT_PIPE] = ACTIONS(2336), - [anon_sym_o_GT_PIPE] = ACTIONS(2336), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2336), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2336), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2336), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2336), - [anon_sym_RPAREN] = ACTIONS(2336), - [anon_sym_GT2] = ACTIONS(2338), - [anon_sym_DASH2] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_EQ_GT] = ACTIONS(2336), - [anon_sym_STAR2] = ACTIONS(2338), - [anon_sym_and2] = ACTIONS(2336), - [anon_sym_xor2] = ACTIONS(2336), - [anon_sym_or2] = ACTIONS(2336), - [anon_sym_not_DASHin2] = ACTIONS(2336), - [anon_sym_has2] = ACTIONS(2336), - [anon_sym_not_DASHhas2] = ACTIONS(2336), - [anon_sym_starts_DASHwith2] = ACTIONS(2336), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2336), - [anon_sym_ends_DASHwith2] = ACTIONS(2336), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2336), - [anon_sym_EQ_EQ2] = ACTIONS(2336), - [anon_sym_BANG_EQ2] = ACTIONS(2336), - [anon_sym_LT2] = ACTIONS(2338), - [anon_sym_LT_EQ2] = ACTIONS(2336), - [anon_sym_GT_EQ2] = ACTIONS(2336), - [anon_sym_EQ_TILDE2] = ACTIONS(2336), - [anon_sym_BANG_TILDE2] = ACTIONS(2336), - [anon_sym_like2] = ACTIONS(2336), - [anon_sym_not_DASHlike2] = ACTIONS(2336), - [anon_sym_LPAREN2] = ACTIONS(2336), - [anon_sym_STAR_STAR2] = ACTIONS(2336), - [anon_sym_PLUS_PLUS2] = ACTIONS(2336), - [anon_sym_SLASH2] = ACTIONS(2338), - [anon_sym_mod2] = ACTIONS(2336), - [anon_sym_SLASH_SLASH2] = ACTIONS(2336), - [anon_sym_PLUS2] = ACTIONS(2338), - [anon_sym_bit_DASHshl2] = ACTIONS(2336), - [anon_sym_bit_DASHshr2] = ACTIONS(2336), - [anon_sym_bit_DASHand2] = ACTIONS(2336), - [anon_sym_bit_DASHxor2] = ACTIONS(2336), - [anon_sym_bit_DASHor2] = ACTIONS(2336), - [anon_sym_err_GT] = ACTIONS(2338), - [anon_sym_out_GT] = ACTIONS(2338), - [anon_sym_e_GT] = ACTIONS(2338), - [anon_sym_o_GT] = ACTIONS(2338), - [anon_sym_err_PLUSout_GT] = ACTIONS(2338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2338), - [anon_sym_o_PLUSe_GT] = ACTIONS(2338), - [anon_sym_e_PLUSo_GT] = ACTIONS(2338), - [anon_sym_err_GT_GT] = ACTIONS(2336), - [anon_sym_out_GT_GT] = ACTIONS(2336), - [anon_sym_e_GT_GT] = ACTIONS(2336), - [anon_sym_o_GT_GT] = ACTIONS(2336), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2336), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2336), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2336), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2336), + [ts_builtin_sym_end] = ACTIONS(1557), + [anon_sym_in] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(1557), + [anon_sym_GT2] = ACTIONS(1555), + [anon_sym_DASH2] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1555), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_has2] = ACTIONS(1557), + [anon_sym_not_DASHhas2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_like2] = ACTIONS(1557), + [anon_sym_not_DASHlike2] = ACTIONS(1557), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1557), + [anon_sym_SLASH2] = ACTIONS(1555), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1555), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [anon_sym_DOT_DOT2] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), + [anon_sym_DOT2] = ACTIONS(1555), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(3), }, [STATE(738)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(738), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [ts_builtin_sym_end] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_GT2] = ACTIONS(1923), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_STAR2] = ACTIONS(1923), + [anon_sym_and2] = ACTIONS(1921), + [anon_sym_xor2] = ACTIONS(1921), + [anon_sym_or2] = ACTIONS(1921), + [anon_sym_not_DASHin2] = ACTIONS(1921), + [anon_sym_has2] = ACTIONS(1921), + [anon_sym_not_DASHhas2] = ACTIONS(1921), + [anon_sym_starts_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), + [anon_sym_ends_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), + [anon_sym_EQ_EQ2] = ACTIONS(1921), + [anon_sym_BANG_EQ2] = ACTIONS(1921), + [anon_sym_LT2] = ACTIONS(1923), + [anon_sym_LT_EQ2] = ACTIONS(1921), + [anon_sym_GT_EQ2] = ACTIONS(1921), + [anon_sym_EQ_TILDE2] = ACTIONS(1921), + [anon_sym_BANG_TILDE2] = ACTIONS(1921), + [anon_sym_like2] = ACTIONS(1921), + [anon_sym_not_DASHlike2] = ACTIONS(1921), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_STAR_STAR2] = ACTIONS(1921), + [anon_sym_PLUS_PLUS2] = ACTIONS(1921), + [anon_sym_SLASH2] = ACTIONS(1923), + [anon_sym_mod2] = ACTIONS(1921), + [anon_sym_SLASH_SLASH2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1923), + [anon_sym_bit_DASHshl2] = ACTIONS(1921), + [anon_sym_bit_DASHshr2] = ACTIONS(1921), + [anon_sym_bit_DASHand2] = ACTIONS(1921), + [anon_sym_bit_DASHxor2] = ACTIONS(1921), + [anon_sym_bit_DASHor2] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1923), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1923), + [anon_sym_out_GT] = ACTIONS(1923), + [anon_sym_e_GT] = ACTIONS(1923), + [anon_sym_o_GT] = ACTIONS(1923), + [anon_sym_err_PLUSout_GT] = ACTIONS(1923), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), + [anon_sym_o_PLUSe_GT] = ACTIONS(1923), + [anon_sym_e_PLUSo_GT] = ACTIONS(1923), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [sym__unquoted_pattern] = ACTIONS(1923), [anon_sym_POUND] = ACTIONS(3), }, [STATE(739)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(4629), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4873), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(739), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_record_body_repeat1] = STATE(732), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(740)] = { [sym_comment] = STATE(740), - [anon_sym_if] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_EQ_GT] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_COLON2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token1] = ACTIONS(2365), + [aux_sym__immediate_decimal_token5] = ACTIONS(2367), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(741)] = { - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(741), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [ts_builtin_sym_end] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [STATE(742)] = { [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [sym__newline] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_err_GT_PIPE] = ACTIONS(2340), - [anon_sym_out_GT_PIPE] = ACTIONS(2340), - [anon_sym_e_GT_PIPE] = ACTIONS(2340), - [anon_sym_o_GT_PIPE] = ACTIONS(2340), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), - [anon_sym_RPAREN] = ACTIONS(2340), - [anon_sym_GT2] = ACTIONS(2342), - [anon_sym_DASH2] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2340), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_EQ_GT] = ACTIONS(2340), - [anon_sym_STAR2] = ACTIONS(2342), - [anon_sym_and2] = ACTIONS(2340), - [anon_sym_xor2] = ACTIONS(2340), - [anon_sym_or2] = ACTIONS(2340), - [anon_sym_not_DASHin2] = ACTIONS(2340), - [anon_sym_has2] = ACTIONS(2340), - [anon_sym_not_DASHhas2] = ACTIONS(2340), - [anon_sym_starts_DASHwith2] = ACTIONS(2340), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), - [anon_sym_ends_DASHwith2] = ACTIONS(2340), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), - [anon_sym_EQ_EQ2] = ACTIONS(2340), - [anon_sym_BANG_EQ2] = ACTIONS(2340), - [anon_sym_LT2] = ACTIONS(2342), - [anon_sym_LT_EQ2] = ACTIONS(2340), - [anon_sym_GT_EQ2] = ACTIONS(2340), - [anon_sym_EQ_TILDE2] = ACTIONS(2340), - [anon_sym_BANG_TILDE2] = ACTIONS(2340), - [anon_sym_like2] = ACTIONS(2340), - [anon_sym_not_DASHlike2] = ACTIONS(2340), - [anon_sym_STAR_STAR2] = ACTIONS(2340), - [anon_sym_PLUS_PLUS2] = ACTIONS(2340), - [anon_sym_SLASH2] = ACTIONS(2342), - [anon_sym_mod2] = ACTIONS(2340), - [anon_sym_SLASH_SLASH2] = ACTIONS(2340), - [anon_sym_PLUS2] = ACTIONS(2342), - [anon_sym_bit_DASHshl2] = ACTIONS(2340), - [anon_sym_bit_DASHshr2] = ACTIONS(2340), - [anon_sym_bit_DASHand2] = ACTIONS(2340), - [anon_sym_bit_DASHxor2] = ACTIONS(2340), - [anon_sym_bit_DASHor2] = ACTIONS(2340), - [anon_sym_LBRACK2] = ACTIONS(2344), - [anon_sym_err_GT] = ACTIONS(2342), - [anon_sym_out_GT] = ACTIONS(2342), - [anon_sym_e_GT] = ACTIONS(2342), - [anon_sym_o_GT] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT] = ACTIONS(2342), - [anon_sym_err_GT_GT] = ACTIONS(2340), - [anon_sym_out_GT_GT] = ACTIONS(2340), - [anon_sym_e_GT_GT] = ACTIONS(2340), - [anon_sym_o_GT_GT] = ACTIONS(2340), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [ts_builtin_sym_end] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_err_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_GT_PIPE] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1563), + [anon_sym_GT2] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1563), + [anon_sym_STAR2] = ACTIONS(1561), + [anon_sym_and2] = ACTIONS(1563), + [anon_sym_xor2] = ACTIONS(1563), + [anon_sym_or2] = ACTIONS(1563), + [anon_sym_not_DASHin2] = ACTIONS(1563), + [anon_sym_has2] = ACTIONS(1563), + [anon_sym_not_DASHhas2] = ACTIONS(1563), + [anon_sym_starts_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), + [anon_sym_ends_DASHwith2] = ACTIONS(1563), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), + [anon_sym_EQ_EQ2] = ACTIONS(1563), + [anon_sym_BANG_EQ2] = ACTIONS(1563), + [anon_sym_LT2] = ACTIONS(1561), + [anon_sym_LT_EQ2] = ACTIONS(1563), + [anon_sym_GT_EQ2] = ACTIONS(1563), + [anon_sym_EQ_TILDE2] = ACTIONS(1563), + [anon_sym_BANG_TILDE2] = ACTIONS(1563), + [anon_sym_like2] = ACTIONS(1563), + [anon_sym_not_DASHlike2] = ACTIONS(1563), + [anon_sym_STAR_STAR2] = ACTIONS(1563), + [anon_sym_PLUS_PLUS2] = ACTIONS(1563), + [anon_sym_SLASH2] = ACTIONS(1561), + [anon_sym_mod2] = ACTIONS(1563), + [anon_sym_SLASH_SLASH2] = ACTIONS(1563), + [anon_sym_PLUS2] = ACTIONS(1561), + [anon_sym_bit_DASHshl2] = ACTIONS(1563), + [anon_sym_bit_DASHshr2] = ACTIONS(1563), + [anon_sym_bit_DASHand2] = ACTIONS(1563), + [anon_sym_bit_DASHxor2] = ACTIONS(1563), + [anon_sym_bit_DASHor2] = ACTIONS(1563), + [anon_sym_DOT_DOT2] = ACTIONS(1561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), + [anon_sym_DOT2] = ACTIONS(1561), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [anon_sym_err_GT_GT] = ACTIONS(1563), + [anon_sym_out_GT_GT] = ACTIONS(1563), + [anon_sym_e_GT_GT] = ACTIONS(1563), + [anon_sym_o_GT_GT] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), [anon_sym_POUND] = ACTIONS(3), }, [STATE(743)] = { + [sym__expr_parenthesized_immediate] = STATE(5283), [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2227), - [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(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [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_in] = ACTIONS(2369), + [sym__newline] = ACTIONS(2369), + [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(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_EQ_GT] = ACTIONS(2369), + [anon_sym_STAR2] = ACTIONS(2371), + [anon_sym_and2] = ACTIONS(2369), + [anon_sym_xor2] = ACTIONS(2369), + [anon_sym_or2] = ACTIONS(2369), + [anon_sym_not_DASHin2] = ACTIONS(2369), + [anon_sym_has2] = ACTIONS(2369), + [anon_sym_not_DASHhas2] = ACTIONS(2369), + [anon_sym_starts_DASHwith2] = ACTIONS(2369), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2369), + [anon_sym_ends_DASHwith2] = ACTIONS(2369), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2369), + [anon_sym_EQ_EQ2] = ACTIONS(2369), + [anon_sym_BANG_EQ2] = ACTIONS(2369), + [anon_sym_LT2] = ACTIONS(2371), + [anon_sym_LT_EQ2] = ACTIONS(2369), + [anon_sym_GT_EQ2] = ACTIONS(2369), + [anon_sym_EQ_TILDE2] = ACTIONS(2369), + [anon_sym_BANG_TILDE2] = ACTIONS(2369), + [anon_sym_like2] = ACTIONS(2369), + [anon_sym_not_DASHlike2] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2369), + [anon_sym_PLUS_PLUS2] = ACTIONS(2369), + [anon_sym_SLASH2] = ACTIONS(2371), + [anon_sym_mod2] = ACTIONS(2369), + [anon_sym_SLASH_SLASH2] = ACTIONS(2369), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_bit_DASHshl2] = ACTIONS(2369), + [anon_sym_bit_DASHshr2] = ACTIONS(2369), + [anon_sym_bit_DASHand2] = ACTIONS(2369), + [anon_sym_bit_DASHxor2] = ACTIONS(2369), + [anon_sym_bit_DASHor2] = ACTIONS(2369), + [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(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(744)] = { + [sym_cmd_identifier] = STATE(4664), + [sym_expr_parenthesized] = STATE(5503), + [sym__spread_parenthesized] = STATE(4962), + [sym__spread_variable] = STATE(4986), + [sym_val_variable] = STATE(5503), + [sym_val_number] = STATE(5503), + [sym__val_number_decimal] = STATE(2000), + [sym__val_number] = STATE(726), + [sym_val_string] = STATE(5503), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(5503), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym__spread_record] = STATE(4962), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5380), [sym_comment] = STATE(744), - [anon_sym_if] = ACTIONS(2350), - [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_RBRACE] = ACTIONS(2350), - [anon_sym_EQ_GT] = 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_COLON2] = 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), + [aux_sym_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token3] = ACTIONS(1750), + [aux_sym_cmd_identifier_token4] = ACTIONS(1750), + [aux_sym_cmd_identifier_token5] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(745)] = { [sym_comment] = STATE(745), - [anon_sym_in] = ACTIONS(2354), - [sym__newline] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_err_GT_PIPE] = ACTIONS(2354), - [anon_sym_out_GT_PIPE] = ACTIONS(2354), - [anon_sym_e_GT_PIPE] = ACTIONS(2354), - [anon_sym_o_GT_PIPE] = ACTIONS(2354), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2354), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2354), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2354), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2354), - [anon_sym_RPAREN] = ACTIONS(2354), - [anon_sym_GT2] = ACTIONS(2356), - [anon_sym_DASH2] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(2354), - [anon_sym_STAR2] = ACTIONS(2356), - [anon_sym_and2] = ACTIONS(2354), - [anon_sym_xor2] = ACTIONS(2354), - [anon_sym_or2] = ACTIONS(2354), - [anon_sym_not_DASHin2] = ACTIONS(2354), - [anon_sym_has2] = ACTIONS(2354), - [anon_sym_not_DASHhas2] = ACTIONS(2354), - [anon_sym_starts_DASHwith2] = ACTIONS(2354), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2354), - [anon_sym_ends_DASHwith2] = ACTIONS(2354), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2354), - [anon_sym_EQ_EQ2] = ACTIONS(2354), - [anon_sym_BANG_EQ2] = ACTIONS(2354), - [anon_sym_LT2] = ACTIONS(2356), - [anon_sym_LT_EQ2] = ACTIONS(2354), - [anon_sym_GT_EQ2] = ACTIONS(2354), - [anon_sym_EQ_TILDE2] = ACTIONS(2354), - [anon_sym_BANG_TILDE2] = ACTIONS(2354), - [anon_sym_like2] = ACTIONS(2354), - [anon_sym_not_DASHlike2] = ACTIONS(2354), - [anon_sym_STAR_STAR2] = ACTIONS(2354), - [anon_sym_PLUS_PLUS2] = ACTIONS(2354), - [anon_sym_SLASH2] = ACTIONS(2356), - [anon_sym_mod2] = ACTIONS(2354), - [anon_sym_SLASH_SLASH2] = ACTIONS(2354), - [anon_sym_PLUS2] = ACTIONS(2356), - [anon_sym_bit_DASHshl2] = ACTIONS(2354), - [anon_sym_bit_DASHshr2] = ACTIONS(2354), - [anon_sym_bit_DASHand2] = ACTIONS(2354), - [anon_sym_bit_DASHxor2] = ACTIONS(2354), - [anon_sym_bit_DASHor2] = ACTIONS(2354), - [anon_sym_COLON2] = ACTIONS(2354), - [anon_sym_err_GT] = ACTIONS(2356), - [anon_sym_out_GT] = ACTIONS(2356), - [anon_sym_e_GT] = ACTIONS(2356), - [anon_sym_o_GT] = ACTIONS(2356), - [anon_sym_err_PLUSout_GT] = ACTIONS(2356), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2356), - [anon_sym_o_PLUSe_GT] = ACTIONS(2356), - [anon_sym_e_PLUSo_GT] = ACTIONS(2356), - [anon_sym_err_GT_GT] = ACTIONS(2354), - [anon_sym_out_GT_GT] = ACTIONS(2354), - [anon_sym_e_GT_GT] = ACTIONS(2354), - [anon_sym_o_GT_GT] = ACTIONS(2354), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2354), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2354), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2354), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2354), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(746)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2235), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(738), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(746), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(747)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(965), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(747), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(748)] = { - [aux_sym__repeat_newline] = STATE(995), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(748), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(749)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2229), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(718), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(750)] = { - [sym_cell_path] = STATE(1301), - [sym_path] = STATE(703), + [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(2373), + [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(746)] = { + [sym_comment] = STATE(746), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_in] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_err_GT_PIPE] = ACTIONS(2375), + [anon_sym_out_GT_PIPE] = ACTIONS(2375), + [anon_sym_e_GT_PIPE] = ACTIONS(2375), + [anon_sym_o_GT_PIPE] = ACTIONS(2375), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2375), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2375), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2375), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_GT2] = ACTIONS(2377), + [anon_sym_DASH2] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_EQ_GT] = ACTIONS(2375), + [anon_sym_STAR2] = ACTIONS(2377), + [anon_sym_and2] = ACTIONS(2375), + [anon_sym_xor2] = ACTIONS(2375), + [anon_sym_or2] = ACTIONS(2375), + [anon_sym_not_DASHin2] = ACTIONS(2375), + [anon_sym_has2] = ACTIONS(2375), + [anon_sym_not_DASHhas2] = ACTIONS(2375), + [anon_sym_starts_DASHwith2] = ACTIONS(2375), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2375), + [anon_sym_ends_DASHwith2] = ACTIONS(2375), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2375), + [anon_sym_EQ_EQ2] = ACTIONS(2375), + [anon_sym_BANG_EQ2] = ACTIONS(2375), + [anon_sym_LT2] = ACTIONS(2377), + [anon_sym_LT_EQ2] = ACTIONS(2375), + [anon_sym_GT_EQ2] = ACTIONS(2375), + [anon_sym_EQ_TILDE2] = ACTIONS(2375), + [anon_sym_BANG_TILDE2] = ACTIONS(2375), + [anon_sym_like2] = ACTIONS(2375), + [anon_sym_not_DASHlike2] = ACTIONS(2375), + [anon_sym_STAR_STAR2] = ACTIONS(2375), + [anon_sym_PLUS_PLUS2] = ACTIONS(2375), + [anon_sym_SLASH2] = ACTIONS(2377), + [anon_sym_mod2] = ACTIONS(2375), + [anon_sym_SLASH_SLASH2] = ACTIONS(2375), + [anon_sym_PLUS2] = ACTIONS(2377), + [anon_sym_bit_DASHshl2] = ACTIONS(2375), + [anon_sym_bit_DASHshr2] = ACTIONS(2375), + [anon_sym_bit_DASHand2] = ACTIONS(2375), + [anon_sym_bit_DASHxor2] = ACTIONS(2375), + [anon_sym_bit_DASHor2] = ACTIONS(2375), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_err_GT] = ACTIONS(2377), + [anon_sym_out_GT] = ACTIONS(2377), + [anon_sym_e_GT] = ACTIONS(2377), + [anon_sym_o_GT] = ACTIONS(2377), + [anon_sym_err_PLUSout_GT] = ACTIONS(2377), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2377), + [anon_sym_o_PLUSe_GT] = ACTIONS(2377), + [anon_sym_e_PLUSo_GT] = ACTIONS(2377), + [anon_sym_err_GT_GT] = ACTIONS(2375), + [anon_sym_out_GT_GT] = ACTIONS(2375), + [anon_sym_e_GT_GT] = ACTIONS(2375), + [anon_sym_o_GT_GT] = ACTIONS(2375), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2375), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2375), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2375), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(747)] = { + [sym_comment] = STATE(747), + [anon_sym_if] = ACTIONS(2381), + [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_RBRACE] = ACTIONS(2381), + [anon_sym_EQ_GT] = 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(748)] = { + [sym_comment] = STATE(748), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_in] = ACTIONS(2385), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_EQ_GT] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2385), + [anon_sym_xor2] = ACTIONS(2385), + [anon_sym_or2] = ACTIONS(2385), + [anon_sym_not_DASHin2] = ACTIONS(2385), + [anon_sym_has2] = ACTIONS(2385), + [anon_sym_not_DASHhas2] = ACTIONS(2385), + [anon_sym_starts_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2385), + [anon_sym_ends_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2385), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2385), + [anon_sym_like2] = ACTIONS(2385), + [anon_sym_not_DASHlike2] = ACTIONS(2385), + [anon_sym_STAR_STAR2] = ACTIONS(2385), + [anon_sym_PLUS_PLUS2] = ACTIONS(2385), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2385), + [anon_sym_SLASH_SLASH2] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2385), + [anon_sym_bit_DASHshr2] = ACTIONS(2385), + [anon_sym_bit_DASHand2] = ACTIONS(2385), + [anon_sym_bit_DASHxor2] = ACTIONS(2385), + [anon_sym_bit_DASHor2] = ACTIONS(2385), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(749)] = { + [sym_comment] = STATE(749), + [anon_sym_finally] = ACTIONS(2389), + [anon_sym_in] = ACTIONS(2389), + [sym__newline] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_PIPE] = ACTIONS(2389), + [anon_sym_err_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_GT_PIPE] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2389), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_GT2] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(2389), + [anon_sym_STAR2] = ACTIONS(2391), + [anon_sym_and2] = ACTIONS(2389), + [anon_sym_xor2] = ACTIONS(2389), + [anon_sym_or2] = ACTIONS(2389), + [anon_sym_not_DASHin2] = ACTIONS(2389), + [anon_sym_has2] = ACTIONS(2389), + [anon_sym_not_DASHhas2] = ACTIONS(2389), + [anon_sym_starts_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2389), + [anon_sym_ends_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2389), + [anon_sym_EQ_EQ2] = ACTIONS(2389), + [anon_sym_BANG_EQ2] = ACTIONS(2389), + [anon_sym_LT2] = ACTIONS(2391), + [anon_sym_LT_EQ2] = ACTIONS(2389), + [anon_sym_GT_EQ2] = ACTIONS(2389), + [anon_sym_EQ_TILDE2] = ACTIONS(2389), + [anon_sym_BANG_TILDE2] = ACTIONS(2389), + [anon_sym_like2] = ACTIONS(2389), + [anon_sym_not_DASHlike2] = ACTIONS(2389), + [anon_sym_STAR_STAR2] = ACTIONS(2389), + [anon_sym_PLUS_PLUS2] = ACTIONS(2389), + [anon_sym_SLASH2] = ACTIONS(2391), + [anon_sym_mod2] = ACTIONS(2389), + [anon_sym_SLASH_SLASH2] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_bit_DASHshl2] = ACTIONS(2389), + [anon_sym_bit_DASHshr2] = ACTIONS(2389), + [anon_sym_bit_DASHand2] = ACTIONS(2389), + [anon_sym_bit_DASHxor2] = ACTIONS(2389), + [anon_sym_bit_DASHor2] = ACTIONS(2389), + [anon_sym_err_GT] = ACTIONS(2391), + [anon_sym_out_GT] = ACTIONS(2391), + [anon_sym_e_GT] = ACTIONS(2391), + [anon_sym_o_GT] = ACTIONS(2391), + [anon_sym_err_PLUSout_GT] = ACTIONS(2391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2391), + [anon_sym_o_PLUSe_GT] = ACTIONS(2391), + [anon_sym_e_PLUSo_GT] = ACTIONS(2391), + [anon_sym_err_GT_GT] = ACTIONS(2389), + [anon_sym_out_GT_GT] = ACTIONS(2389), + [anon_sym_e_GT_GT] = ACTIONS(2389), + [anon_sym_o_GT_GT] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(750)] = { [sym_comment] = STATE(750), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_GT2] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_STAR2] = ACTIONS(1887), - [anon_sym_and2] = ACTIONS(1885), - [anon_sym_xor2] = ACTIONS(1885), - [anon_sym_or2] = ACTIONS(1885), - [anon_sym_not_DASHin2] = ACTIONS(1885), - [anon_sym_has2] = ACTIONS(1885), - [anon_sym_not_DASHhas2] = ACTIONS(1885), - [anon_sym_starts_DASHwith2] = ACTIONS(1885), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1885), - [anon_sym_ends_DASHwith2] = ACTIONS(1885), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1885), - [anon_sym_EQ_EQ2] = ACTIONS(1885), - [anon_sym_BANG_EQ2] = ACTIONS(1885), - [anon_sym_LT2] = ACTIONS(1887), - [anon_sym_LT_EQ2] = ACTIONS(1885), - [anon_sym_GT_EQ2] = ACTIONS(1885), - [anon_sym_EQ_TILDE2] = ACTIONS(1885), - [anon_sym_BANG_TILDE2] = ACTIONS(1885), - [anon_sym_like2] = ACTIONS(1885), - [anon_sym_not_DASHlike2] = ACTIONS(1885), - [anon_sym_STAR_STAR2] = ACTIONS(1885), - [anon_sym_PLUS_PLUS2] = ACTIONS(1885), - [anon_sym_SLASH2] = ACTIONS(1887), - [anon_sym_mod2] = ACTIONS(1885), - [anon_sym_SLASH_SLASH2] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_bit_DASHshl2] = ACTIONS(1885), - [anon_sym_bit_DASHshr2] = ACTIONS(1885), - [anon_sym_bit_DASHand2] = ACTIONS(1885), - [anon_sym_bit_DASHxor2] = ACTIONS(1885), - [anon_sym_bit_DASHor2] = ACTIONS(1885), - [anon_sym_DOT2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(1887), - [anon_sym_out_GT] = ACTIONS(1887), - [anon_sym_e_GT] = ACTIONS(1887), - [anon_sym_o_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT] = ACTIONS(1887), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [anon_sym_finally] = ACTIONS(2393), + [anon_sym_in] = ACTIONS(2393), + [sym__newline] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2393), + [anon_sym_PIPE] = ACTIONS(2393), + [anon_sym_err_GT_PIPE] = ACTIONS(2393), + [anon_sym_out_GT_PIPE] = ACTIONS(2393), + [anon_sym_e_GT_PIPE] = ACTIONS(2393), + [anon_sym_o_GT_PIPE] = ACTIONS(2393), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2393), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2393), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2393), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_GT2] = ACTIONS(2395), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_EQ_GT] = ACTIONS(2393), + [anon_sym_STAR2] = ACTIONS(2395), + [anon_sym_and2] = ACTIONS(2393), + [anon_sym_xor2] = ACTIONS(2393), + [anon_sym_or2] = ACTIONS(2393), + [anon_sym_not_DASHin2] = ACTIONS(2393), + [anon_sym_has2] = ACTIONS(2393), + [anon_sym_not_DASHhas2] = ACTIONS(2393), + [anon_sym_starts_DASHwith2] = ACTIONS(2393), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2393), + [anon_sym_ends_DASHwith2] = ACTIONS(2393), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2393), + [anon_sym_EQ_EQ2] = ACTIONS(2393), + [anon_sym_BANG_EQ2] = ACTIONS(2393), + [anon_sym_LT2] = ACTIONS(2395), + [anon_sym_LT_EQ2] = ACTIONS(2393), + [anon_sym_GT_EQ2] = ACTIONS(2393), + [anon_sym_EQ_TILDE2] = ACTIONS(2393), + [anon_sym_BANG_TILDE2] = ACTIONS(2393), + [anon_sym_like2] = ACTIONS(2393), + [anon_sym_not_DASHlike2] = ACTIONS(2393), + [anon_sym_STAR_STAR2] = ACTIONS(2393), + [anon_sym_PLUS_PLUS2] = ACTIONS(2393), + [anon_sym_SLASH2] = ACTIONS(2395), + [anon_sym_mod2] = ACTIONS(2393), + [anon_sym_SLASH_SLASH2] = ACTIONS(2393), + [anon_sym_PLUS2] = ACTIONS(2395), + [anon_sym_bit_DASHshl2] = ACTIONS(2393), + [anon_sym_bit_DASHshr2] = ACTIONS(2393), + [anon_sym_bit_DASHand2] = ACTIONS(2393), + [anon_sym_bit_DASHxor2] = ACTIONS(2393), + [anon_sym_bit_DASHor2] = ACTIONS(2393), + [anon_sym_err_GT] = ACTIONS(2395), + [anon_sym_out_GT] = ACTIONS(2395), + [anon_sym_e_GT] = ACTIONS(2395), + [anon_sym_o_GT] = ACTIONS(2395), + [anon_sym_err_PLUSout_GT] = ACTIONS(2395), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2395), + [anon_sym_o_PLUSe_GT] = ACTIONS(2395), + [anon_sym_e_PLUSo_GT] = ACTIONS(2395), + [anon_sym_err_GT_GT] = ACTIONS(2393), + [anon_sym_out_GT_GT] = ACTIONS(2393), + [anon_sym_e_GT_GT] = ACTIONS(2393), + [anon_sym_o_GT_GT] = ACTIONS(2393), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2393), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2393), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2393), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2393), [anon_sym_POUND] = ACTIONS(3), }, [STATE(751)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_finally] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [sym__newline] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_err_GT_PIPE] = ACTIONS(2397), + [anon_sym_out_GT_PIPE] = ACTIONS(2397), + [anon_sym_e_GT_PIPE] = ACTIONS(2397), + [anon_sym_o_GT_PIPE] = ACTIONS(2397), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2397), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2397), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2397), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_GT2] = ACTIONS(2399), + [anon_sym_DASH2] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(2397), + [anon_sym_STAR2] = ACTIONS(2399), + [anon_sym_and2] = ACTIONS(2397), + [anon_sym_xor2] = ACTIONS(2397), + [anon_sym_or2] = ACTIONS(2397), + [anon_sym_not_DASHin2] = ACTIONS(2397), + [anon_sym_has2] = ACTIONS(2397), + [anon_sym_not_DASHhas2] = ACTIONS(2397), + [anon_sym_starts_DASHwith2] = ACTIONS(2397), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2397), + [anon_sym_ends_DASHwith2] = ACTIONS(2397), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2397), + [anon_sym_EQ_EQ2] = ACTIONS(2397), + [anon_sym_BANG_EQ2] = ACTIONS(2397), + [anon_sym_LT2] = ACTIONS(2399), + [anon_sym_LT_EQ2] = ACTIONS(2397), + [anon_sym_GT_EQ2] = ACTIONS(2397), + [anon_sym_EQ_TILDE2] = ACTIONS(2397), + [anon_sym_BANG_TILDE2] = ACTIONS(2397), + [anon_sym_like2] = ACTIONS(2397), + [anon_sym_not_DASHlike2] = ACTIONS(2397), + [anon_sym_STAR_STAR2] = ACTIONS(2397), + [anon_sym_PLUS_PLUS2] = ACTIONS(2397), + [anon_sym_SLASH2] = ACTIONS(2399), + [anon_sym_mod2] = ACTIONS(2397), + [anon_sym_SLASH_SLASH2] = ACTIONS(2397), + [anon_sym_PLUS2] = ACTIONS(2399), + [anon_sym_bit_DASHshl2] = ACTIONS(2397), + [anon_sym_bit_DASHshr2] = ACTIONS(2397), + [anon_sym_bit_DASHand2] = ACTIONS(2397), + [anon_sym_bit_DASHxor2] = ACTIONS(2397), + [anon_sym_bit_DASHor2] = ACTIONS(2397), + [anon_sym_err_GT] = ACTIONS(2399), + [anon_sym_out_GT] = ACTIONS(2399), + [anon_sym_e_GT] = ACTIONS(2399), + [anon_sym_o_GT] = ACTIONS(2399), + [anon_sym_err_PLUSout_GT] = ACTIONS(2399), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2399), + [anon_sym_o_PLUSe_GT] = ACTIONS(2399), + [anon_sym_e_PLUSo_GT] = ACTIONS(2399), + [anon_sym_err_GT_GT] = ACTIONS(2397), + [anon_sym_out_GT_GT] = ACTIONS(2397), + [anon_sym_e_GT_GT] = ACTIONS(2397), + [anon_sym_o_GT_GT] = ACTIONS(2397), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2397), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2397), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2397), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(752)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(752), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [sym__newline] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_err_GT_PIPE] = ACTIONS(2401), + [anon_sym_out_GT_PIPE] = ACTIONS(2401), + [anon_sym_e_GT_PIPE] = ACTIONS(2401), + [anon_sym_o_GT_PIPE] = ACTIONS(2401), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2401), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2401), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2401), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_GT2] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_EQ_GT] = ACTIONS(2401), + [anon_sym_STAR2] = ACTIONS(2403), + [anon_sym_and2] = ACTIONS(2401), + [anon_sym_xor2] = ACTIONS(2401), + [anon_sym_or2] = ACTIONS(2401), + [anon_sym_not_DASHin2] = ACTIONS(2401), + [anon_sym_has2] = ACTIONS(2401), + [anon_sym_not_DASHhas2] = ACTIONS(2401), + [anon_sym_starts_DASHwith2] = ACTIONS(2401), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2401), + [anon_sym_ends_DASHwith2] = ACTIONS(2401), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2401), + [anon_sym_EQ_EQ2] = ACTIONS(2401), + [anon_sym_BANG_EQ2] = ACTIONS(2401), + [anon_sym_LT2] = ACTIONS(2403), + [anon_sym_LT_EQ2] = ACTIONS(2401), + [anon_sym_GT_EQ2] = ACTIONS(2401), + [anon_sym_EQ_TILDE2] = ACTIONS(2401), + [anon_sym_BANG_TILDE2] = ACTIONS(2401), + [anon_sym_like2] = ACTIONS(2401), + [anon_sym_not_DASHlike2] = ACTIONS(2401), + [anon_sym_STAR_STAR2] = ACTIONS(2401), + [anon_sym_PLUS_PLUS2] = ACTIONS(2401), + [anon_sym_SLASH2] = ACTIONS(2403), + [anon_sym_mod2] = ACTIONS(2401), + [anon_sym_SLASH_SLASH2] = ACTIONS(2401), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_bit_DASHshl2] = ACTIONS(2401), + [anon_sym_bit_DASHshr2] = ACTIONS(2401), + [anon_sym_bit_DASHand2] = ACTIONS(2401), + [anon_sym_bit_DASHxor2] = ACTIONS(2401), + [anon_sym_bit_DASHor2] = ACTIONS(2401), + [anon_sym_err_GT] = ACTIONS(2403), + [anon_sym_out_GT] = ACTIONS(2403), + [anon_sym_e_GT] = ACTIONS(2403), + [anon_sym_o_GT] = ACTIONS(2403), + [anon_sym_err_PLUSout_GT] = ACTIONS(2403), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2403), + [anon_sym_o_PLUSe_GT] = ACTIONS(2403), + [anon_sym_e_PLUSo_GT] = ACTIONS(2403), + [anon_sym_err_GT_GT] = ACTIONS(2401), + [anon_sym_out_GT_GT] = ACTIONS(2401), + [anon_sym_e_GT_GT] = ACTIONS(2401), + [anon_sym_o_GT_GT] = ACTIONS(2401), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2401), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2401), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2401), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2401), [anon_sym_POUND] = ACTIONS(3), }, [STATE(753)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2224), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(719), - [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [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(754)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2230), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(722), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [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(755)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(755), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_if] = 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(756)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_cell_path] = STATE(1294), + [sym_path] = STATE(737), [sym_comment] = STATE(756), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1883), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1883), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1883), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(3), }, [STATE(757)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1117), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(757), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(758)] = { [sym_comment] = STATE(758), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [aux_sym__immediate_decimal_token5] = ACTIONS(2130), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_in] = ACTIONS(2423), + [sym__newline] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_err_GT_PIPE] = ACTIONS(2423), + [anon_sym_out_GT_PIPE] = ACTIONS(2423), + [anon_sym_e_GT_PIPE] = ACTIONS(2423), + [anon_sym_o_GT_PIPE] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_GT2] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_EQ_GT] = ACTIONS(2423), + [anon_sym_STAR2] = ACTIONS(2425), + [anon_sym_and2] = ACTIONS(2423), + [anon_sym_xor2] = ACTIONS(2423), + [anon_sym_or2] = ACTIONS(2423), + [anon_sym_not_DASHin2] = ACTIONS(2423), + [anon_sym_has2] = ACTIONS(2423), + [anon_sym_not_DASHhas2] = ACTIONS(2423), + [anon_sym_starts_DASHwith2] = ACTIONS(2423), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2423), + [anon_sym_ends_DASHwith2] = ACTIONS(2423), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2423), + [anon_sym_EQ_EQ2] = ACTIONS(2423), + [anon_sym_BANG_EQ2] = ACTIONS(2423), + [anon_sym_LT2] = ACTIONS(2425), + [anon_sym_LT_EQ2] = ACTIONS(2423), + [anon_sym_GT_EQ2] = ACTIONS(2423), + [anon_sym_EQ_TILDE2] = ACTIONS(2423), + [anon_sym_BANG_TILDE2] = ACTIONS(2423), + [anon_sym_like2] = ACTIONS(2423), + [anon_sym_not_DASHlike2] = ACTIONS(2423), + [anon_sym_STAR_STAR2] = ACTIONS(2423), + [anon_sym_PLUS_PLUS2] = ACTIONS(2423), + [anon_sym_SLASH2] = ACTIONS(2425), + [anon_sym_mod2] = ACTIONS(2423), + [anon_sym_SLASH_SLASH2] = ACTIONS(2423), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_bit_DASHshl2] = ACTIONS(2423), + [anon_sym_bit_DASHshr2] = ACTIONS(2423), + [anon_sym_bit_DASHand2] = ACTIONS(2423), + [anon_sym_bit_DASHxor2] = ACTIONS(2423), + [anon_sym_bit_DASHor2] = ACTIONS(2423), + [anon_sym_err_GT] = ACTIONS(2425), + [anon_sym_out_GT] = ACTIONS(2425), + [anon_sym_e_GT] = ACTIONS(2425), + [anon_sym_o_GT] = ACTIONS(2425), + [anon_sym_err_PLUSout_GT] = ACTIONS(2425), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2425), + [anon_sym_o_PLUSe_GT] = ACTIONS(2425), + [anon_sym_e_PLUSo_GT] = ACTIONS(2425), + [anon_sym_err_GT_GT] = ACTIONS(2423), + [anon_sym_out_GT_GT] = ACTIONS(2423), + [anon_sym_e_GT_GT] = ACTIONS(2423), + [anon_sym_o_GT_GT] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2423), [anon_sym_POUND] = ACTIONS(3), }, [STATE(759)] = { - [aux_sym__repeat_newline] = STATE(1016), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(759), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_finally] = ACTIONS(2427), + [anon_sym_in] = ACTIONS(2427), + [sym__newline] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_err_GT_PIPE] = ACTIONS(2427), + [anon_sym_out_GT_PIPE] = ACTIONS(2427), + [anon_sym_e_GT_PIPE] = ACTIONS(2427), + [anon_sym_o_GT_PIPE] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_GT2] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_EQ_GT] = ACTIONS(2427), + [anon_sym_STAR2] = ACTIONS(2429), + [anon_sym_and2] = ACTIONS(2427), + [anon_sym_xor2] = ACTIONS(2427), + [anon_sym_or2] = ACTIONS(2427), + [anon_sym_not_DASHin2] = ACTIONS(2427), + [anon_sym_has2] = ACTIONS(2427), + [anon_sym_not_DASHhas2] = ACTIONS(2427), + [anon_sym_starts_DASHwith2] = ACTIONS(2427), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2427), + [anon_sym_ends_DASHwith2] = ACTIONS(2427), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2427), + [anon_sym_EQ_EQ2] = ACTIONS(2427), + [anon_sym_BANG_EQ2] = ACTIONS(2427), + [anon_sym_LT2] = ACTIONS(2429), + [anon_sym_LT_EQ2] = ACTIONS(2427), + [anon_sym_GT_EQ2] = ACTIONS(2427), + [anon_sym_EQ_TILDE2] = ACTIONS(2427), + [anon_sym_BANG_TILDE2] = ACTIONS(2427), + [anon_sym_like2] = ACTIONS(2427), + [anon_sym_not_DASHlike2] = ACTIONS(2427), + [anon_sym_STAR_STAR2] = ACTIONS(2427), + [anon_sym_PLUS_PLUS2] = ACTIONS(2427), + [anon_sym_SLASH2] = ACTIONS(2429), + [anon_sym_mod2] = ACTIONS(2427), + [anon_sym_SLASH_SLASH2] = ACTIONS(2427), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_bit_DASHshl2] = ACTIONS(2427), + [anon_sym_bit_DASHshr2] = ACTIONS(2427), + [anon_sym_bit_DASHand2] = ACTIONS(2427), + [anon_sym_bit_DASHxor2] = ACTIONS(2427), + [anon_sym_bit_DASHor2] = ACTIONS(2427), + [anon_sym_err_GT] = ACTIONS(2429), + [anon_sym_out_GT] = ACTIONS(2429), + [anon_sym_e_GT] = ACTIONS(2429), + [anon_sym_o_GT] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT] = ACTIONS(2429), + [anon_sym_err_GT_GT] = ACTIONS(2427), + [anon_sym_out_GT_GT] = ACTIONS(2427), + [anon_sym_e_GT_GT] = ACTIONS(2427), + [anon_sym_o_GT_GT] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2427), [anon_sym_POUND] = ACTIONS(3), }, [STATE(760)] = { [sym_comment] = STATE(760), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_in] = ACTIONS(2368), - [sym__newline] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_err_GT_PIPE] = ACTIONS(2368), - [anon_sym_out_GT_PIPE] = ACTIONS(2368), - [anon_sym_e_GT_PIPE] = ACTIONS(2368), - [anon_sym_o_GT_PIPE] = ACTIONS(2368), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2368), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2368), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2368), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2368), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_GT2] = ACTIONS(2370), - [anon_sym_DASH2] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2368), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_EQ_GT] = ACTIONS(2368), - [anon_sym_STAR2] = ACTIONS(2370), - [anon_sym_and2] = ACTIONS(2368), - [anon_sym_xor2] = ACTIONS(2368), - [anon_sym_or2] = ACTIONS(2368), - [anon_sym_not_DASHin2] = ACTIONS(2368), - [anon_sym_has2] = ACTIONS(2368), - [anon_sym_not_DASHhas2] = ACTIONS(2368), - [anon_sym_starts_DASHwith2] = ACTIONS(2368), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2368), - [anon_sym_ends_DASHwith2] = ACTIONS(2368), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2368), - [anon_sym_EQ_EQ2] = ACTIONS(2368), - [anon_sym_BANG_EQ2] = ACTIONS(2368), - [anon_sym_LT2] = ACTIONS(2370), - [anon_sym_LT_EQ2] = ACTIONS(2368), - [anon_sym_GT_EQ2] = ACTIONS(2368), - [anon_sym_EQ_TILDE2] = ACTIONS(2368), - [anon_sym_BANG_TILDE2] = ACTIONS(2368), - [anon_sym_like2] = ACTIONS(2368), - [anon_sym_not_DASHlike2] = ACTIONS(2368), - [anon_sym_STAR_STAR2] = ACTIONS(2368), - [anon_sym_PLUS_PLUS2] = ACTIONS(2368), - [anon_sym_SLASH2] = ACTIONS(2370), - [anon_sym_mod2] = ACTIONS(2368), - [anon_sym_SLASH_SLASH2] = ACTIONS(2368), - [anon_sym_PLUS2] = ACTIONS(2370), - [anon_sym_bit_DASHshl2] = ACTIONS(2368), - [anon_sym_bit_DASHshr2] = ACTIONS(2368), - [anon_sym_bit_DASHand2] = ACTIONS(2368), - [anon_sym_bit_DASHxor2] = ACTIONS(2368), - [anon_sym_bit_DASHor2] = ACTIONS(2368), - [anon_sym_err_GT] = ACTIONS(2370), - [anon_sym_out_GT] = ACTIONS(2370), - [anon_sym_e_GT] = ACTIONS(2370), - [anon_sym_o_GT] = ACTIONS(2370), - [anon_sym_err_PLUSout_GT] = ACTIONS(2370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2370), - [anon_sym_o_PLUSe_GT] = ACTIONS(2370), - [anon_sym_e_PLUSo_GT] = ACTIONS(2370), - [anon_sym_err_GT_GT] = ACTIONS(2368), - [anon_sym_out_GT_GT] = ACTIONS(2368), - [anon_sym_e_GT_GT] = ACTIONS(2368), - [anon_sym_o_GT_GT] = ACTIONS(2368), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2368), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2368), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2368), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_in] = ACTIONS(2431), + [sym__newline] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_err_GT_PIPE] = ACTIONS(2431), + [anon_sym_out_GT_PIPE] = ACTIONS(2431), + [anon_sym_e_GT_PIPE] = ACTIONS(2431), + [anon_sym_o_GT_PIPE] = ACTIONS(2431), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2431), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2431), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2431), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_GT2] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(2431), + [anon_sym_STAR2] = ACTIONS(2433), + [anon_sym_and2] = ACTIONS(2431), + [anon_sym_xor2] = ACTIONS(2431), + [anon_sym_or2] = ACTIONS(2431), + [anon_sym_not_DASHin2] = ACTIONS(2431), + [anon_sym_has2] = ACTIONS(2431), + [anon_sym_not_DASHhas2] = ACTIONS(2431), + [anon_sym_starts_DASHwith2] = ACTIONS(2431), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2431), + [anon_sym_ends_DASHwith2] = ACTIONS(2431), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2431), + [anon_sym_EQ_EQ2] = ACTIONS(2431), + [anon_sym_BANG_EQ2] = ACTIONS(2431), + [anon_sym_LT2] = ACTIONS(2433), + [anon_sym_LT_EQ2] = ACTIONS(2431), + [anon_sym_GT_EQ2] = ACTIONS(2431), + [anon_sym_EQ_TILDE2] = ACTIONS(2431), + [anon_sym_BANG_TILDE2] = ACTIONS(2431), + [anon_sym_like2] = ACTIONS(2431), + [anon_sym_not_DASHlike2] = ACTIONS(2431), + [anon_sym_STAR_STAR2] = ACTIONS(2431), + [anon_sym_PLUS_PLUS2] = ACTIONS(2431), + [anon_sym_SLASH2] = ACTIONS(2433), + [anon_sym_mod2] = ACTIONS(2431), + [anon_sym_SLASH_SLASH2] = ACTIONS(2431), + [anon_sym_PLUS2] = ACTIONS(2433), + [anon_sym_bit_DASHshl2] = ACTIONS(2431), + [anon_sym_bit_DASHshr2] = ACTIONS(2431), + [anon_sym_bit_DASHand2] = ACTIONS(2431), + [anon_sym_bit_DASHxor2] = ACTIONS(2431), + [anon_sym_bit_DASHor2] = ACTIONS(2431), + [anon_sym_err_GT] = ACTIONS(2433), + [anon_sym_out_GT] = ACTIONS(2433), + [anon_sym_e_GT] = ACTIONS(2433), + [anon_sym_o_GT] = ACTIONS(2433), + [anon_sym_err_PLUSout_GT] = ACTIONS(2433), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2433), + [anon_sym_o_PLUSe_GT] = ACTIONS(2433), + [anon_sym_e_PLUSo_GT] = ACTIONS(2433), + [anon_sym_err_GT_GT] = ACTIONS(2431), + [anon_sym_out_GT_GT] = ACTIONS(2431), + [anon_sym_e_GT_GT] = ACTIONS(2431), + [anon_sym_o_GT_GT] = ACTIONS(2431), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2431), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2431), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2431), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2431), [anon_sym_POUND] = ACTIONS(3), }, [STATE(761)] = { - [aux_sym__repeat_newline] = STATE(1018), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(761), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_in] = ACTIONS(2435), + [sym__newline] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_err_GT_PIPE] = ACTIONS(2435), + [anon_sym_out_GT_PIPE] = ACTIONS(2435), + [anon_sym_e_GT_PIPE] = ACTIONS(2435), + [anon_sym_o_GT_PIPE] = ACTIONS(2435), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2435), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2435), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2435), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_GT2] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_STAR2] = ACTIONS(2437), + [anon_sym_and2] = ACTIONS(2435), + [anon_sym_xor2] = ACTIONS(2435), + [anon_sym_or2] = ACTIONS(2435), + [anon_sym_not_DASHin2] = ACTIONS(2435), + [anon_sym_has2] = ACTIONS(2435), + [anon_sym_not_DASHhas2] = ACTIONS(2435), + [anon_sym_starts_DASHwith2] = ACTIONS(2435), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2435), + [anon_sym_ends_DASHwith2] = ACTIONS(2435), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2435), + [anon_sym_EQ_EQ2] = ACTIONS(2435), + [anon_sym_BANG_EQ2] = ACTIONS(2435), + [anon_sym_LT2] = ACTIONS(2437), + [anon_sym_LT_EQ2] = ACTIONS(2435), + [anon_sym_GT_EQ2] = ACTIONS(2435), + [anon_sym_EQ_TILDE2] = ACTIONS(2435), + [anon_sym_BANG_TILDE2] = ACTIONS(2435), + [anon_sym_like2] = ACTIONS(2435), + [anon_sym_not_DASHlike2] = ACTIONS(2435), + [anon_sym_STAR_STAR2] = ACTIONS(2435), + [anon_sym_PLUS_PLUS2] = ACTIONS(2435), + [anon_sym_SLASH2] = ACTIONS(2437), + [anon_sym_mod2] = ACTIONS(2435), + [anon_sym_SLASH_SLASH2] = ACTIONS(2435), + [anon_sym_PLUS2] = ACTIONS(2437), + [anon_sym_bit_DASHshl2] = ACTIONS(2435), + [anon_sym_bit_DASHshr2] = ACTIONS(2435), + [anon_sym_bit_DASHand2] = ACTIONS(2435), + [anon_sym_bit_DASHxor2] = ACTIONS(2435), + [anon_sym_bit_DASHor2] = ACTIONS(2435), + [anon_sym_err_GT] = ACTIONS(2437), + [anon_sym_out_GT] = ACTIONS(2437), + [anon_sym_e_GT] = ACTIONS(2437), + [anon_sym_o_GT] = ACTIONS(2437), + [anon_sym_err_PLUSout_GT] = ACTIONS(2437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2437), + [anon_sym_o_PLUSe_GT] = ACTIONS(2437), + [anon_sym_e_PLUSo_GT] = ACTIONS(2437), + [anon_sym_err_GT_GT] = ACTIONS(2435), + [anon_sym_out_GT_GT] = ACTIONS(2435), + [anon_sym_e_GT_GT] = ACTIONS(2435), + [anon_sym_o_GT_GT] = ACTIONS(2435), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2435), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2435), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2435), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2435), [anon_sym_POUND] = ACTIONS(3), }, [STATE(762)] = { [sym_comment] = STATE(762), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_in] = ACTIONS(2372), - [sym__newline] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_err_GT_PIPE] = ACTIONS(2372), - [anon_sym_out_GT_PIPE] = ACTIONS(2372), - [anon_sym_e_GT_PIPE] = ACTIONS(2372), - [anon_sym_o_GT_PIPE] = ACTIONS(2372), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2372), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2372), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2372), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2372), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_GT2] = ACTIONS(2374), - [anon_sym_DASH2] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_EQ_GT] = ACTIONS(2372), - [anon_sym_STAR2] = ACTIONS(2374), - [anon_sym_and2] = ACTIONS(2372), - [anon_sym_xor2] = ACTIONS(2372), - [anon_sym_or2] = ACTIONS(2372), - [anon_sym_not_DASHin2] = ACTIONS(2372), - [anon_sym_has2] = ACTIONS(2372), - [anon_sym_not_DASHhas2] = ACTIONS(2372), - [anon_sym_starts_DASHwith2] = ACTIONS(2372), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2372), - [anon_sym_ends_DASHwith2] = ACTIONS(2372), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2372), - [anon_sym_EQ_EQ2] = ACTIONS(2372), - [anon_sym_BANG_EQ2] = ACTIONS(2372), - [anon_sym_LT2] = ACTIONS(2374), - [anon_sym_LT_EQ2] = ACTIONS(2372), - [anon_sym_GT_EQ2] = ACTIONS(2372), - [anon_sym_EQ_TILDE2] = ACTIONS(2372), - [anon_sym_BANG_TILDE2] = ACTIONS(2372), - [anon_sym_like2] = ACTIONS(2372), - [anon_sym_not_DASHlike2] = ACTIONS(2372), - [anon_sym_STAR_STAR2] = ACTIONS(2372), - [anon_sym_PLUS_PLUS2] = ACTIONS(2372), - [anon_sym_SLASH2] = ACTIONS(2374), - [anon_sym_mod2] = ACTIONS(2372), - [anon_sym_SLASH_SLASH2] = ACTIONS(2372), - [anon_sym_PLUS2] = ACTIONS(2374), - [anon_sym_bit_DASHshl2] = ACTIONS(2372), - [anon_sym_bit_DASHshr2] = ACTIONS(2372), - [anon_sym_bit_DASHand2] = ACTIONS(2372), - [anon_sym_bit_DASHxor2] = ACTIONS(2372), - [anon_sym_bit_DASHor2] = ACTIONS(2372), - [anon_sym_err_GT] = ACTIONS(2374), - [anon_sym_out_GT] = ACTIONS(2374), - [anon_sym_e_GT] = ACTIONS(2374), - [anon_sym_o_GT] = ACTIONS(2374), - [anon_sym_err_PLUSout_GT] = ACTIONS(2374), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2374), - [anon_sym_o_PLUSe_GT] = ACTIONS(2374), - [anon_sym_e_PLUSo_GT] = ACTIONS(2374), - [anon_sym_err_GT_GT] = ACTIONS(2372), - [anon_sym_out_GT_GT] = ACTIONS(2372), - [anon_sym_e_GT_GT] = ACTIONS(2372), - [anon_sym_o_GT_GT] = ACTIONS(2372), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2372), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2372), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2372), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_in] = ACTIONS(2439), + [sym__newline] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_err_GT_PIPE] = ACTIONS(2439), + [anon_sym_out_GT_PIPE] = ACTIONS(2439), + [anon_sym_e_GT_PIPE] = ACTIONS(2439), + [anon_sym_o_GT_PIPE] = ACTIONS(2439), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2439), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2439), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2439), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_GT2] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_EQ_GT] = ACTIONS(2439), + [anon_sym_STAR2] = ACTIONS(2441), + [anon_sym_and2] = ACTIONS(2439), + [anon_sym_xor2] = ACTIONS(2439), + [anon_sym_or2] = ACTIONS(2439), + [anon_sym_not_DASHin2] = ACTIONS(2439), + [anon_sym_has2] = ACTIONS(2439), + [anon_sym_not_DASHhas2] = ACTIONS(2439), + [anon_sym_starts_DASHwith2] = ACTIONS(2439), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2439), + [anon_sym_ends_DASHwith2] = ACTIONS(2439), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2439), + [anon_sym_EQ_EQ2] = ACTIONS(2439), + [anon_sym_BANG_EQ2] = ACTIONS(2439), + [anon_sym_LT2] = ACTIONS(2441), + [anon_sym_LT_EQ2] = ACTIONS(2439), + [anon_sym_GT_EQ2] = ACTIONS(2439), + [anon_sym_EQ_TILDE2] = ACTIONS(2439), + [anon_sym_BANG_TILDE2] = ACTIONS(2439), + [anon_sym_like2] = ACTIONS(2439), + [anon_sym_not_DASHlike2] = ACTIONS(2439), + [anon_sym_STAR_STAR2] = ACTIONS(2439), + [anon_sym_PLUS_PLUS2] = ACTIONS(2439), + [anon_sym_SLASH2] = ACTIONS(2441), + [anon_sym_mod2] = ACTIONS(2439), + [anon_sym_SLASH_SLASH2] = ACTIONS(2439), + [anon_sym_PLUS2] = ACTIONS(2441), + [anon_sym_bit_DASHshl2] = ACTIONS(2439), + [anon_sym_bit_DASHshr2] = ACTIONS(2439), + [anon_sym_bit_DASHand2] = ACTIONS(2439), + [anon_sym_bit_DASHxor2] = ACTIONS(2439), + [anon_sym_bit_DASHor2] = ACTIONS(2439), + [anon_sym_err_GT] = ACTIONS(2441), + [anon_sym_out_GT] = ACTIONS(2441), + [anon_sym_e_GT] = ACTIONS(2441), + [anon_sym_o_GT] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT] = ACTIONS(2441), + [anon_sym_err_GT_GT] = ACTIONS(2439), + [anon_sym_out_GT_GT] = ACTIONS(2439), + [anon_sym_e_GT_GT] = ACTIONS(2439), + [anon_sym_o_GT_GT] = ACTIONS(2439), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2439), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2439), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2439), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2439), [anon_sym_POUND] = ACTIONS(3), }, [STATE(763)] = { [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [aux_sym__immediate_decimal_token5] = ACTIONS(2376), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2443), + [sym__newline] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_err_GT_PIPE] = ACTIONS(2443), + [anon_sym_out_GT_PIPE] = ACTIONS(2443), + [anon_sym_e_GT_PIPE] = ACTIONS(2443), + [anon_sym_o_GT_PIPE] = ACTIONS(2443), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2443), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2443), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2443), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_GT2] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(2443), + [anon_sym_STAR2] = ACTIONS(2445), + [anon_sym_and2] = ACTIONS(2443), + [anon_sym_xor2] = ACTIONS(2443), + [anon_sym_or2] = ACTIONS(2443), + [anon_sym_not_DASHin2] = ACTIONS(2443), + [anon_sym_has2] = ACTIONS(2443), + [anon_sym_not_DASHhas2] = ACTIONS(2443), + [anon_sym_starts_DASHwith2] = ACTIONS(2443), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2443), + [anon_sym_ends_DASHwith2] = ACTIONS(2443), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2443), + [anon_sym_EQ_EQ2] = ACTIONS(2443), + [anon_sym_BANG_EQ2] = ACTIONS(2443), + [anon_sym_LT2] = ACTIONS(2445), + [anon_sym_LT_EQ2] = ACTIONS(2443), + [anon_sym_GT_EQ2] = ACTIONS(2443), + [anon_sym_EQ_TILDE2] = ACTIONS(2443), + [anon_sym_BANG_TILDE2] = ACTIONS(2443), + [anon_sym_like2] = ACTIONS(2443), + [anon_sym_not_DASHlike2] = ACTIONS(2443), + [anon_sym_STAR_STAR2] = ACTIONS(2443), + [anon_sym_PLUS_PLUS2] = ACTIONS(2443), + [anon_sym_SLASH2] = ACTIONS(2445), + [anon_sym_mod2] = ACTIONS(2443), + [anon_sym_SLASH_SLASH2] = ACTIONS(2443), + [anon_sym_PLUS2] = ACTIONS(2445), + [anon_sym_bit_DASHshl2] = ACTIONS(2443), + [anon_sym_bit_DASHshr2] = ACTIONS(2443), + [anon_sym_bit_DASHand2] = ACTIONS(2443), + [anon_sym_bit_DASHxor2] = ACTIONS(2443), + [anon_sym_bit_DASHor2] = ACTIONS(2443), + [anon_sym_err_GT] = ACTIONS(2445), + [anon_sym_out_GT] = ACTIONS(2445), + [anon_sym_e_GT] = ACTIONS(2445), + [anon_sym_o_GT] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT] = ACTIONS(2445), + [anon_sym_err_GT_GT] = ACTIONS(2443), + [anon_sym_out_GT_GT] = ACTIONS(2443), + [anon_sym_e_GT_GT] = ACTIONS(2443), + [anon_sym_o_GT_GT] = ACTIONS(2443), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2443), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2443), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2443), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2443), [anon_sym_POUND] = ACTIONS(3), }, [STATE(764)] = { [sym_comment] = STATE(764), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_GT2] = ACTIONS(2243), - [anon_sym_DASH2] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_EQ_GT] = ACTIONS(2241), - [anon_sym_STAR2] = ACTIONS(2243), - [anon_sym_and2] = ACTIONS(2241), - [anon_sym_xor2] = ACTIONS(2241), - [anon_sym_or2] = ACTIONS(2241), - [anon_sym_not_DASHin2] = ACTIONS(2241), - [anon_sym_has2] = ACTIONS(2241), - [anon_sym_not_DASHhas2] = ACTIONS(2241), - [anon_sym_starts_DASHwith2] = ACTIONS(2241), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2241), - [anon_sym_ends_DASHwith2] = ACTIONS(2241), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2241), - [anon_sym_EQ_EQ2] = ACTIONS(2241), - [anon_sym_BANG_EQ2] = ACTIONS(2241), - [anon_sym_LT2] = ACTIONS(2243), - [anon_sym_LT_EQ2] = ACTIONS(2241), - [anon_sym_GT_EQ2] = ACTIONS(2241), - [anon_sym_EQ_TILDE2] = ACTIONS(2241), - [anon_sym_BANG_TILDE2] = ACTIONS(2241), - [anon_sym_like2] = ACTIONS(2241), - [anon_sym_not_DASHlike2] = ACTIONS(2241), - [anon_sym_STAR_STAR2] = ACTIONS(2241), - [anon_sym_PLUS_PLUS2] = ACTIONS(2241), - [anon_sym_SLASH2] = ACTIONS(2243), - [anon_sym_mod2] = ACTIONS(2241), - [anon_sym_SLASH_SLASH2] = ACTIONS(2241), - [anon_sym_PLUS2] = ACTIONS(2243), - [anon_sym_bit_DASHshl2] = ACTIONS(2241), - [anon_sym_bit_DASHshr2] = ACTIONS(2241), - [anon_sym_bit_DASHand2] = ACTIONS(2241), - [anon_sym_bit_DASHxor2] = ACTIONS(2241), - [anon_sym_bit_DASHor2] = ACTIONS(2241), - [anon_sym_err_GT] = ACTIONS(2243), - [anon_sym_out_GT] = ACTIONS(2243), - [anon_sym_e_GT] = ACTIONS(2243), - [anon_sym_o_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT] = ACTIONS(2243), - [anon_sym_err_GT_GT] = ACTIONS(2241), - [anon_sym_out_GT_GT] = ACTIONS(2241), - [anon_sym_e_GT_GT] = ACTIONS(2241), - [anon_sym_o_GT_GT] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_in] = ACTIONS(2447), + [sym__newline] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2447), + [anon_sym_err_GT_PIPE] = ACTIONS(2447), + [anon_sym_out_GT_PIPE] = ACTIONS(2447), + [anon_sym_e_GT_PIPE] = ACTIONS(2447), + [anon_sym_o_GT_PIPE] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2447), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_GT2] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(2447), + [anon_sym_STAR2] = ACTIONS(2449), + [anon_sym_and2] = ACTIONS(2447), + [anon_sym_xor2] = ACTIONS(2447), + [anon_sym_or2] = ACTIONS(2447), + [anon_sym_not_DASHin2] = ACTIONS(2447), + [anon_sym_has2] = ACTIONS(2447), + [anon_sym_not_DASHhas2] = ACTIONS(2447), + [anon_sym_starts_DASHwith2] = ACTIONS(2447), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2447), + [anon_sym_ends_DASHwith2] = ACTIONS(2447), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2447), + [anon_sym_EQ_EQ2] = ACTIONS(2447), + [anon_sym_BANG_EQ2] = ACTIONS(2447), + [anon_sym_LT2] = ACTIONS(2449), + [anon_sym_LT_EQ2] = ACTIONS(2447), + [anon_sym_GT_EQ2] = ACTIONS(2447), + [anon_sym_EQ_TILDE2] = ACTIONS(2447), + [anon_sym_BANG_TILDE2] = ACTIONS(2447), + [anon_sym_like2] = ACTIONS(2447), + [anon_sym_not_DASHlike2] = ACTIONS(2447), + [anon_sym_STAR_STAR2] = ACTIONS(2447), + [anon_sym_PLUS_PLUS2] = ACTIONS(2447), + [anon_sym_SLASH2] = ACTIONS(2449), + [anon_sym_mod2] = ACTIONS(2447), + [anon_sym_SLASH_SLASH2] = ACTIONS(2447), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_bit_DASHshl2] = ACTIONS(2447), + [anon_sym_bit_DASHshr2] = ACTIONS(2447), + [anon_sym_bit_DASHand2] = ACTIONS(2447), + [anon_sym_bit_DASHxor2] = ACTIONS(2447), + [anon_sym_bit_DASHor2] = ACTIONS(2447), + [anon_sym_err_GT] = ACTIONS(2449), + [anon_sym_out_GT] = ACTIONS(2449), + [anon_sym_e_GT] = ACTIONS(2449), + [anon_sym_o_GT] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT] = ACTIONS(2449), + [anon_sym_err_GT_GT] = ACTIONS(2447), + [anon_sym_out_GT_GT] = ACTIONS(2447), + [anon_sym_e_GT_GT] = ACTIONS(2447), + [anon_sym_o_GT_GT] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2447), [anon_sym_POUND] = ACTIONS(3), }, [STATE(765)] = { [sym_comment] = STATE(765), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [sym__newline] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_err_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_GT_PIPE] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_GT2] = ACTIONS(2251), - [anon_sym_DASH2] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_EQ_GT] = ACTIONS(2249), - [anon_sym_STAR2] = ACTIONS(2251), - [anon_sym_and2] = ACTIONS(2249), - [anon_sym_xor2] = ACTIONS(2249), - [anon_sym_or2] = ACTIONS(2249), - [anon_sym_not_DASHin2] = ACTIONS(2249), - [anon_sym_has2] = ACTIONS(2249), - [anon_sym_not_DASHhas2] = ACTIONS(2249), - [anon_sym_starts_DASHwith2] = ACTIONS(2249), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2249), - [anon_sym_ends_DASHwith2] = ACTIONS(2249), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2249), - [anon_sym_EQ_EQ2] = ACTIONS(2249), - [anon_sym_BANG_EQ2] = ACTIONS(2249), - [anon_sym_LT2] = ACTIONS(2251), - [anon_sym_LT_EQ2] = ACTIONS(2249), - [anon_sym_GT_EQ2] = ACTIONS(2249), - [anon_sym_EQ_TILDE2] = ACTIONS(2249), - [anon_sym_BANG_TILDE2] = ACTIONS(2249), - [anon_sym_like2] = ACTIONS(2249), - [anon_sym_not_DASHlike2] = ACTIONS(2249), - [anon_sym_STAR_STAR2] = ACTIONS(2249), - [anon_sym_PLUS_PLUS2] = ACTIONS(2249), - [anon_sym_SLASH2] = ACTIONS(2251), - [anon_sym_mod2] = ACTIONS(2249), - [anon_sym_SLASH_SLASH2] = ACTIONS(2249), - [anon_sym_PLUS2] = ACTIONS(2251), - [anon_sym_bit_DASHshl2] = ACTIONS(2249), - [anon_sym_bit_DASHshr2] = ACTIONS(2249), - [anon_sym_bit_DASHand2] = ACTIONS(2249), - [anon_sym_bit_DASHxor2] = ACTIONS(2249), - [anon_sym_bit_DASHor2] = ACTIONS(2249), - [anon_sym_err_GT] = ACTIONS(2251), - [anon_sym_out_GT] = ACTIONS(2251), - [anon_sym_e_GT] = ACTIONS(2251), - [anon_sym_o_GT] = ACTIONS(2251), - [anon_sym_err_PLUSout_GT] = ACTIONS(2251), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), - [anon_sym_o_PLUSe_GT] = ACTIONS(2251), - [anon_sym_e_PLUSo_GT] = ACTIONS(2251), - [anon_sym_err_GT_GT] = ACTIONS(2249), - [anon_sym_out_GT_GT] = ACTIONS(2249), - [anon_sym_e_GT_GT] = ACTIONS(2249), - [anon_sym_o_GT_GT] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_in] = ACTIONS(2451), + [sym__newline] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2451), + [anon_sym_err_GT_PIPE] = ACTIONS(2451), + [anon_sym_out_GT_PIPE] = ACTIONS(2451), + [anon_sym_e_GT_PIPE] = ACTIONS(2451), + [anon_sym_o_GT_PIPE] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2451), + [anon_sym_GT2] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_EQ_GT] = ACTIONS(2451), + [anon_sym_STAR2] = ACTIONS(2453), + [anon_sym_and2] = ACTIONS(2451), + [anon_sym_xor2] = ACTIONS(2451), + [anon_sym_or2] = ACTIONS(2451), + [anon_sym_not_DASHin2] = ACTIONS(2451), + [anon_sym_has2] = ACTIONS(2451), + [anon_sym_not_DASHhas2] = ACTIONS(2451), + [anon_sym_starts_DASHwith2] = ACTIONS(2451), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2451), + [anon_sym_ends_DASHwith2] = ACTIONS(2451), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2451), + [anon_sym_EQ_EQ2] = ACTIONS(2451), + [anon_sym_BANG_EQ2] = ACTIONS(2451), + [anon_sym_LT2] = ACTIONS(2453), + [anon_sym_LT_EQ2] = ACTIONS(2451), + [anon_sym_GT_EQ2] = ACTIONS(2451), + [anon_sym_EQ_TILDE2] = ACTIONS(2451), + [anon_sym_BANG_TILDE2] = ACTIONS(2451), + [anon_sym_like2] = ACTIONS(2451), + [anon_sym_not_DASHlike2] = ACTIONS(2451), + [anon_sym_STAR_STAR2] = ACTIONS(2451), + [anon_sym_PLUS_PLUS2] = ACTIONS(2451), + [anon_sym_SLASH2] = ACTIONS(2453), + [anon_sym_mod2] = ACTIONS(2451), + [anon_sym_SLASH_SLASH2] = ACTIONS(2451), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_bit_DASHshl2] = ACTIONS(2451), + [anon_sym_bit_DASHshr2] = ACTIONS(2451), + [anon_sym_bit_DASHand2] = ACTIONS(2451), + [anon_sym_bit_DASHxor2] = ACTIONS(2451), + [anon_sym_bit_DASHor2] = ACTIONS(2451), + [anon_sym_err_GT] = ACTIONS(2453), + [anon_sym_out_GT] = ACTIONS(2453), + [anon_sym_e_GT] = ACTIONS(2453), + [anon_sym_o_GT] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT] = ACTIONS(2453), + [anon_sym_err_GT_GT] = ACTIONS(2451), + [anon_sym_out_GT_GT] = ACTIONS(2451), + [anon_sym_e_GT_GT] = ACTIONS(2451), + [anon_sym_o_GT_GT] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2451), [anon_sym_POUND] = ACTIONS(3), }, [STATE(766)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(766), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2455), + [sym__newline] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_err_GT_PIPE] = ACTIONS(2455), + [anon_sym_out_GT_PIPE] = ACTIONS(2455), + [anon_sym_e_GT_PIPE] = ACTIONS(2455), + [anon_sym_o_GT_PIPE] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_GT2] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_EQ_GT] = ACTIONS(2455), + [anon_sym_STAR2] = ACTIONS(2457), + [anon_sym_and2] = ACTIONS(2455), + [anon_sym_xor2] = ACTIONS(2455), + [anon_sym_or2] = ACTIONS(2455), + [anon_sym_not_DASHin2] = ACTIONS(2455), + [anon_sym_has2] = ACTIONS(2455), + [anon_sym_not_DASHhas2] = ACTIONS(2455), + [anon_sym_starts_DASHwith2] = ACTIONS(2455), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2455), + [anon_sym_ends_DASHwith2] = ACTIONS(2455), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2455), + [anon_sym_EQ_EQ2] = ACTIONS(2455), + [anon_sym_BANG_EQ2] = ACTIONS(2455), + [anon_sym_LT2] = ACTIONS(2457), + [anon_sym_LT_EQ2] = ACTIONS(2455), + [anon_sym_GT_EQ2] = ACTIONS(2455), + [anon_sym_EQ_TILDE2] = ACTIONS(2455), + [anon_sym_BANG_TILDE2] = ACTIONS(2455), + [anon_sym_like2] = ACTIONS(2455), + [anon_sym_not_DASHlike2] = ACTIONS(2455), + [anon_sym_STAR_STAR2] = ACTIONS(2455), + [anon_sym_PLUS_PLUS2] = ACTIONS(2455), + [anon_sym_SLASH2] = ACTIONS(2457), + [anon_sym_mod2] = ACTIONS(2455), + [anon_sym_SLASH_SLASH2] = ACTIONS(2455), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_bit_DASHshl2] = ACTIONS(2455), + [anon_sym_bit_DASHshr2] = ACTIONS(2455), + [anon_sym_bit_DASHand2] = ACTIONS(2455), + [anon_sym_bit_DASHxor2] = ACTIONS(2455), + [anon_sym_bit_DASHor2] = ACTIONS(2455), + [anon_sym_COLON2] = ACTIONS(2455), + [anon_sym_err_GT] = ACTIONS(2457), + [anon_sym_out_GT] = ACTIONS(2457), + [anon_sym_e_GT] = ACTIONS(2457), + [anon_sym_o_GT] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT] = ACTIONS(2457), + [anon_sym_err_GT_GT] = ACTIONS(2455), + [anon_sym_out_GT_GT] = ACTIONS(2455), + [anon_sym_e_GT_GT] = ACTIONS(2455), + [anon_sym_o_GT_GT] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2455), [anon_sym_POUND] = ACTIONS(3), }, [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(767), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2455), + [sym__newline] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_err_GT_PIPE] = ACTIONS(2455), + [anon_sym_out_GT_PIPE] = ACTIONS(2455), + [anon_sym_e_GT_PIPE] = ACTIONS(2455), + [anon_sym_o_GT_PIPE] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_GT2] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_EQ_GT] = ACTIONS(2455), + [anon_sym_STAR2] = ACTIONS(2457), + [anon_sym_and2] = ACTIONS(2455), + [anon_sym_xor2] = ACTIONS(2455), + [anon_sym_or2] = ACTIONS(2455), + [anon_sym_not_DASHin2] = ACTIONS(2455), + [anon_sym_has2] = ACTIONS(2455), + [anon_sym_not_DASHhas2] = ACTIONS(2455), + [anon_sym_starts_DASHwith2] = ACTIONS(2455), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2455), + [anon_sym_ends_DASHwith2] = ACTIONS(2455), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2455), + [anon_sym_EQ_EQ2] = ACTIONS(2455), + [anon_sym_BANG_EQ2] = ACTIONS(2455), + [anon_sym_LT2] = ACTIONS(2457), + [anon_sym_LT_EQ2] = ACTIONS(2455), + [anon_sym_GT_EQ2] = ACTIONS(2455), + [anon_sym_EQ_TILDE2] = ACTIONS(2455), + [anon_sym_BANG_TILDE2] = ACTIONS(2455), + [anon_sym_like2] = ACTIONS(2455), + [anon_sym_not_DASHlike2] = ACTIONS(2455), + [anon_sym_STAR_STAR2] = ACTIONS(2455), + [anon_sym_PLUS_PLUS2] = ACTIONS(2455), + [anon_sym_SLASH2] = ACTIONS(2457), + [anon_sym_mod2] = ACTIONS(2455), + [anon_sym_SLASH_SLASH2] = ACTIONS(2455), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_bit_DASHshl2] = ACTIONS(2455), + [anon_sym_bit_DASHshr2] = ACTIONS(2455), + [anon_sym_bit_DASHand2] = ACTIONS(2455), + [anon_sym_bit_DASHxor2] = ACTIONS(2455), + [anon_sym_bit_DASHor2] = ACTIONS(2455), + [anon_sym_COLON2] = ACTIONS(2455), + [anon_sym_err_GT] = ACTIONS(2457), + [anon_sym_out_GT] = ACTIONS(2457), + [anon_sym_e_GT] = ACTIONS(2457), + [anon_sym_o_GT] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT] = ACTIONS(2457), + [anon_sym_err_GT_GT] = ACTIONS(2455), + [anon_sym_out_GT_GT] = ACTIONS(2455), + [anon_sym_e_GT_GT] = ACTIONS(2455), + [anon_sym_o_GT_GT] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2455), [anon_sym_POUND] = ACTIONS(3), }, [STATE(768)] = { [sym_comment] = STATE(768), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2257), - [sym__newline] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_err_GT_PIPE] = ACTIONS(2257), - [anon_sym_out_GT_PIPE] = ACTIONS(2257), - [anon_sym_e_GT_PIPE] = ACTIONS(2257), - [anon_sym_o_GT_PIPE] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_GT2] = ACTIONS(2259), - [anon_sym_DASH2] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_EQ_GT] = ACTIONS(2257), - [anon_sym_STAR2] = ACTIONS(2259), - [anon_sym_and2] = ACTIONS(2257), - [anon_sym_xor2] = ACTIONS(2257), - [anon_sym_or2] = ACTIONS(2257), - [anon_sym_not_DASHin2] = ACTIONS(2257), - [anon_sym_has2] = ACTIONS(2257), - [anon_sym_not_DASHhas2] = ACTIONS(2257), - [anon_sym_starts_DASHwith2] = ACTIONS(2257), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2257), - [anon_sym_ends_DASHwith2] = ACTIONS(2257), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2257), - [anon_sym_EQ_EQ2] = ACTIONS(2257), - [anon_sym_BANG_EQ2] = ACTIONS(2257), - [anon_sym_LT2] = ACTIONS(2259), - [anon_sym_LT_EQ2] = ACTIONS(2257), - [anon_sym_GT_EQ2] = ACTIONS(2257), - [anon_sym_EQ_TILDE2] = ACTIONS(2257), - [anon_sym_BANG_TILDE2] = ACTIONS(2257), - [anon_sym_like2] = ACTIONS(2257), - [anon_sym_not_DASHlike2] = ACTIONS(2257), - [anon_sym_STAR_STAR2] = ACTIONS(2257), - [anon_sym_PLUS_PLUS2] = ACTIONS(2257), - [anon_sym_SLASH2] = ACTIONS(2259), - [anon_sym_mod2] = ACTIONS(2257), - [anon_sym_SLASH_SLASH2] = ACTIONS(2257), - [anon_sym_PLUS2] = ACTIONS(2259), - [anon_sym_bit_DASHshl2] = ACTIONS(2257), - [anon_sym_bit_DASHshr2] = ACTIONS(2257), - [anon_sym_bit_DASHand2] = ACTIONS(2257), - [anon_sym_bit_DASHxor2] = ACTIONS(2257), - [anon_sym_bit_DASHor2] = ACTIONS(2257), - [anon_sym_err_GT] = ACTIONS(2259), - [anon_sym_out_GT] = ACTIONS(2259), - [anon_sym_e_GT] = ACTIONS(2259), - [anon_sym_o_GT] = ACTIONS(2259), - [anon_sym_err_PLUSout_GT] = ACTIONS(2259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), - [anon_sym_o_PLUSe_GT] = ACTIONS(2259), - [anon_sym_e_PLUSo_GT] = ACTIONS(2259), - [anon_sym_err_GT_GT] = ACTIONS(2257), - [anon_sym_out_GT_GT] = ACTIONS(2257), - [anon_sym_e_GT_GT] = ACTIONS(2257), - [anon_sym_o_GT_GT] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2459), + [sym__newline] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_err_GT_PIPE] = ACTIONS(2459), + [anon_sym_out_GT_PIPE] = ACTIONS(2459), + [anon_sym_e_GT_PIPE] = ACTIONS(2459), + [anon_sym_o_GT_PIPE] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2459), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_GT2] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_EQ_GT] = ACTIONS(2459), + [anon_sym_STAR2] = ACTIONS(2461), + [anon_sym_and2] = ACTIONS(2459), + [anon_sym_xor2] = ACTIONS(2459), + [anon_sym_or2] = ACTIONS(2459), + [anon_sym_not_DASHin2] = ACTIONS(2459), + [anon_sym_has2] = ACTIONS(2459), + [anon_sym_not_DASHhas2] = ACTIONS(2459), + [anon_sym_starts_DASHwith2] = ACTIONS(2459), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2459), + [anon_sym_ends_DASHwith2] = ACTIONS(2459), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2459), + [anon_sym_EQ_EQ2] = ACTIONS(2459), + [anon_sym_BANG_EQ2] = ACTIONS(2459), + [anon_sym_LT2] = ACTIONS(2461), + [anon_sym_LT_EQ2] = ACTIONS(2459), + [anon_sym_GT_EQ2] = ACTIONS(2459), + [anon_sym_EQ_TILDE2] = ACTIONS(2459), + [anon_sym_BANG_TILDE2] = ACTIONS(2459), + [anon_sym_like2] = ACTIONS(2459), + [anon_sym_not_DASHlike2] = ACTIONS(2459), + [anon_sym_STAR_STAR2] = ACTIONS(2459), + [anon_sym_PLUS_PLUS2] = ACTIONS(2459), + [anon_sym_SLASH2] = ACTIONS(2461), + [anon_sym_mod2] = ACTIONS(2459), + [anon_sym_SLASH_SLASH2] = ACTIONS(2459), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_bit_DASHshl2] = ACTIONS(2459), + [anon_sym_bit_DASHshr2] = ACTIONS(2459), + [anon_sym_bit_DASHand2] = ACTIONS(2459), + [anon_sym_bit_DASHxor2] = ACTIONS(2459), + [anon_sym_bit_DASHor2] = ACTIONS(2459), + [anon_sym_COLON2] = ACTIONS(2459), + [anon_sym_err_GT] = ACTIONS(2461), + [anon_sym_out_GT] = ACTIONS(2461), + [anon_sym_e_GT] = ACTIONS(2461), + [anon_sym_o_GT] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT] = ACTIONS(2461), + [anon_sym_err_GT_GT] = ACTIONS(2459), + [anon_sym_out_GT_GT] = ACTIONS(2459), + [anon_sym_e_GT_GT] = ACTIONS(2459), + [anon_sym_o_GT_GT] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2459), [anon_sym_POUND] = ACTIONS(3), }, [STATE(769)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2463), + [sym__newline] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_err_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_GT_PIPE] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_GT2] = ACTIONS(2465), + [anon_sym_DASH2] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_EQ_GT] = ACTIONS(2463), + [anon_sym_STAR2] = ACTIONS(2465), + [anon_sym_and2] = ACTIONS(2463), + [anon_sym_xor2] = ACTIONS(2463), + [anon_sym_or2] = ACTIONS(2463), + [anon_sym_not_DASHin2] = ACTIONS(2463), + [anon_sym_has2] = ACTIONS(2463), + [anon_sym_not_DASHhas2] = ACTIONS(2463), + [anon_sym_starts_DASHwith2] = ACTIONS(2463), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2463), + [anon_sym_ends_DASHwith2] = ACTIONS(2463), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2463), + [anon_sym_EQ_EQ2] = ACTIONS(2463), + [anon_sym_BANG_EQ2] = ACTIONS(2463), + [anon_sym_LT2] = ACTIONS(2465), + [anon_sym_LT_EQ2] = ACTIONS(2463), + [anon_sym_GT_EQ2] = ACTIONS(2463), + [anon_sym_EQ_TILDE2] = ACTIONS(2463), + [anon_sym_BANG_TILDE2] = ACTIONS(2463), + [anon_sym_like2] = ACTIONS(2463), + [anon_sym_not_DASHlike2] = ACTIONS(2463), + [anon_sym_STAR_STAR2] = ACTIONS(2463), + [anon_sym_PLUS_PLUS2] = ACTIONS(2463), + [anon_sym_SLASH2] = ACTIONS(2465), + [anon_sym_mod2] = ACTIONS(2463), + [anon_sym_SLASH_SLASH2] = ACTIONS(2463), + [anon_sym_PLUS2] = ACTIONS(2465), + [anon_sym_bit_DASHshl2] = ACTIONS(2463), + [anon_sym_bit_DASHshr2] = ACTIONS(2463), + [anon_sym_bit_DASHand2] = ACTIONS(2463), + [anon_sym_bit_DASHxor2] = ACTIONS(2463), + [anon_sym_bit_DASHor2] = ACTIONS(2463), + [anon_sym_COLON2] = ACTIONS(2463), + [anon_sym_err_GT] = ACTIONS(2465), + [anon_sym_out_GT] = ACTIONS(2465), + [anon_sym_e_GT] = ACTIONS(2465), + [anon_sym_o_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT] = ACTIONS(2465), + [anon_sym_err_GT_GT] = ACTIONS(2463), + [anon_sym_out_GT_GT] = ACTIONS(2463), + [anon_sym_e_GT_GT] = ACTIONS(2463), + [anon_sym_o_GT_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2463), [anon_sym_POUND] = ACTIONS(3), }, [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1122), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(770), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(771)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1171), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(772)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1178), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(965), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(772), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_in] = ACTIONS(2378), - [sym__newline] = ACTIONS(2378), - [anon_sym_SEMI] = ACTIONS(2378), - [anon_sym_PIPE] = ACTIONS(2378), - [anon_sym_err_GT_PIPE] = ACTIONS(2378), - [anon_sym_out_GT_PIPE] = ACTIONS(2378), - [anon_sym_e_GT_PIPE] = ACTIONS(2378), - [anon_sym_o_GT_PIPE] = ACTIONS(2378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2378), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_GT2] = ACTIONS(2380), - [anon_sym_DASH2] = ACTIONS(2378), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_EQ_GT] = ACTIONS(2378), - [anon_sym_STAR2] = ACTIONS(2380), - [anon_sym_and2] = ACTIONS(2378), - [anon_sym_xor2] = ACTIONS(2378), - [anon_sym_or2] = ACTIONS(2378), - [anon_sym_not_DASHin2] = ACTIONS(2378), - [anon_sym_has2] = ACTIONS(2378), - [anon_sym_not_DASHhas2] = ACTIONS(2378), - [anon_sym_starts_DASHwith2] = ACTIONS(2378), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2378), - [anon_sym_ends_DASHwith2] = ACTIONS(2378), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2378), - [anon_sym_EQ_EQ2] = ACTIONS(2378), - [anon_sym_BANG_EQ2] = ACTIONS(2378), - [anon_sym_LT2] = ACTIONS(2380), - [anon_sym_LT_EQ2] = ACTIONS(2378), - [anon_sym_GT_EQ2] = ACTIONS(2378), - [anon_sym_EQ_TILDE2] = ACTIONS(2378), - [anon_sym_BANG_TILDE2] = ACTIONS(2378), - [anon_sym_like2] = ACTIONS(2378), - [anon_sym_not_DASHlike2] = ACTIONS(2378), - [anon_sym_STAR_STAR2] = ACTIONS(2378), - [anon_sym_PLUS_PLUS2] = ACTIONS(2378), - [anon_sym_SLASH2] = ACTIONS(2380), - [anon_sym_mod2] = ACTIONS(2378), - [anon_sym_SLASH_SLASH2] = ACTIONS(2378), - [anon_sym_PLUS2] = ACTIONS(2380), - [anon_sym_bit_DASHshl2] = ACTIONS(2378), - [anon_sym_bit_DASHshr2] = ACTIONS(2378), - [anon_sym_bit_DASHand2] = ACTIONS(2378), - [anon_sym_bit_DASHxor2] = ACTIONS(2378), - [anon_sym_bit_DASHor2] = ACTIONS(2378), - [anon_sym_err_GT] = ACTIONS(2380), - [anon_sym_out_GT] = ACTIONS(2380), - [anon_sym_e_GT] = ACTIONS(2380), - [anon_sym_o_GT] = ACTIONS(2380), - [anon_sym_err_PLUSout_GT] = ACTIONS(2380), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2380), - [anon_sym_o_PLUSe_GT] = ACTIONS(2380), - [anon_sym_e_PLUSo_GT] = ACTIONS(2380), - [anon_sym_err_GT_GT] = ACTIONS(2378), - [anon_sym_out_GT_GT] = ACTIONS(2378), - [anon_sym_e_GT_GT] = ACTIONS(2378), - [anon_sym_o_GT_GT] = ACTIONS(2378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2378), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(773)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1181), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(773), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(774)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1201), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(774), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [sym__newline] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_err_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_GT_PIPE] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_GT2] = ACTIONS(2110), - [anon_sym_DASH2] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_STAR2] = ACTIONS(2110), - [anon_sym_and2] = ACTIONS(2108), - [anon_sym_xor2] = ACTIONS(2108), - [anon_sym_or2] = ACTIONS(2108), - [anon_sym_not_DASHin2] = ACTIONS(2108), - [anon_sym_has2] = ACTIONS(2108), - [anon_sym_not_DASHhas2] = ACTIONS(2108), - [anon_sym_starts_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), - [anon_sym_ends_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), - [anon_sym_EQ_EQ2] = ACTIONS(2108), - [anon_sym_BANG_EQ2] = ACTIONS(2108), - [anon_sym_LT2] = ACTIONS(2110), - [anon_sym_LT_EQ2] = ACTIONS(2108), - [anon_sym_GT_EQ2] = ACTIONS(2108), - [anon_sym_EQ_TILDE2] = ACTIONS(2108), - [anon_sym_BANG_TILDE2] = ACTIONS(2108), - [anon_sym_like2] = ACTIONS(2108), - [anon_sym_not_DASHlike2] = ACTIONS(2108), - [anon_sym_STAR_STAR2] = ACTIONS(2108), - [anon_sym_PLUS_PLUS2] = ACTIONS(2108), - [anon_sym_SLASH2] = ACTIONS(2110), - [anon_sym_mod2] = ACTIONS(2108), - [anon_sym_SLASH_SLASH2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(2110), - [anon_sym_bit_DASHshl2] = ACTIONS(2108), - [anon_sym_bit_DASHshr2] = ACTIONS(2108), - [anon_sym_bit_DASHand2] = ACTIONS(2108), - [anon_sym_bit_DASHxor2] = ACTIONS(2108), - [anon_sym_bit_DASHor2] = ACTIONS(2108), - [anon_sym_err_GT] = ACTIONS(2110), - [anon_sym_out_GT] = ACTIONS(2110), - [anon_sym_e_GT] = ACTIONS(2110), - [anon_sym_o_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT] = ACTIONS(2110), - [anon_sym_err_GT_GT] = ACTIONS(2108), - [anon_sym_out_GT_GT] = ACTIONS(2108), - [anon_sym_e_GT_GT] = ACTIONS(2108), - [anon_sym_o_GT_GT] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(775)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1203), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(775), - [anon_sym_finally] = ACTIONS(2382), - [anon_sym_in] = ACTIONS(2382), - [sym__newline] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2382), - [anon_sym_err_GT_PIPE] = ACTIONS(2382), - [anon_sym_out_GT_PIPE] = ACTIONS(2382), - [anon_sym_e_GT_PIPE] = ACTIONS(2382), - [anon_sym_o_GT_PIPE] = ACTIONS(2382), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2382), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2382), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2382), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2382), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_GT2] = ACTIONS(2384), - [anon_sym_DASH2] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_EQ_GT] = ACTIONS(2382), - [anon_sym_STAR2] = ACTIONS(2384), - [anon_sym_and2] = ACTIONS(2382), - [anon_sym_xor2] = ACTIONS(2382), - [anon_sym_or2] = ACTIONS(2382), - [anon_sym_not_DASHin2] = ACTIONS(2382), - [anon_sym_has2] = ACTIONS(2382), - [anon_sym_not_DASHhas2] = ACTIONS(2382), - [anon_sym_starts_DASHwith2] = ACTIONS(2382), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2382), - [anon_sym_ends_DASHwith2] = ACTIONS(2382), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2382), - [anon_sym_EQ_EQ2] = ACTIONS(2382), - [anon_sym_BANG_EQ2] = ACTIONS(2382), - [anon_sym_LT2] = ACTIONS(2384), - [anon_sym_LT_EQ2] = ACTIONS(2382), - [anon_sym_GT_EQ2] = ACTIONS(2382), - [anon_sym_EQ_TILDE2] = ACTIONS(2382), - [anon_sym_BANG_TILDE2] = ACTIONS(2382), - [anon_sym_like2] = ACTIONS(2382), - [anon_sym_not_DASHlike2] = ACTIONS(2382), - [anon_sym_STAR_STAR2] = ACTIONS(2382), - [anon_sym_PLUS_PLUS2] = ACTIONS(2382), - [anon_sym_SLASH2] = ACTIONS(2384), - [anon_sym_mod2] = ACTIONS(2382), - [anon_sym_SLASH_SLASH2] = ACTIONS(2382), - [anon_sym_PLUS2] = ACTIONS(2384), - [anon_sym_bit_DASHshl2] = ACTIONS(2382), - [anon_sym_bit_DASHshr2] = ACTIONS(2382), - [anon_sym_bit_DASHand2] = ACTIONS(2382), - [anon_sym_bit_DASHxor2] = ACTIONS(2382), - [anon_sym_bit_DASHor2] = ACTIONS(2382), - [anon_sym_err_GT] = ACTIONS(2384), - [anon_sym_out_GT] = ACTIONS(2384), - [anon_sym_e_GT] = ACTIONS(2384), - [anon_sym_o_GT] = ACTIONS(2384), - [anon_sym_err_PLUSout_GT] = ACTIONS(2384), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2384), - [anon_sym_o_PLUSe_GT] = ACTIONS(2384), - [anon_sym_e_PLUSo_GT] = ACTIONS(2384), - [anon_sym_err_GT_GT] = ACTIONS(2382), - [anon_sym_out_GT_GT] = ACTIONS(2382), - [anon_sym_e_GT_GT] = ACTIONS(2382), - [anon_sym_o_GT_GT] = ACTIONS(2382), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2382), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2382), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2382), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2382), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(776)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1209), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(776), - [anon_sym_finally] = ACTIONS(2386), - [anon_sym_in] = ACTIONS(2386), - [sym__newline] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2386), - [anon_sym_err_GT_PIPE] = ACTIONS(2386), - [anon_sym_out_GT_PIPE] = ACTIONS(2386), - [anon_sym_e_GT_PIPE] = ACTIONS(2386), - [anon_sym_o_GT_PIPE] = ACTIONS(2386), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2386), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2386), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2386), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2386), - [anon_sym_GT2] = ACTIONS(2388), - [anon_sym_DASH2] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_EQ_GT] = ACTIONS(2386), - [anon_sym_STAR2] = ACTIONS(2388), - [anon_sym_and2] = ACTIONS(2386), - [anon_sym_xor2] = ACTIONS(2386), - [anon_sym_or2] = ACTIONS(2386), - [anon_sym_not_DASHin2] = ACTIONS(2386), - [anon_sym_has2] = ACTIONS(2386), - [anon_sym_not_DASHhas2] = ACTIONS(2386), - [anon_sym_starts_DASHwith2] = ACTIONS(2386), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2386), - [anon_sym_ends_DASHwith2] = ACTIONS(2386), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2386), - [anon_sym_EQ_EQ2] = ACTIONS(2386), - [anon_sym_BANG_EQ2] = ACTIONS(2386), - [anon_sym_LT2] = ACTIONS(2388), - [anon_sym_LT_EQ2] = ACTIONS(2386), - [anon_sym_GT_EQ2] = ACTIONS(2386), - [anon_sym_EQ_TILDE2] = ACTIONS(2386), - [anon_sym_BANG_TILDE2] = ACTIONS(2386), - [anon_sym_like2] = ACTIONS(2386), - [anon_sym_not_DASHlike2] = ACTIONS(2386), - [anon_sym_STAR_STAR2] = ACTIONS(2386), - [anon_sym_PLUS_PLUS2] = ACTIONS(2386), - [anon_sym_SLASH2] = ACTIONS(2388), - [anon_sym_mod2] = ACTIONS(2386), - [anon_sym_SLASH_SLASH2] = ACTIONS(2386), - [anon_sym_PLUS2] = ACTIONS(2388), - [anon_sym_bit_DASHshl2] = ACTIONS(2386), - [anon_sym_bit_DASHshr2] = ACTIONS(2386), - [anon_sym_bit_DASHand2] = ACTIONS(2386), - [anon_sym_bit_DASHxor2] = ACTIONS(2386), - [anon_sym_bit_DASHor2] = ACTIONS(2386), - [anon_sym_err_GT] = ACTIONS(2388), - [anon_sym_out_GT] = ACTIONS(2388), - [anon_sym_e_GT] = ACTIONS(2388), - [anon_sym_o_GT] = ACTIONS(2388), - [anon_sym_err_PLUSout_GT] = ACTIONS(2388), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2388), - [anon_sym_o_PLUSe_GT] = ACTIONS(2388), - [anon_sym_e_PLUSo_GT] = ACTIONS(2388), - [anon_sym_err_GT_GT] = ACTIONS(2386), - [anon_sym_out_GT_GT] = ACTIONS(2386), - [anon_sym_e_GT_GT] = ACTIONS(2386), - [anon_sym_o_GT_GT] = ACTIONS(2386), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2386), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2386), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2386), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2386), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(777)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1215), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(777), - [anon_sym_finally] = ACTIONS(2390), - [anon_sym_in] = ACTIONS(2390), - [sym__newline] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(2390), - [anon_sym_err_GT_PIPE] = ACTIONS(2390), - [anon_sym_out_GT_PIPE] = ACTIONS(2390), - [anon_sym_e_GT_PIPE] = ACTIONS(2390), - [anon_sym_o_GT_PIPE] = ACTIONS(2390), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2390), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2390), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2390), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2390), - [anon_sym_RPAREN] = ACTIONS(2390), - [anon_sym_GT2] = ACTIONS(2392), - [anon_sym_DASH2] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_EQ_GT] = ACTIONS(2390), - [anon_sym_STAR2] = ACTIONS(2392), - [anon_sym_and2] = ACTIONS(2390), - [anon_sym_xor2] = ACTIONS(2390), - [anon_sym_or2] = ACTIONS(2390), - [anon_sym_not_DASHin2] = ACTIONS(2390), - [anon_sym_has2] = ACTIONS(2390), - [anon_sym_not_DASHhas2] = ACTIONS(2390), - [anon_sym_starts_DASHwith2] = ACTIONS(2390), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2390), - [anon_sym_ends_DASHwith2] = ACTIONS(2390), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2390), - [anon_sym_EQ_EQ2] = ACTIONS(2390), - [anon_sym_BANG_EQ2] = ACTIONS(2390), - [anon_sym_LT2] = ACTIONS(2392), - [anon_sym_LT_EQ2] = ACTIONS(2390), - [anon_sym_GT_EQ2] = ACTIONS(2390), - [anon_sym_EQ_TILDE2] = ACTIONS(2390), - [anon_sym_BANG_TILDE2] = ACTIONS(2390), - [anon_sym_like2] = ACTIONS(2390), - [anon_sym_not_DASHlike2] = ACTIONS(2390), - [anon_sym_STAR_STAR2] = ACTIONS(2390), - [anon_sym_PLUS_PLUS2] = ACTIONS(2390), - [anon_sym_SLASH2] = ACTIONS(2392), - [anon_sym_mod2] = ACTIONS(2390), - [anon_sym_SLASH_SLASH2] = ACTIONS(2390), - [anon_sym_PLUS2] = ACTIONS(2392), - [anon_sym_bit_DASHshl2] = ACTIONS(2390), - [anon_sym_bit_DASHshr2] = ACTIONS(2390), - [anon_sym_bit_DASHand2] = ACTIONS(2390), - [anon_sym_bit_DASHxor2] = ACTIONS(2390), - [anon_sym_bit_DASHor2] = ACTIONS(2390), - [anon_sym_err_GT] = ACTIONS(2392), - [anon_sym_out_GT] = ACTIONS(2392), - [anon_sym_e_GT] = ACTIONS(2392), - [anon_sym_o_GT] = ACTIONS(2392), - [anon_sym_err_PLUSout_GT] = ACTIONS(2392), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2392), - [anon_sym_o_PLUSe_GT] = ACTIONS(2392), - [anon_sym_e_PLUSo_GT] = ACTIONS(2392), - [anon_sym_err_GT_GT] = ACTIONS(2390), - [anon_sym_out_GT_GT] = ACTIONS(2390), - [anon_sym_e_GT_GT] = ACTIONS(2390), - [anon_sym_o_GT_GT] = ACTIONS(2390), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2390), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2390), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2390), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2390), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(778)] = { - [sym_cell_path] = STATE(1345), - [sym_path] = STATE(703), + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1217), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(778), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [sym__newline] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_err_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_GT_PIPE] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), - [anon_sym_GT2] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_STAR2] = ACTIONS(1891), - [anon_sym_and2] = ACTIONS(1889), - [anon_sym_xor2] = ACTIONS(1889), - [anon_sym_or2] = ACTIONS(1889), - [anon_sym_not_DASHin2] = ACTIONS(1889), - [anon_sym_has2] = ACTIONS(1889), - [anon_sym_not_DASHhas2] = ACTIONS(1889), - [anon_sym_starts_DASHwith2] = ACTIONS(1889), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1889), - [anon_sym_ends_DASHwith2] = ACTIONS(1889), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1889), - [anon_sym_EQ_EQ2] = ACTIONS(1889), - [anon_sym_BANG_EQ2] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LT_EQ2] = ACTIONS(1889), - [anon_sym_GT_EQ2] = ACTIONS(1889), - [anon_sym_EQ_TILDE2] = ACTIONS(1889), - [anon_sym_BANG_TILDE2] = ACTIONS(1889), - [anon_sym_like2] = ACTIONS(1889), - [anon_sym_not_DASHlike2] = ACTIONS(1889), - [anon_sym_STAR_STAR2] = ACTIONS(1889), - [anon_sym_PLUS_PLUS2] = ACTIONS(1889), - [anon_sym_SLASH2] = ACTIONS(1891), - [anon_sym_mod2] = ACTIONS(1889), - [anon_sym_SLASH_SLASH2] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_bit_DASHshl2] = ACTIONS(1889), - [anon_sym_bit_DASHshr2] = ACTIONS(1889), - [anon_sym_bit_DASHand2] = ACTIONS(1889), - [anon_sym_bit_DASHxor2] = ACTIONS(1889), - [anon_sym_bit_DASHor2] = ACTIONS(1889), - [anon_sym_DOT2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1889), - [anon_sym_out_GT_GT] = ACTIONS(1889), - [anon_sym_e_GT_GT] = ACTIONS(1889), - [anon_sym_o_GT_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(779)] = { - [aux_sym__repeat_newline] = STATE(1108), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(973), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(974), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(779), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1124), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1221), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(975), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(780), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1089), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1223), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(781), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(782)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1225), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(782), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2394), - [sym__newline] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_PIPE] = ACTIONS(2394), - [anon_sym_err_GT_PIPE] = ACTIONS(2394), - [anon_sym_out_GT_PIPE] = ACTIONS(2394), - [anon_sym_e_GT_PIPE] = ACTIONS(2394), - [anon_sym_o_GT_PIPE] = ACTIONS(2394), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2394), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2394), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2394), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2394), - [anon_sym_RPAREN] = ACTIONS(2394), - [anon_sym_GT2] = ACTIONS(2396), - [anon_sym_DASH2] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_EQ_GT] = ACTIONS(2394), - [anon_sym_STAR2] = ACTIONS(2396), - [anon_sym_and2] = ACTIONS(2394), - [anon_sym_xor2] = ACTIONS(2394), - [anon_sym_or2] = ACTIONS(2394), - [anon_sym_not_DASHin2] = ACTIONS(2394), - [anon_sym_has2] = ACTIONS(2394), - [anon_sym_not_DASHhas2] = ACTIONS(2394), - [anon_sym_starts_DASHwith2] = ACTIONS(2394), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2394), - [anon_sym_ends_DASHwith2] = ACTIONS(2394), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2394), - [anon_sym_EQ_EQ2] = ACTIONS(2394), - [anon_sym_BANG_EQ2] = ACTIONS(2394), - [anon_sym_LT2] = ACTIONS(2396), - [anon_sym_LT_EQ2] = ACTIONS(2394), - [anon_sym_GT_EQ2] = ACTIONS(2394), - [anon_sym_EQ_TILDE2] = ACTIONS(2394), - [anon_sym_BANG_TILDE2] = ACTIONS(2394), - [anon_sym_like2] = ACTIONS(2394), - [anon_sym_not_DASHlike2] = ACTIONS(2394), - [anon_sym_STAR_STAR2] = ACTIONS(2394), - [anon_sym_PLUS_PLUS2] = ACTIONS(2394), - [anon_sym_SLASH2] = ACTIONS(2396), - [anon_sym_mod2] = ACTIONS(2394), - [anon_sym_SLASH_SLASH2] = ACTIONS(2394), - [anon_sym_PLUS2] = ACTIONS(2396), - [anon_sym_bit_DASHshl2] = ACTIONS(2394), - [anon_sym_bit_DASHshr2] = ACTIONS(2394), - [anon_sym_bit_DASHand2] = ACTIONS(2394), - [anon_sym_bit_DASHxor2] = ACTIONS(2394), - [anon_sym_bit_DASHor2] = ACTIONS(2394), - [anon_sym_err_GT] = ACTIONS(2396), - [anon_sym_out_GT] = ACTIONS(2396), - [anon_sym_e_GT] = ACTIONS(2396), - [anon_sym_o_GT] = ACTIONS(2396), - [anon_sym_err_PLUSout_GT] = ACTIONS(2396), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2396), - [anon_sym_o_PLUSe_GT] = ACTIONS(2396), - [anon_sym_e_PLUSo_GT] = ACTIONS(2396), - [anon_sym_err_GT_GT] = ACTIONS(2394), - [anon_sym_out_GT_GT] = ACTIONS(2394), - [anon_sym_e_GT_GT] = ACTIONS(2394), - [anon_sym_o_GT_GT] = ACTIONS(2394), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2394), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2394), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2394), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2394), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(783)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1226), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(949), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(460), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(978), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(783), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2398), - [sym__newline] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_err_GT_PIPE] = ACTIONS(2398), - [anon_sym_out_GT_PIPE] = ACTIONS(2398), - [anon_sym_e_GT_PIPE] = ACTIONS(2398), - [anon_sym_o_GT_PIPE] = ACTIONS(2398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_GT2] = ACTIONS(2400), - [anon_sym_DASH2] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_EQ_GT] = ACTIONS(2398), - [anon_sym_STAR2] = ACTIONS(2400), - [anon_sym_and2] = ACTIONS(2398), - [anon_sym_xor2] = ACTIONS(2398), - [anon_sym_or2] = ACTIONS(2398), - [anon_sym_not_DASHin2] = ACTIONS(2398), - [anon_sym_has2] = ACTIONS(2398), - [anon_sym_not_DASHhas2] = ACTIONS(2398), - [anon_sym_starts_DASHwith2] = ACTIONS(2398), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2398), - [anon_sym_ends_DASHwith2] = ACTIONS(2398), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2398), - [anon_sym_EQ_EQ2] = ACTIONS(2398), - [anon_sym_BANG_EQ2] = ACTIONS(2398), - [anon_sym_LT2] = ACTIONS(2400), - [anon_sym_LT_EQ2] = ACTIONS(2398), - [anon_sym_GT_EQ2] = ACTIONS(2398), - [anon_sym_EQ_TILDE2] = ACTIONS(2398), - [anon_sym_BANG_TILDE2] = ACTIONS(2398), - [anon_sym_like2] = ACTIONS(2398), - [anon_sym_not_DASHlike2] = ACTIONS(2398), - [anon_sym_STAR_STAR2] = ACTIONS(2398), - [anon_sym_PLUS_PLUS2] = ACTIONS(2398), - [anon_sym_SLASH2] = ACTIONS(2400), - [anon_sym_mod2] = ACTIONS(2398), - [anon_sym_SLASH_SLASH2] = ACTIONS(2398), - [anon_sym_PLUS2] = ACTIONS(2400), - [anon_sym_bit_DASHshl2] = ACTIONS(2398), - [anon_sym_bit_DASHshr2] = ACTIONS(2398), - [anon_sym_bit_DASHand2] = ACTIONS(2398), - [anon_sym_bit_DASHxor2] = ACTIONS(2398), - [anon_sym_bit_DASHor2] = ACTIONS(2398), - [anon_sym_err_GT] = ACTIONS(2400), - [anon_sym_out_GT] = ACTIONS(2400), - [anon_sym_e_GT] = ACTIONS(2400), - [anon_sym_o_GT] = ACTIONS(2400), - [anon_sym_err_PLUSout_GT] = ACTIONS(2400), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2400), - [anon_sym_o_PLUSe_GT] = ACTIONS(2400), - [anon_sym_e_PLUSo_GT] = ACTIONS(2400), - [anon_sym_err_GT_GT] = ACTIONS(2398), - [anon_sym_out_GT_GT] = ACTIONS(2398), - [anon_sym_e_GT_GT] = ACTIONS(2398), - [anon_sym_o_GT_GT] = ACTIONS(2398), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2398), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2398), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2398), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(784)] = { + [aux_sym__repeat_newline] = STATE(1128), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(784), - [anon_sym_finally] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2402), - [sym__newline] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2402), - [anon_sym_err_GT_PIPE] = ACTIONS(2402), - [anon_sym_out_GT_PIPE] = ACTIONS(2402), - [anon_sym_e_GT_PIPE] = ACTIONS(2402), - [anon_sym_o_GT_PIPE] = ACTIONS(2402), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2402), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2402), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2402), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2402), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_GT2] = ACTIONS(2404), - [anon_sym_DASH2] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_EQ_GT] = ACTIONS(2402), - [anon_sym_STAR2] = ACTIONS(2404), - [anon_sym_and2] = ACTIONS(2402), - [anon_sym_xor2] = ACTIONS(2402), - [anon_sym_or2] = ACTIONS(2402), - [anon_sym_not_DASHin2] = ACTIONS(2402), - [anon_sym_has2] = ACTIONS(2402), - [anon_sym_not_DASHhas2] = ACTIONS(2402), - [anon_sym_starts_DASHwith2] = ACTIONS(2402), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2402), - [anon_sym_ends_DASHwith2] = ACTIONS(2402), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2402), - [anon_sym_EQ_EQ2] = ACTIONS(2402), - [anon_sym_BANG_EQ2] = ACTIONS(2402), - [anon_sym_LT2] = ACTIONS(2404), - [anon_sym_LT_EQ2] = ACTIONS(2402), - [anon_sym_GT_EQ2] = ACTIONS(2402), - [anon_sym_EQ_TILDE2] = ACTIONS(2402), - [anon_sym_BANG_TILDE2] = ACTIONS(2402), - [anon_sym_like2] = ACTIONS(2402), - [anon_sym_not_DASHlike2] = ACTIONS(2402), - [anon_sym_STAR_STAR2] = ACTIONS(2402), - [anon_sym_PLUS_PLUS2] = ACTIONS(2402), - [anon_sym_SLASH2] = ACTIONS(2404), - [anon_sym_mod2] = ACTIONS(2402), - [anon_sym_SLASH_SLASH2] = ACTIONS(2402), - [anon_sym_PLUS2] = ACTIONS(2404), - [anon_sym_bit_DASHshl2] = ACTIONS(2402), - [anon_sym_bit_DASHshr2] = ACTIONS(2402), - [anon_sym_bit_DASHand2] = ACTIONS(2402), - [anon_sym_bit_DASHxor2] = ACTIONS(2402), - [anon_sym_bit_DASHor2] = ACTIONS(2402), - [anon_sym_err_GT] = ACTIONS(2404), - [anon_sym_out_GT] = ACTIONS(2404), - [anon_sym_e_GT] = ACTIONS(2404), - [anon_sym_o_GT] = ACTIONS(2404), - [anon_sym_err_PLUSout_GT] = ACTIONS(2404), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2404), - [anon_sym_o_PLUSe_GT] = ACTIONS(2404), - [anon_sym_e_PLUSo_GT] = ACTIONS(2404), - [anon_sym_err_GT_GT] = ACTIONS(2402), - [anon_sym_out_GT_GT] = ACTIONS(2402), - [anon_sym_e_GT_GT] = ACTIONS(2402), - [anon_sym_o_GT_GT] = ACTIONS(2402), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2402), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2402), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2402), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(785)] = { [sym_comment] = STATE(785), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [sym__newline] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_err_GT_PIPE] = ACTIONS(2406), - [anon_sym_out_GT_PIPE] = ACTIONS(2406), - [anon_sym_e_GT_PIPE] = ACTIONS(2406), - [anon_sym_o_GT_PIPE] = ACTIONS(2406), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2406), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2406), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2406), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2406), - [anon_sym_RPAREN] = ACTIONS(2406), - [anon_sym_GT2] = ACTIONS(2408), - [anon_sym_DASH2] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_EQ_GT] = ACTIONS(2406), - [anon_sym_STAR2] = ACTIONS(2408), - [anon_sym_and2] = ACTIONS(2406), - [anon_sym_xor2] = ACTIONS(2406), - [anon_sym_or2] = ACTIONS(2406), - [anon_sym_not_DASHin2] = ACTIONS(2406), - [anon_sym_has2] = ACTIONS(2406), - [anon_sym_not_DASHhas2] = ACTIONS(2406), - [anon_sym_starts_DASHwith2] = ACTIONS(2406), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2406), - [anon_sym_ends_DASHwith2] = ACTIONS(2406), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2406), - [anon_sym_EQ_EQ2] = ACTIONS(2406), - [anon_sym_BANG_EQ2] = ACTIONS(2406), - [anon_sym_LT2] = ACTIONS(2408), - [anon_sym_LT_EQ2] = ACTIONS(2406), - [anon_sym_GT_EQ2] = ACTIONS(2406), - [anon_sym_EQ_TILDE2] = ACTIONS(2406), - [anon_sym_BANG_TILDE2] = ACTIONS(2406), - [anon_sym_like2] = ACTIONS(2406), - [anon_sym_not_DASHlike2] = ACTIONS(2406), - [anon_sym_STAR_STAR2] = ACTIONS(2406), - [anon_sym_PLUS_PLUS2] = ACTIONS(2406), - [anon_sym_SLASH2] = ACTIONS(2408), - [anon_sym_mod2] = ACTIONS(2406), - [anon_sym_SLASH_SLASH2] = ACTIONS(2406), - [anon_sym_PLUS2] = ACTIONS(2408), - [anon_sym_bit_DASHshl2] = ACTIONS(2406), - [anon_sym_bit_DASHshr2] = ACTIONS(2406), - [anon_sym_bit_DASHand2] = ACTIONS(2406), - [anon_sym_bit_DASHxor2] = ACTIONS(2406), - [anon_sym_bit_DASHor2] = ACTIONS(2406), - [anon_sym_err_GT] = ACTIONS(2408), - [anon_sym_out_GT] = ACTIONS(2408), - [anon_sym_e_GT] = ACTIONS(2408), - [anon_sym_o_GT] = ACTIONS(2408), - [anon_sym_err_PLUSout_GT] = ACTIONS(2408), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2408), - [anon_sym_o_PLUSe_GT] = ACTIONS(2408), - [anon_sym_e_PLUSo_GT] = ACTIONS(2408), - [anon_sym_err_GT_GT] = ACTIONS(2406), - [anon_sym_out_GT_GT] = ACTIONS(2406), - [anon_sym_e_GT_GT] = ACTIONS(2406), - [anon_sym_o_GT_GT] = ACTIONS(2406), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2406), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2406), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2406), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2467), + [sym__newline] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_err_GT_PIPE] = ACTIONS(2467), + [anon_sym_out_GT_PIPE] = ACTIONS(2467), + [anon_sym_e_GT_PIPE] = ACTIONS(2467), + [anon_sym_o_GT_PIPE] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2467), + [anon_sym_GT2] = ACTIONS(2469), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_STAR2] = ACTIONS(2469), + [anon_sym_and2] = ACTIONS(2467), + [anon_sym_xor2] = ACTIONS(2467), + [anon_sym_or2] = ACTIONS(2467), + [anon_sym_not_DASHin2] = ACTIONS(2467), + [anon_sym_has2] = ACTIONS(2467), + [anon_sym_not_DASHhas2] = ACTIONS(2467), + [anon_sym_starts_DASHwith2] = ACTIONS(2467), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2467), + [anon_sym_ends_DASHwith2] = ACTIONS(2467), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2467), + [anon_sym_EQ_EQ2] = ACTIONS(2467), + [anon_sym_BANG_EQ2] = ACTIONS(2467), + [anon_sym_LT2] = ACTIONS(2469), + [anon_sym_LT_EQ2] = ACTIONS(2467), + [anon_sym_GT_EQ2] = ACTIONS(2467), + [anon_sym_EQ_TILDE2] = ACTIONS(2467), + [anon_sym_BANG_TILDE2] = ACTIONS(2467), + [anon_sym_like2] = ACTIONS(2467), + [anon_sym_not_DASHlike2] = ACTIONS(2467), + [anon_sym_STAR_STAR2] = ACTIONS(2467), + [anon_sym_PLUS_PLUS2] = ACTIONS(2467), + [anon_sym_SLASH2] = ACTIONS(2469), + [anon_sym_mod2] = ACTIONS(2467), + [anon_sym_SLASH_SLASH2] = ACTIONS(2467), + [anon_sym_PLUS2] = ACTIONS(2469), + [anon_sym_bit_DASHshl2] = ACTIONS(2467), + [anon_sym_bit_DASHshr2] = ACTIONS(2467), + [anon_sym_bit_DASHand2] = ACTIONS(2467), + [anon_sym_bit_DASHxor2] = ACTIONS(2467), + [anon_sym_bit_DASHor2] = ACTIONS(2467), + [anon_sym_COLON2] = ACTIONS(2467), + [anon_sym_err_GT] = ACTIONS(2469), + [anon_sym_out_GT] = ACTIONS(2469), + [anon_sym_e_GT] = ACTIONS(2469), + [anon_sym_o_GT] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT] = ACTIONS(2469), + [anon_sym_err_GT_GT] = ACTIONS(2467), + [anon_sym_out_GT_GT] = ACTIONS(2467), + [anon_sym_e_GT_GT] = ACTIONS(2467), + [anon_sym_o_GT_GT] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2467), [anon_sym_POUND] = ACTIONS(3), }, [STATE(786)] = { [sym_comment] = STATE(786), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [sym__newline] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_err_GT_PIPE] = ACTIONS(2410), - [anon_sym_out_GT_PIPE] = ACTIONS(2410), - [anon_sym_e_GT_PIPE] = ACTIONS(2410), - [anon_sym_o_GT_PIPE] = ACTIONS(2410), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2410), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2410), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2410), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2410), - [anon_sym_RPAREN] = ACTIONS(2410), - [anon_sym_GT2] = ACTIONS(2412), - [anon_sym_DASH2] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_EQ_GT] = ACTIONS(2410), - [anon_sym_STAR2] = ACTIONS(2412), - [anon_sym_and2] = ACTIONS(2410), - [anon_sym_xor2] = ACTIONS(2410), - [anon_sym_or2] = ACTIONS(2410), - [anon_sym_not_DASHin2] = ACTIONS(2410), - [anon_sym_has2] = ACTIONS(2410), - [anon_sym_not_DASHhas2] = ACTIONS(2410), - [anon_sym_starts_DASHwith2] = ACTIONS(2410), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2410), - [anon_sym_ends_DASHwith2] = ACTIONS(2410), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2410), - [anon_sym_EQ_EQ2] = ACTIONS(2410), - [anon_sym_BANG_EQ2] = ACTIONS(2410), - [anon_sym_LT2] = ACTIONS(2412), - [anon_sym_LT_EQ2] = ACTIONS(2410), - [anon_sym_GT_EQ2] = ACTIONS(2410), - [anon_sym_EQ_TILDE2] = ACTIONS(2410), - [anon_sym_BANG_TILDE2] = ACTIONS(2410), - [anon_sym_like2] = ACTIONS(2410), - [anon_sym_not_DASHlike2] = ACTIONS(2410), - [anon_sym_STAR_STAR2] = ACTIONS(2410), - [anon_sym_PLUS_PLUS2] = ACTIONS(2410), - [anon_sym_SLASH2] = ACTIONS(2412), - [anon_sym_mod2] = ACTIONS(2410), - [anon_sym_SLASH_SLASH2] = ACTIONS(2410), - [anon_sym_PLUS2] = ACTIONS(2412), - [anon_sym_bit_DASHshl2] = ACTIONS(2410), - [anon_sym_bit_DASHshr2] = ACTIONS(2410), - [anon_sym_bit_DASHand2] = ACTIONS(2410), - [anon_sym_bit_DASHxor2] = ACTIONS(2410), - [anon_sym_bit_DASHor2] = ACTIONS(2410), - [anon_sym_err_GT] = ACTIONS(2412), - [anon_sym_out_GT] = ACTIONS(2412), - [anon_sym_e_GT] = ACTIONS(2412), - [anon_sym_o_GT] = ACTIONS(2412), - [anon_sym_err_PLUSout_GT] = ACTIONS(2412), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2412), - [anon_sym_o_PLUSe_GT] = ACTIONS(2412), - [anon_sym_e_PLUSo_GT] = ACTIONS(2412), - [anon_sym_err_GT_GT] = ACTIONS(2410), - [anon_sym_out_GT_GT] = ACTIONS(2410), - [anon_sym_e_GT_GT] = ACTIONS(2410), - [anon_sym_o_GT_GT] = ACTIONS(2410), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2410), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2410), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2410), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2471), + [sym__newline] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_err_GT_PIPE] = ACTIONS(2471), + [anon_sym_out_GT_PIPE] = ACTIONS(2471), + [anon_sym_e_GT_PIPE] = ACTIONS(2471), + [anon_sym_o_GT_PIPE] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2471), + [anon_sym_RPAREN] = ACTIONS(2471), + [anon_sym_GT2] = ACTIONS(2473), + [anon_sym_DASH2] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_EQ_GT] = ACTIONS(2471), + [anon_sym_STAR2] = ACTIONS(2473), + [anon_sym_and2] = ACTIONS(2471), + [anon_sym_xor2] = ACTIONS(2471), + [anon_sym_or2] = ACTIONS(2471), + [anon_sym_not_DASHin2] = ACTIONS(2471), + [anon_sym_has2] = ACTIONS(2471), + [anon_sym_not_DASHhas2] = ACTIONS(2471), + [anon_sym_starts_DASHwith2] = ACTIONS(2471), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2471), + [anon_sym_ends_DASHwith2] = ACTIONS(2471), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2471), + [anon_sym_EQ_EQ2] = ACTIONS(2471), + [anon_sym_BANG_EQ2] = ACTIONS(2471), + [anon_sym_LT2] = ACTIONS(2473), + [anon_sym_LT_EQ2] = ACTIONS(2471), + [anon_sym_GT_EQ2] = ACTIONS(2471), + [anon_sym_EQ_TILDE2] = ACTIONS(2471), + [anon_sym_BANG_TILDE2] = ACTIONS(2471), + [anon_sym_like2] = ACTIONS(2471), + [anon_sym_not_DASHlike2] = ACTIONS(2471), + [anon_sym_STAR_STAR2] = ACTIONS(2471), + [anon_sym_PLUS_PLUS2] = ACTIONS(2471), + [anon_sym_SLASH2] = ACTIONS(2473), + [anon_sym_mod2] = ACTIONS(2471), + [anon_sym_SLASH_SLASH2] = ACTIONS(2471), + [anon_sym_PLUS2] = ACTIONS(2473), + [anon_sym_bit_DASHshl2] = ACTIONS(2471), + [anon_sym_bit_DASHshr2] = ACTIONS(2471), + [anon_sym_bit_DASHand2] = ACTIONS(2471), + [anon_sym_bit_DASHxor2] = ACTIONS(2471), + [anon_sym_bit_DASHor2] = ACTIONS(2471), + [anon_sym_COLON2] = ACTIONS(2471), + [anon_sym_err_GT] = ACTIONS(2473), + [anon_sym_out_GT] = ACTIONS(2473), + [anon_sym_e_GT] = ACTIONS(2473), + [anon_sym_o_GT] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT] = ACTIONS(2473), + [anon_sym_err_GT_GT] = ACTIONS(2471), + [anon_sym_out_GT_GT] = ACTIONS(2471), + [anon_sym_e_GT_GT] = ACTIONS(2471), + [anon_sym_o_GT_GT] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2471), [anon_sym_POUND] = ACTIONS(3), }, [STATE(787)] = { - [aux_sym__repeat_newline] = STATE(1131), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1132), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(787), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(788)] = { + [aux_sym__repeat_newline] = STATE(1136), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(788), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_in] = ACTIONS(2414), - [sym__newline] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2414), - [anon_sym_err_GT_PIPE] = ACTIONS(2414), - [anon_sym_out_GT_PIPE] = ACTIONS(2414), - [anon_sym_e_GT_PIPE] = ACTIONS(2414), - [anon_sym_o_GT_PIPE] = ACTIONS(2414), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2414), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2414), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2414), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2414), - [anon_sym_RPAREN] = ACTIONS(2414), - [anon_sym_GT2] = ACTIONS(2416), - [anon_sym_DASH2] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_EQ_GT] = ACTIONS(2414), - [anon_sym_STAR2] = ACTIONS(2416), - [anon_sym_and2] = ACTIONS(2414), - [anon_sym_xor2] = ACTIONS(2414), - [anon_sym_or2] = ACTIONS(2414), - [anon_sym_not_DASHin2] = ACTIONS(2414), - [anon_sym_has2] = ACTIONS(2414), - [anon_sym_not_DASHhas2] = ACTIONS(2414), - [anon_sym_starts_DASHwith2] = ACTIONS(2414), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2414), - [anon_sym_ends_DASHwith2] = ACTIONS(2414), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2414), - [anon_sym_EQ_EQ2] = ACTIONS(2414), - [anon_sym_BANG_EQ2] = ACTIONS(2414), - [anon_sym_LT2] = ACTIONS(2416), - [anon_sym_LT_EQ2] = ACTIONS(2414), - [anon_sym_GT_EQ2] = ACTIONS(2414), - [anon_sym_EQ_TILDE2] = ACTIONS(2414), - [anon_sym_BANG_TILDE2] = ACTIONS(2414), - [anon_sym_like2] = ACTIONS(2414), - [anon_sym_not_DASHlike2] = ACTIONS(2414), - [anon_sym_STAR_STAR2] = ACTIONS(2414), - [anon_sym_PLUS_PLUS2] = ACTIONS(2414), - [anon_sym_SLASH2] = ACTIONS(2416), - [anon_sym_mod2] = ACTIONS(2414), - [anon_sym_SLASH_SLASH2] = ACTIONS(2414), - [anon_sym_PLUS2] = ACTIONS(2416), - [anon_sym_bit_DASHshl2] = ACTIONS(2414), - [anon_sym_bit_DASHshr2] = ACTIONS(2414), - [anon_sym_bit_DASHand2] = ACTIONS(2414), - [anon_sym_bit_DASHxor2] = ACTIONS(2414), - [anon_sym_bit_DASHor2] = ACTIONS(2414), - [anon_sym_err_GT] = ACTIONS(2416), - [anon_sym_out_GT] = ACTIONS(2416), - [anon_sym_e_GT] = ACTIONS(2416), - [anon_sym_o_GT] = ACTIONS(2416), - [anon_sym_err_PLUSout_GT] = ACTIONS(2416), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2416), - [anon_sym_o_PLUSe_GT] = ACTIONS(2416), - [anon_sym_e_PLUSo_GT] = ACTIONS(2416), - [anon_sym_err_GT_GT] = ACTIONS(2414), - [anon_sym_out_GT_GT] = ACTIONS(2414), - [anon_sym_e_GT_GT] = ACTIONS(2414), - [anon_sym_o_GT_GT] = ACTIONS(2414), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2414), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2414), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2414), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(789)] = { - [aux_sym__repeat_newline] = STATE(1020), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1143), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(789), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(790)] = { + [aux_sym__repeat_newline] = STATE(1147), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(790), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(791)] = { - [aux_sym__repeat_newline] = STATE(1139), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_cell_path] = STATE(1341), + [sym_path] = STATE(737), [sym_comment] = STATE(791), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1901), + [anon_sym_in] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_GT2] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_STAR2] = ACTIONS(1903), + [anon_sym_and2] = ACTIONS(1901), + [anon_sym_xor2] = ACTIONS(1901), + [anon_sym_or2] = ACTIONS(1901), + [anon_sym_not_DASHin2] = ACTIONS(1901), + [anon_sym_has2] = ACTIONS(1901), + [anon_sym_not_DASHhas2] = ACTIONS(1901), + [anon_sym_starts_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1901), + [anon_sym_ends_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1901), + [anon_sym_EQ_EQ2] = ACTIONS(1901), + [anon_sym_BANG_EQ2] = ACTIONS(1901), + [anon_sym_LT2] = ACTIONS(1903), + [anon_sym_LT_EQ2] = ACTIONS(1901), + [anon_sym_GT_EQ2] = ACTIONS(1901), + [anon_sym_EQ_TILDE2] = ACTIONS(1901), + [anon_sym_BANG_TILDE2] = ACTIONS(1901), + [anon_sym_like2] = ACTIONS(1901), + [anon_sym_not_DASHlike2] = ACTIONS(1901), + [anon_sym_STAR_STAR2] = ACTIONS(1901), + [anon_sym_PLUS_PLUS2] = ACTIONS(1901), + [anon_sym_SLASH2] = ACTIONS(1903), + [anon_sym_mod2] = ACTIONS(1901), + [anon_sym_SLASH_SLASH2] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_bit_DASHshl2] = ACTIONS(1901), + [anon_sym_bit_DASHshr2] = ACTIONS(1901), + [anon_sym_bit_DASHand2] = ACTIONS(1901), + [anon_sym_bit_DASHxor2] = ACTIONS(1901), + [anon_sym_bit_DASHor2] = ACTIONS(1901), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), [anon_sym_POUND] = ACTIONS(3), }, [STATE(792)] = { - [aux_sym__repeat_newline] = STATE(1143), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(993), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(793)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_cell_path] = STATE(1343), + [sym_path] = STATE(737), [sym_comment] = STATE(793), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [sym__newline] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_err_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_GT_PIPE] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), + [anon_sym_GT2] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1905), + [anon_sym_STAR2] = ACTIONS(1907), + [anon_sym_and2] = ACTIONS(1905), + [anon_sym_xor2] = ACTIONS(1905), + [anon_sym_or2] = ACTIONS(1905), + [anon_sym_not_DASHin2] = ACTIONS(1905), + [anon_sym_has2] = ACTIONS(1905), + [anon_sym_not_DASHhas2] = ACTIONS(1905), + [anon_sym_starts_DASHwith2] = ACTIONS(1905), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1905), + [anon_sym_ends_DASHwith2] = ACTIONS(1905), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1905), + [anon_sym_EQ_EQ2] = ACTIONS(1905), + [anon_sym_BANG_EQ2] = ACTIONS(1905), + [anon_sym_LT2] = ACTIONS(1907), + [anon_sym_LT_EQ2] = ACTIONS(1905), + [anon_sym_GT_EQ2] = ACTIONS(1905), + [anon_sym_EQ_TILDE2] = ACTIONS(1905), + [anon_sym_BANG_TILDE2] = ACTIONS(1905), + [anon_sym_like2] = ACTIONS(1905), + [anon_sym_not_DASHlike2] = ACTIONS(1905), + [anon_sym_STAR_STAR2] = ACTIONS(1905), + [anon_sym_PLUS_PLUS2] = ACTIONS(1905), + [anon_sym_SLASH2] = ACTIONS(1907), + [anon_sym_mod2] = ACTIONS(1905), + [anon_sym_SLASH_SLASH2] = ACTIONS(1905), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_bit_DASHshl2] = ACTIONS(1905), + [anon_sym_bit_DASHshr2] = ACTIONS(1905), + [anon_sym_bit_DASHand2] = ACTIONS(1905), + [anon_sym_bit_DASHxor2] = ACTIONS(1905), + [anon_sym_bit_DASHor2] = ACTIONS(1905), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1905), + [anon_sym_out_GT_GT] = ACTIONS(1905), + [anon_sym_e_GT_GT] = ACTIONS(1905), + [anon_sym_o_GT_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), }, [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1145), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(996), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(794), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(795)] = { + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(795), - [anon_sym_finally] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(2426), - [sym__newline] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_err_GT_PIPE] = ACTIONS(2426), - [anon_sym_out_GT_PIPE] = ACTIONS(2426), - [anon_sym_e_GT_PIPE] = ACTIONS(2426), - [anon_sym_o_GT_PIPE] = ACTIONS(2426), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2426), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2426), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2426), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_GT2] = ACTIONS(2428), - [anon_sym_DASH2] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_EQ_GT] = ACTIONS(2426), - [anon_sym_STAR2] = ACTIONS(2428), - [anon_sym_and2] = ACTIONS(2426), - [anon_sym_xor2] = ACTIONS(2426), - [anon_sym_or2] = ACTIONS(2426), - [anon_sym_not_DASHin2] = ACTIONS(2426), - [anon_sym_has2] = ACTIONS(2426), - [anon_sym_not_DASHhas2] = ACTIONS(2426), - [anon_sym_starts_DASHwith2] = ACTIONS(2426), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2426), - [anon_sym_ends_DASHwith2] = ACTIONS(2426), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2426), - [anon_sym_EQ_EQ2] = ACTIONS(2426), - [anon_sym_BANG_EQ2] = ACTIONS(2426), - [anon_sym_LT2] = ACTIONS(2428), - [anon_sym_LT_EQ2] = ACTIONS(2426), - [anon_sym_GT_EQ2] = ACTIONS(2426), - [anon_sym_EQ_TILDE2] = ACTIONS(2426), - [anon_sym_BANG_TILDE2] = ACTIONS(2426), - [anon_sym_like2] = ACTIONS(2426), - [anon_sym_not_DASHlike2] = ACTIONS(2426), - [anon_sym_STAR_STAR2] = ACTIONS(2426), - [anon_sym_PLUS_PLUS2] = ACTIONS(2426), - [anon_sym_SLASH2] = ACTIONS(2428), - [anon_sym_mod2] = ACTIONS(2426), - [anon_sym_SLASH_SLASH2] = ACTIONS(2426), - [anon_sym_PLUS2] = ACTIONS(2428), - [anon_sym_bit_DASHshl2] = ACTIONS(2426), - [anon_sym_bit_DASHshr2] = ACTIONS(2426), - [anon_sym_bit_DASHand2] = ACTIONS(2426), - [anon_sym_bit_DASHxor2] = ACTIONS(2426), - [anon_sym_bit_DASHor2] = ACTIONS(2426), - [anon_sym_err_GT] = ACTIONS(2428), - [anon_sym_out_GT] = ACTIONS(2428), - [anon_sym_e_GT] = ACTIONS(2428), - [anon_sym_o_GT] = ACTIONS(2428), - [anon_sym_err_PLUSout_GT] = ACTIONS(2428), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2428), - [anon_sym_o_PLUSe_GT] = ACTIONS(2428), - [anon_sym_e_PLUSo_GT] = ACTIONS(2428), - [anon_sym_err_GT_GT] = ACTIONS(2426), - [anon_sym_out_GT_GT] = ACTIONS(2426), - [anon_sym_e_GT_GT] = ACTIONS(2426), - [anon_sym_o_GT_GT] = ACTIONS(2426), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2426), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2426), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2426), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(796)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1713), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1009), - [sym__unquoted_with_expr] = STATE(1289), - [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(796), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_err_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_GT_PIPE] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2265), + [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_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_COLON2] = ACTIONS(1740), + [anon_sym_err_GT] = ACTIONS(2267), + [anon_sym_out_GT] = ACTIONS(2267), + [anon_sym_e_GT] = ACTIONS(2267), + [anon_sym_o_GT] = ACTIONS(2267), + [anon_sym_err_PLUSout_GT] = ACTIONS(2267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), + [anon_sym_o_PLUSe_GT] = ACTIONS(2267), + [anon_sym_e_PLUSo_GT] = ACTIONS(2267), + [anon_sym_err_GT_GT] = ACTIONS(2265), + [anon_sym_out_GT_GT] = ACTIONS(2265), + [anon_sym_e_GT_GT] = ACTIONS(2265), + [anon_sym_o_GT_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(797)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1714), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1066), - [sym__unquoted_with_expr] = STATE(1325), - [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_cell_path] = STATE(1327), + [sym_path] = STATE(737), [sym_comment] = STATE(797), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1917), + [anon_sym_in] = ACTIONS(1917), + [sym__newline] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_err_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_GT_PIPE] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), + [anon_sym_GT2] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_STAR2] = ACTIONS(1919), + [anon_sym_and2] = ACTIONS(1917), + [anon_sym_xor2] = ACTIONS(1917), + [anon_sym_or2] = ACTIONS(1917), + [anon_sym_not_DASHin2] = ACTIONS(1917), + [anon_sym_has2] = ACTIONS(1917), + [anon_sym_not_DASHhas2] = ACTIONS(1917), + [anon_sym_starts_DASHwith2] = ACTIONS(1917), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1917), + [anon_sym_ends_DASHwith2] = ACTIONS(1917), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1917), + [anon_sym_EQ_EQ2] = ACTIONS(1917), + [anon_sym_BANG_EQ2] = ACTIONS(1917), + [anon_sym_LT2] = ACTIONS(1919), + [anon_sym_LT_EQ2] = ACTIONS(1917), + [anon_sym_GT_EQ2] = ACTIONS(1917), + [anon_sym_EQ_TILDE2] = ACTIONS(1917), + [anon_sym_BANG_TILDE2] = ACTIONS(1917), + [anon_sym_like2] = ACTIONS(1917), + [anon_sym_not_DASHlike2] = ACTIONS(1917), + [anon_sym_STAR_STAR2] = ACTIONS(1917), + [anon_sym_PLUS_PLUS2] = ACTIONS(1917), + [anon_sym_SLASH2] = ACTIONS(1919), + [anon_sym_mod2] = ACTIONS(1917), + [anon_sym_SLASH_SLASH2] = ACTIONS(1917), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_bit_DASHshl2] = ACTIONS(1917), + [anon_sym_bit_DASHshr2] = ACTIONS(1917), + [anon_sym_bit_DASHand2] = ACTIONS(1917), + [anon_sym_bit_DASHxor2] = ACTIONS(1917), + [anon_sym_bit_DASHor2] = ACTIONS(1917), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1917), + [anon_sym_out_GT_GT] = ACTIONS(1917), + [anon_sym_e_GT_GT] = ACTIONS(1917), + [anon_sym_o_GT_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(798)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1715), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1076), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(798), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(2475), + [aux_sym__immediate_decimal_token5] = ACTIONS(1794), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(799)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1716), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1081), - [sym__unquoted_with_expr] = STATE(1347), - [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(799), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), + [anon_sym_in] = ACTIONS(2477), + [sym__newline] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [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(2484), + [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(2484), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2484), + [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_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(2486), + [anon_sym_out_GT] = ACTIONS(2486), + [anon_sym_e_GT] = ACTIONS(2486), + [anon_sym_o_GT] = ACTIONS(2486), + [anon_sym_err_PLUSout_GT] = ACTIONS(2486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2486), + [anon_sym_o_PLUSe_GT] = ACTIONS(2486), + [anon_sym_e_PLUSo_GT] = ACTIONS(2486), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(800)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1717), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1084), - [sym__unquoted_with_expr] = STATE(1320), - [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(800), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [anon_sym_export] = ACTIONS(2128), + [anon_sym_alias] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_mut] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [aux_sym_cmd_identifier_token1] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_export_DASHenv] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_catch] = ACTIONS(2126), + [anon_sym_finally] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [anon_sym_null] = ACTIONS(2126), + [aux_sym_cmd_identifier_token3] = ACTIONS(2126), + [aux_sym_cmd_identifier_token4] = ACTIONS(2126), + [aux_sym_cmd_identifier_token5] = ACTIONS(2126), + [sym__newline] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_err_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_GT_PIPE] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_where] = ACTIONS(2126), + [aux_sym_expr_unary_token1] = ACTIONS(2126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2126), + [anon_sym_DOT_DOT_LT] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(2126), + [aux_sym__val_number_decimal_token3] = ACTIONS(2126), + [aux_sym__val_number_decimal_token4] = ACTIONS(2126), + [aux_sym__val_number_token1] = ACTIONS(2126), + [aux_sym__val_number_token2] = ACTIONS(2126), + [aux_sym__val_number_token3] = ACTIONS(2126), + [anon_sym_0b] = ACTIONS(2128), + [anon_sym_0o] = ACTIONS(2128), + [anon_sym_0x] = ACTIONS(2128), + [sym_val_date] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2126), }, [STATE(801)] = { [sym_comment] = STATE(801), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_in] = ACTIONS(2450), - [sym__newline] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2450), - [anon_sym_err_GT_PIPE] = ACTIONS(2450), - [anon_sym_out_GT_PIPE] = ACTIONS(2450), - [anon_sym_e_GT_PIPE] = ACTIONS(2450), - [anon_sym_o_GT_PIPE] = ACTIONS(2450), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2450), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2450), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2450), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2450), - [anon_sym_RPAREN] = ACTIONS(2450), - [anon_sym_GT2] = ACTIONS(2452), - [anon_sym_DASH2] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_EQ_GT] = ACTIONS(2450), - [anon_sym_STAR2] = ACTIONS(2452), - [anon_sym_and2] = ACTIONS(2450), - [anon_sym_xor2] = ACTIONS(2450), - [anon_sym_or2] = ACTIONS(2450), - [anon_sym_not_DASHin2] = ACTIONS(2450), - [anon_sym_has2] = ACTIONS(2450), - [anon_sym_not_DASHhas2] = ACTIONS(2450), - [anon_sym_starts_DASHwith2] = ACTIONS(2450), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2450), - [anon_sym_ends_DASHwith2] = ACTIONS(2450), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2450), - [anon_sym_EQ_EQ2] = ACTIONS(2450), - [anon_sym_BANG_EQ2] = ACTIONS(2450), - [anon_sym_LT2] = ACTIONS(2452), - [anon_sym_LT_EQ2] = ACTIONS(2450), - [anon_sym_GT_EQ2] = ACTIONS(2450), - [anon_sym_EQ_TILDE2] = ACTIONS(2450), - [anon_sym_BANG_TILDE2] = ACTIONS(2450), - [anon_sym_like2] = ACTIONS(2450), - [anon_sym_not_DASHlike2] = ACTIONS(2450), - [anon_sym_STAR_STAR2] = ACTIONS(2450), - [anon_sym_PLUS_PLUS2] = ACTIONS(2450), - [anon_sym_SLASH2] = ACTIONS(2452), - [anon_sym_mod2] = ACTIONS(2450), - [anon_sym_SLASH_SLASH2] = ACTIONS(2450), - [anon_sym_PLUS2] = ACTIONS(2452), - [anon_sym_bit_DASHshl2] = ACTIONS(2450), - [anon_sym_bit_DASHshr2] = ACTIONS(2450), - [anon_sym_bit_DASHand2] = ACTIONS(2450), - [anon_sym_bit_DASHxor2] = ACTIONS(2450), - [anon_sym_bit_DASHor2] = ACTIONS(2450), - [anon_sym_err_GT] = ACTIONS(2452), - [anon_sym_out_GT] = ACTIONS(2452), - [anon_sym_e_GT] = ACTIONS(2452), - [anon_sym_o_GT] = ACTIONS(2452), - [anon_sym_err_PLUSout_GT] = ACTIONS(2452), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2452), - [anon_sym_o_PLUSe_GT] = ACTIONS(2452), - [anon_sym_e_PLUSo_GT] = ACTIONS(2452), - [anon_sym_err_GT_GT] = ACTIONS(2450), - [anon_sym_out_GT_GT] = ACTIONS(2450), - [anon_sym_e_GT_GT] = ACTIONS(2450), - [anon_sym_o_GT_GT] = ACTIONS(2450), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2450), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2450), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2450), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2450), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_alias] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_mut] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [aux_sym_cmd_identifier_token1] = ACTIONS(2488), + [anon_sym_def] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_export_DASHenv] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2490), + [anon_sym_finally] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2490), + [anon_sym_false] = ACTIONS(2490), + [anon_sym_null] = ACTIONS(2490), + [aux_sym_cmd_identifier_token3] = ACTIONS(2490), + [aux_sym_cmd_identifier_token4] = ACTIONS(2490), + [aux_sym_cmd_identifier_token5] = ACTIONS(2490), + [sym__newline] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2490), + [anon_sym_err_GT_PIPE] = ACTIONS(2490), + [anon_sym_out_GT_PIPE] = ACTIONS(2490), + [anon_sym_e_GT_PIPE] = ACTIONS(2490), + [anon_sym_o_GT_PIPE] = ACTIONS(2490), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2490), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2490), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2490), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_DOLLAR] = ACTIONS(2488), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_DOT_DOT] = ACTIONS(2488), + [anon_sym_where] = ACTIONS(2490), + [aux_sym_expr_unary_token1] = ACTIONS(2490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2490), + [anon_sym_DOT_DOT_LT] = ACTIONS(2490), + [aux_sym__val_number_decimal_token1] = ACTIONS(2488), + [aux_sym__val_number_decimal_token2] = ACTIONS(2490), + [aux_sym__val_number_decimal_token3] = ACTIONS(2490), + [aux_sym__val_number_decimal_token4] = ACTIONS(2490), + [aux_sym__val_number_token1] = ACTIONS(2490), + [aux_sym__val_number_token2] = ACTIONS(2490), + [aux_sym__val_number_token3] = ACTIONS(2490), + [anon_sym_0b] = ACTIONS(2488), + [anon_sym_0o] = ACTIONS(2488), + [anon_sym_0x] = ACTIONS(2488), + [sym_val_date] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_BQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2490), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2490), }, [STATE(802)] = { + [aux_sym__repeat_newline] = STATE(1033), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(802), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_in] = ACTIONS(2454), - [sym__newline] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_err_GT_PIPE] = ACTIONS(2454), - [anon_sym_out_GT_PIPE] = ACTIONS(2454), - [anon_sym_e_GT_PIPE] = ACTIONS(2454), - [anon_sym_o_GT_PIPE] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_GT2] = ACTIONS(2456), - [anon_sym_DASH2] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(2454), - [anon_sym_STAR2] = ACTIONS(2456), - [anon_sym_and2] = ACTIONS(2454), - [anon_sym_xor2] = ACTIONS(2454), - [anon_sym_or2] = ACTIONS(2454), - [anon_sym_not_DASHin2] = ACTIONS(2454), - [anon_sym_has2] = ACTIONS(2454), - [anon_sym_not_DASHhas2] = ACTIONS(2454), - [anon_sym_starts_DASHwith2] = ACTIONS(2454), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2454), - [anon_sym_ends_DASHwith2] = ACTIONS(2454), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2454), - [anon_sym_EQ_EQ2] = ACTIONS(2454), - [anon_sym_BANG_EQ2] = ACTIONS(2454), - [anon_sym_LT2] = ACTIONS(2456), - [anon_sym_LT_EQ2] = ACTIONS(2454), - [anon_sym_GT_EQ2] = ACTIONS(2454), - [anon_sym_EQ_TILDE2] = ACTIONS(2454), - [anon_sym_BANG_TILDE2] = ACTIONS(2454), - [anon_sym_like2] = ACTIONS(2454), - [anon_sym_not_DASHlike2] = ACTIONS(2454), - [anon_sym_STAR_STAR2] = ACTIONS(2454), - [anon_sym_PLUS_PLUS2] = ACTIONS(2454), - [anon_sym_SLASH2] = ACTIONS(2456), - [anon_sym_mod2] = ACTIONS(2454), - [anon_sym_SLASH_SLASH2] = ACTIONS(2454), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_bit_DASHshl2] = ACTIONS(2454), - [anon_sym_bit_DASHshr2] = ACTIONS(2454), - [anon_sym_bit_DASHand2] = ACTIONS(2454), - [anon_sym_bit_DASHxor2] = ACTIONS(2454), - [anon_sym_bit_DASHor2] = ACTIONS(2454), - [anon_sym_err_GT] = ACTIONS(2456), - [anon_sym_out_GT] = ACTIONS(2456), - [anon_sym_e_GT] = ACTIONS(2456), - [anon_sym_o_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT] = ACTIONS(2456), - [anon_sym_err_GT_GT] = ACTIONS(2454), - [anon_sym_out_GT_GT] = ACTIONS(2454), - [anon_sym_e_GT_GT] = ACTIONS(2454), - [anon_sym_o_GT_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(803)] = { + [aux_sym__repeat_newline] = STATE(1034), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(803), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_in] = ACTIONS(2458), - [sym__newline] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_err_GT_PIPE] = ACTIONS(2458), - [anon_sym_out_GT_PIPE] = ACTIONS(2458), - [anon_sym_e_GT_PIPE] = ACTIONS(2458), - [anon_sym_o_GT_PIPE] = ACTIONS(2458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_GT2] = ACTIONS(2460), - [anon_sym_DASH2] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_EQ_GT] = ACTIONS(2458), - [anon_sym_STAR2] = ACTIONS(2460), - [anon_sym_and2] = ACTIONS(2458), - [anon_sym_xor2] = ACTIONS(2458), - [anon_sym_or2] = ACTIONS(2458), - [anon_sym_not_DASHin2] = ACTIONS(2458), - [anon_sym_has2] = ACTIONS(2458), - [anon_sym_not_DASHhas2] = ACTIONS(2458), - [anon_sym_starts_DASHwith2] = ACTIONS(2458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), - [anon_sym_ends_DASHwith2] = ACTIONS(2458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), - [anon_sym_EQ_EQ2] = ACTIONS(2458), - [anon_sym_BANG_EQ2] = ACTIONS(2458), - [anon_sym_LT2] = ACTIONS(2460), - [anon_sym_LT_EQ2] = ACTIONS(2458), - [anon_sym_GT_EQ2] = ACTIONS(2458), - [anon_sym_EQ_TILDE2] = ACTIONS(2458), - [anon_sym_BANG_TILDE2] = ACTIONS(2458), - [anon_sym_like2] = ACTIONS(2458), - [anon_sym_not_DASHlike2] = ACTIONS(2458), - [anon_sym_STAR_STAR2] = ACTIONS(2458), - [anon_sym_PLUS_PLUS2] = ACTIONS(2458), - [anon_sym_SLASH2] = ACTIONS(2460), - [anon_sym_mod2] = ACTIONS(2458), - [anon_sym_SLASH_SLASH2] = ACTIONS(2458), - [anon_sym_PLUS2] = ACTIONS(2460), - [anon_sym_bit_DASHshl2] = ACTIONS(2458), - [anon_sym_bit_DASHshr2] = ACTIONS(2458), - [anon_sym_bit_DASHand2] = ACTIONS(2458), - [anon_sym_bit_DASHxor2] = ACTIONS(2458), - [anon_sym_bit_DASHor2] = ACTIONS(2458), - [anon_sym_err_GT] = ACTIONS(2460), - [anon_sym_out_GT] = ACTIONS(2460), - [anon_sym_e_GT] = ACTIONS(2460), - [anon_sym_o_GT] = ACTIONS(2460), - [anon_sym_err_PLUSout_GT] = ACTIONS(2460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), - [anon_sym_o_PLUSe_GT] = ACTIONS(2460), - [anon_sym_e_PLUSo_GT] = ACTIONS(2460), - [anon_sym_err_GT_GT] = ACTIONS(2458), - [anon_sym_out_GT_GT] = ACTIONS(2458), - [anon_sym_e_GT_GT] = ACTIONS(2458), - [anon_sym_o_GT_GT] = ACTIONS(2458), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(804)] = { [sym_comment] = STATE(804), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [sym__newline] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_err_GT_PIPE] = ACTIONS(2462), - [anon_sym_out_GT_PIPE] = ACTIONS(2462), - [anon_sym_e_GT_PIPE] = ACTIONS(2462), - [anon_sym_o_GT_PIPE] = ACTIONS(2462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2462), - [anon_sym_RPAREN] = ACTIONS(2462), - [anon_sym_GT2] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_EQ_GT] = ACTIONS(2462), - [anon_sym_STAR2] = ACTIONS(2464), - [anon_sym_and2] = ACTIONS(2462), - [anon_sym_xor2] = ACTIONS(2462), - [anon_sym_or2] = ACTIONS(2462), - [anon_sym_not_DASHin2] = ACTIONS(2462), - [anon_sym_has2] = ACTIONS(2462), - [anon_sym_not_DASHhas2] = ACTIONS(2462), - [anon_sym_starts_DASHwith2] = ACTIONS(2462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2462), - [anon_sym_ends_DASHwith2] = ACTIONS(2462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2462), - [anon_sym_EQ_EQ2] = ACTIONS(2462), - [anon_sym_BANG_EQ2] = ACTIONS(2462), - [anon_sym_LT2] = ACTIONS(2464), - [anon_sym_LT_EQ2] = ACTIONS(2462), - [anon_sym_GT_EQ2] = ACTIONS(2462), - [anon_sym_EQ_TILDE2] = ACTIONS(2462), - [anon_sym_BANG_TILDE2] = ACTIONS(2462), - [anon_sym_like2] = ACTIONS(2462), - [anon_sym_not_DASHlike2] = ACTIONS(2462), - [anon_sym_STAR_STAR2] = ACTIONS(2462), - [anon_sym_PLUS_PLUS2] = ACTIONS(2462), - [anon_sym_SLASH2] = ACTIONS(2464), - [anon_sym_mod2] = ACTIONS(2462), - [anon_sym_SLASH_SLASH2] = ACTIONS(2462), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_bit_DASHshl2] = ACTIONS(2462), - [anon_sym_bit_DASHshr2] = ACTIONS(2462), - [anon_sym_bit_DASHand2] = ACTIONS(2462), - [anon_sym_bit_DASHxor2] = ACTIONS(2462), - [anon_sym_bit_DASHor2] = ACTIONS(2462), - [anon_sym_err_GT] = ACTIONS(2464), - [anon_sym_out_GT] = ACTIONS(2464), - [anon_sym_e_GT] = ACTIONS(2464), - [anon_sym_o_GT] = ACTIONS(2464), - [anon_sym_err_PLUSout_GT] = ACTIONS(2464), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2464), - [anon_sym_o_PLUSe_GT] = ACTIONS(2464), - [anon_sym_e_PLUSo_GT] = ACTIONS(2464), - [anon_sym_err_GT_GT] = ACTIONS(2462), - [anon_sym_out_GT_GT] = ACTIONS(2462), - [anon_sym_e_GT_GT] = ACTIONS(2462), - [anon_sym_o_GT_GT] = ACTIONS(2462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token1] = ACTIONS(2496), + [aux_sym__immediate_decimal_token5] = ACTIONS(2498), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(805)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(805), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_in] = ACTIONS(2466), - [sym__newline] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_err_GT_PIPE] = ACTIONS(2466), - [anon_sym_out_GT_PIPE] = ACTIONS(2466), - [anon_sym_e_GT_PIPE] = ACTIONS(2466), - [anon_sym_o_GT_PIPE] = ACTIONS(2466), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2466), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2466), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2466), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2466), - [anon_sym_RPAREN] = ACTIONS(2466), - [anon_sym_GT2] = ACTIONS(2468), - [anon_sym_DASH2] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_EQ_GT] = ACTIONS(2466), - [anon_sym_STAR2] = ACTIONS(2468), - [anon_sym_and2] = ACTIONS(2466), - [anon_sym_xor2] = ACTIONS(2466), - [anon_sym_or2] = ACTIONS(2466), - [anon_sym_not_DASHin2] = ACTIONS(2466), - [anon_sym_has2] = ACTIONS(2466), - [anon_sym_not_DASHhas2] = ACTIONS(2466), - [anon_sym_starts_DASHwith2] = ACTIONS(2466), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2466), - [anon_sym_ends_DASHwith2] = ACTIONS(2466), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2466), - [anon_sym_EQ_EQ2] = ACTIONS(2466), - [anon_sym_BANG_EQ2] = ACTIONS(2466), - [anon_sym_LT2] = ACTIONS(2468), - [anon_sym_LT_EQ2] = ACTIONS(2466), - [anon_sym_GT_EQ2] = ACTIONS(2466), - [anon_sym_EQ_TILDE2] = ACTIONS(2466), - [anon_sym_BANG_TILDE2] = ACTIONS(2466), - [anon_sym_like2] = ACTIONS(2466), - [anon_sym_not_DASHlike2] = ACTIONS(2466), - [anon_sym_STAR_STAR2] = ACTIONS(2466), - [anon_sym_PLUS_PLUS2] = ACTIONS(2466), - [anon_sym_SLASH2] = ACTIONS(2468), - [anon_sym_mod2] = ACTIONS(2466), - [anon_sym_SLASH_SLASH2] = ACTIONS(2466), - [anon_sym_PLUS2] = ACTIONS(2468), - [anon_sym_bit_DASHshl2] = ACTIONS(2466), - [anon_sym_bit_DASHshr2] = ACTIONS(2466), - [anon_sym_bit_DASHand2] = ACTIONS(2466), - [anon_sym_bit_DASHxor2] = ACTIONS(2466), - [anon_sym_bit_DASHor2] = ACTIONS(2466), - [anon_sym_err_GT] = ACTIONS(2468), - [anon_sym_out_GT] = ACTIONS(2468), - [anon_sym_e_GT] = ACTIONS(2468), - [anon_sym_o_GT] = ACTIONS(2468), - [anon_sym_err_PLUSout_GT] = ACTIONS(2468), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2468), - [anon_sym_o_PLUSe_GT] = ACTIONS(2468), - [anon_sym_e_PLUSo_GT] = ACTIONS(2468), - [anon_sym_err_GT_GT] = ACTIONS(2466), - [anon_sym_out_GT_GT] = ACTIONS(2466), - [anon_sym_e_GT_GT] = ACTIONS(2466), - [anon_sym_o_GT_GT] = ACTIONS(2466), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2466), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2466), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2466), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(806)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1718), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1110), - [sym__unquoted_with_expr] = STATE(1348), - [sym__unquoted_anonymous_prefix] = STATE(4801), + [aux_sym__repeat_newline] = STATE(1036), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(806), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(807)] = { + [aux_sym__repeat_newline] = STATE(1037), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2227), - [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_GT2] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_COLON2] = ACTIONS(1716), - [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_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(808)] = { - [aux_sym__repeat_newline] = STATE(1148), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(809)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2470), - [sym__newline] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_err_GT_PIPE] = ACTIONS(2470), - [anon_sym_out_GT_PIPE] = ACTIONS(2470), - [anon_sym_e_GT_PIPE] = ACTIONS(2470), - [anon_sym_o_GT_PIPE] = ACTIONS(2470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2470), - [anon_sym_RPAREN] = ACTIONS(2470), - [anon_sym_GT2] = ACTIONS(2472), - [anon_sym_DASH2] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(2470), - [anon_sym_STAR2] = ACTIONS(2472), - [anon_sym_and2] = ACTIONS(2470), - [anon_sym_xor2] = ACTIONS(2470), - [anon_sym_or2] = ACTIONS(2470), - [anon_sym_not_DASHin2] = ACTIONS(2470), - [anon_sym_has2] = ACTIONS(2470), - [anon_sym_not_DASHhas2] = ACTIONS(2470), - [anon_sym_starts_DASHwith2] = ACTIONS(2470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2470), - [anon_sym_ends_DASHwith2] = ACTIONS(2470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2470), - [anon_sym_EQ_EQ2] = ACTIONS(2470), - [anon_sym_BANG_EQ2] = ACTIONS(2470), - [anon_sym_LT2] = ACTIONS(2472), - [anon_sym_LT_EQ2] = ACTIONS(2470), - [anon_sym_GT_EQ2] = ACTIONS(2470), - [anon_sym_EQ_TILDE2] = ACTIONS(2470), - [anon_sym_BANG_TILDE2] = ACTIONS(2470), - [anon_sym_like2] = ACTIONS(2470), - [anon_sym_not_DASHlike2] = ACTIONS(2470), - [anon_sym_STAR_STAR2] = ACTIONS(2470), - [anon_sym_PLUS_PLUS2] = ACTIONS(2470), - [anon_sym_SLASH2] = ACTIONS(2472), - [anon_sym_mod2] = ACTIONS(2470), - [anon_sym_SLASH_SLASH2] = ACTIONS(2470), - [anon_sym_PLUS2] = ACTIONS(2472), - [anon_sym_bit_DASHshl2] = ACTIONS(2470), - [anon_sym_bit_DASHshr2] = ACTIONS(2470), - [anon_sym_bit_DASHand2] = ACTIONS(2470), - [anon_sym_bit_DASHxor2] = ACTIONS(2470), - [anon_sym_bit_DASHor2] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2470), - [anon_sym_err_GT] = ACTIONS(2472), - [anon_sym_out_GT] = ACTIONS(2472), - [anon_sym_e_GT] = ACTIONS(2472), - [anon_sym_o_GT] = ACTIONS(2472), - [anon_sym_err_PLUSout_GT] = ACTIONS(2472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2472), - [anon_sym_o_PLUSe_GT] = ACTIONS(2472), - [anon_sym_e_PLUSo_GT] = ACTIONS(2472), - [anon_sym_err_GT_GT] = ACTIONS(2470), - [anon_sym_out_GT_GT] = ACTIONS(2470), - [anon_sym_e_GT_GT] = ACTIONS(2470), - [anon_sym_o_GT_GT] = ACTIONS(2470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(810)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2470), - [sym__newline] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_err_GT_PIPE] = ACTIONS(2470), - [anon_sym_out_GT_PIPE] = ACTIONS(2470), - [anon_sym_e_GT_PIPE] = ACTIONS(2470), - [anon_sym_o_GT_PIPE] = ACTIONS(2470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2470), - [anon_sym_RPAREN] = ACTIONS(2470), - [anon_sym_GT2] = ACTIONS(2472), - [anon_sym_DASH2] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(2470), - [anon_sym_STAR2] = ACTIONS(2472), - [anon_sym_and2] = ACTIONS(2470), - [anon_sym_xor2] = ACTIONS(2470), - [anon_sym_or2] = ACTIONS(2470), - [anon_sym_not_DASHin2] = ACTIONS(2470), - [anon_sym_has2] = ACTIONS(2470), - [anon_sym_not_DASHhas2] = ACTIONS(2470), - [anon_sym_starts_DASHwith2] = ACTIONS(2470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2470), - [anon_sym_ends_DASHwith2] = ACTIONS(2470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2470), - [anon_sym_EQ_EQ2] = ACTIONS(2470), - [anon_sym_BANG_EQ2] = ACTIONS(2470), - [anon_sym_LT2] = ACTIONS(2472), - [anon_sym_LT_EQ2] = ACTIONS(2470), - [anon_sym_GT_EQ2] = ACTIONS(2470), - [anon_sym_EQ_TILDE2] = ACTIONS(2470), - [anon_sym_BANG_TILDE2] = ACTIONS(2470), - [anon_sym_like2] = ACTIONS(2470), - [anon_sym_not_DASHlike2] = ACTIONS(2470), - [anon_sym_STAR_STAR2] = ACTIONS(2470), - [anon_sym_PLUS_PLUS2] = ACTIONS(2470), - [anon_sym_SLASH2] = ACTIONS(2472), - [anon_sym_mod2] = ACTIONS(2470), - [anon_sym_SLASH_SLASH2] = ACTIONS(2470), - [anon_sym_PLUS2] = ACTIONS(2472), - [anon_sym_bit_DASHshl2] = ACTIONS(2470), - [anon_sym_bit_DASHshr2] = ACTIONS(2470), - [anon_sym_bit_DASHand2] = ACTIONS(2470), - [anon_sym_bit_DASHxor2] = ACTIONS(2470), - [anon_sym_bit_DASHor2] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2470), - [anon_sym_err_GT] = ACTIONS(2472), - [anon_sym_out_GT] = ACTIONS(2472), - [anon_sym_e_GT] = ACTIONS(2472), - [anon_sym_o_GT] = ACTIONS(2472), - [anon_sym_err_PLUSout_GT] = ACTIONS(2472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2472), - [anon_sym_o_PLUSe_GT] = ACTIONS(2472), - [anon_sym_e_PLUSo_GT] = ACTIONS(2472), - [anon_sym_err_GT_GT] = ACTIONS(2470), - [anon_sym_out_GT_GT] = ACTIONS(2470), - [anon_sym_e_GT_GT] = ACTIONS(2470), - [anon_sym_o_GT_GT] = ACTIONS(2470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(811)] = { - [aux_sym__repeat_newline] = STATE(1000), - [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(811), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [ts_builtin_sym_end] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(2500), + [aux_sym__immediate_decimal_token5] = ACTIONS(2502), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(812)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1719), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(996), - [sym__unquoted_with_expr] = STATE(1333), - [sym__unquoted_anonymous_prefix] = STATE(4801), + [aux_sym__repeat_newline] = STATE(1041), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(813)] = { - [aux_sym__repeat_newline] = STATE(1048), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(813), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(814)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(814), - [anon_sym_in] = ACTIONS(2474), - [sym__newline] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_err_GT_PIPE] = ACTIONS(2474), - [anon_sym_out_GT_PIPE] = ACTIONS(2474), - [anon_sym_e_GT_PIPE] = ACTIONS(2474), - [anon_sym_o_GT_PIPE] = ACTIONS(2474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2474), - [anon_sym_RPAREN] = ACTIONS(2474), - [anon_sym_GT2] = ACTIONS(2476), - [anon_sym_DASH2] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(2474), - [anon_sym_STAR2] = ACTIONS(2476), - [anon_sym_and2] = ACTIONS(2474), - [anon_sym_xor2] = ACTIONS(2474), - [anon_sym_or2] = ACTIONS(2474), - [anon_sym_not_DASHin2] = ACTIONS(2474), - [anon_sym_has2] = ACTIONS(2474), - [anon_sym_not_DASHhas2] = ACTIONS(2474), - [anon_sym_starts_DASHwith2] = ACTIONS(2474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2474), - [anon_sym_ends_DASHwith2] = ACTIONS(2474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2474), - [anon_sym_EQ_EQ2] = ACTIONS(2474), - [anon_sym_BANG_EQ2] = ACTIONS(2474), - [anon_sym_LT2] = ACTIONS(2476), - [anon_sym_LT_EQ2] = ACTIONS(2474), - [anon_sym_GT_EQ2] = ACTIONS(2474), - [anon_sym_EQ_TILDE2] = ACTIONS(2474), - [anon_sym_BANG_TILDE2] = ACTIONS(2474), - [anon_sym_like2] = ACTIONS(2474), - [anon_sym_not_DASHlike2] = ACTIONS(2474), - [anon_sym_STAR_STAR2] = ACTIONS(2474), - [anon_sym_PLUS_PLUS2] = ACTIONS(2474), - [anon_sym_SLASH2] = ACTIONS(2476), - [anon_sym_mod2] = ACTIONS(2474), - [anon_sym_SLASH_SLASH2] = ACTIONS(2474), - [anon_sym_PLUS2] = ACTIONS(2476), - [anon_sym_bit_DASHshl2] = ACTIONS(2474), - [anon_sym_bit_DASHshr2] = ACTIONS(2474), - [anon_sym_bit_DASHand2] = ACTIONS(2474), - [anon_sym_bit_DASHxor2] = ACTIONS(2474), - [anon_sym_bit_DASHor2] = ACTIONS(2474), - [anon_sym_COLON2] = ACTIONS(2474), - [anon_sym_err_GT] = ACTIONS(2476), - [anon_sym_out_GT] = ACTIONS(2476), - [anon_sym_e_GT] = ACTIONS(2476), - [anon_sym_o_GT] = ACTIONS(2476), - [anon_sym_err_PLUSout_GT] = ACTIONS(2476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2476), - [anon_sym_o_PLUSe_GT] = ACTIONS(2476), - [anon_sym_e_PLUSo_GT] = ACTIONS(2476), - [anon_sym_err_GT_GT] = ACTIONS(2474), - [anon_sym_out_GT_GT] = ACTIONS(2474), - [anon_sym_e_GT_GT] = ACTIONS(2474), - [anon_sym_o_GT_GT] = ACTIONS(2474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(815)] = { [sym_comment] = STATE(815), - [anon_sym_in] = ACTIONS(2478), - [sym__newline] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_err_GT_PIPE] = ACTIONS(2478), - [anon_sym_out_GT_PIPE] = ACTIONS(2478), - [anon_sym_e_GT_PIPE] = ACTIONS(2478), - [anon_sym_o_GT_PIPE] = ACTIONS(2478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2478), - [anon_sym_RPAREN] = ACTIONS(2478), - [anon_sym_GT2] = ACTIONS(2480), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_EQ_GT] = ACTIONS(2478), - [anon_sym_STAR2] = ACTIONS(2480), - [anon_sym_and2] = ACTIONS(2478), - [anon_sym_xor2] = ACTIONS(2478), - [anon_sym_or2] = ACTIONS(2478), - [anon_sym_not_DASHin2] = ACTIONS(2478), - [anon_sym_has2] = ACTIONS(2478), - [anon_sym_not_DASHhas2] = ACTIONS(2478), - [anon_sym_starts_DASHwith2] = ACTIONS(2478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2478), - [anon_sym_ends_DASHwith2] = ACTIONS(2478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2478), - [anon_sym_EQ_EQ2] = ACTIONS(2478), - [anon_sym_BANG_EQ2] = ACTIONS(2478), - [anon_sym_LT2] = ACTIONS(2480), - [anon_sym_LT_EQ2] = ACTIONS(2478), - [anon_sym_GT_EQ2] = ACTIONS(2478), - [anon_sym_EQ_TILDE2] = ACTIONS(2478), - [anon_sym_BANG_TILDE2] = ACTIONS(2478), - [anon_sym_like2] = ACTIONS(2478), - [anon_sym_not_DASHlike2] = ACTIONS(2478), - [anon_sym_STAR_STAR2] = ACTIONS(2478), - [anon_sym_PLUS_PLUS2] = ACTIONS(2478), - [anon_sym_SLASH2] = ACTIONS(2480), - [anon_sym_mod2] = ACTIONS(2478), - [anon_sym_SLASH_SLASH2] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2480), - [anon_sym_bit_DASHshl2] = ACTIONS(2478), - [anon_sym_bit_DASHshr2] = ACTIONS(2478), - [anon_sym_bit_DASHand2] = ACTIONS(2478), - [anon_sym_bit_DASHxor2] = ACTIONS(2478), - [anon_sym_bit_DASHor2] = ACTIONS(2478), - [anon_sym_COLON2] = ACTIONS(2478), - [anon_sym_err_GT] = ACTIONS(2480), - [anon_sym_out_GT] = ACTIONS(2480), - [anon_sym_e_GT] = ACTIONS(2480), - [anon_sym_o_GT] = ACTIONS(2480), - [anon_sym_err_PLUSout_GT] = ACTIONS(2480), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2480), - [anon_sym_o_PLUSe_GT] = ACTIONS(2480), - [anon_sym_e_PLUSo_GT] = ACTIONS(2480), - [anon_sym_err_GT_GT] = ACTIONS(2478), - [anon_sym_out_GT_GT] = ACTIONS(2478), - [anon_sym_e_GT_GT] = ACTIONS(2478), - [anon_sym_o_GT_GT] = ACTIONS(2478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [aux_sym__immediate_decimal_token5] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(816)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1720), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1042), - [sym__unquoted_with_expr] = STATE(1346), - [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [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(2446), - [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(2448), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(817)] = { - [aux_sym__repeat_newline] = STATE(1022), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(817), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [aux_sym__immediate_decimal_token5] = ACTIONS(2504), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(817)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(817), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(818)] = { - [aux_sym__repeat_newline] = STATE(1023), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1045), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(818), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(819)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1253), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(1047), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(820)] = { - [aux_sym__repeat_newline] = STATE(1024), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(820), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(821)] = { - [aux_sym__repeat_newline] = STATE(1025), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1051), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(821), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(822)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1254), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(957), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1364), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1089), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4915), [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(823)] = { - [aux_sym__repeat_newline] = STATE(1026), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(823), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1028), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1318), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1090), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4915), [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1029), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(826)] = { - [aux_sym__repeat_newline] = STATE(1030), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1057), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(826), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1032), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1059), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(828)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1255), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(958), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_cell_path] = STATE(1340), + [sym_path] = STATE(737), [sym_comment] = STATE(828), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [sym__newline] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_err_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_GT_PIPE] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), + [anon_sym_GT2] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_STAR2] = ACTIONS(1911), + [anon_sym_and2] = ACTIONS(1909), + [anon_sym_xor2] = ACTIONS(1909), + [anon_sym_or2] = ACTIONS(1909), + [anon_sym_not_DASHin2] = ACTIONS(1909), + [anon_sym_has2] = ACTIONS(1909), + [anon_sym_not_DASHhas2] = ACTIONS(1909), + [anon_sym_starts_DASHwith2] = ACTIONS(1909), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1909), + [anon_sym_ends_DASHwith2] = ACTIONS(1909), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1909), + [anon_sym_EQ_EQ2] = ACTIONS(1909), + [anon_sym_BANG_EQ2] = ACTIONS(1909), + [anon_sym_LT2] = ACTIONS(1911), + [anon_sym_LT_EQ2] = ACTIONS(1909), + [anon_sym_GT_EQ2] = ACTIONS(1909), + [anon_sym_EQ_TILDE2] = ACTIONS(1909), + [anon_sym_BANG_TILDE2] = ACTIONS(1909), + [anon_sym_like2] = ACTIONS(1909), + [anon_sym_not_DASHlike2] = ACTIONS(1909), + [anon_sym_STAR_STAR2] = ACTIONS(1909), + [anon_sym_PLUS_PLUS2] = ACTIONS(1909), + [anon_sym_SLASH2] = ACTIONS(1911), + [anon_sym_mod2] = ACTIONS(1909), + [anon_sym_SLASH_SLASH2] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(1911), + [anon_sym_bit_DASHshl2] = ACTIONS(1909), + [anon_sym_bit_DASHshr2] = ACTIONS(1909), + [anon_sym_bit_DASHand2] = ACTIONS(1909), + [anon_sym_bit_DASHxor2] = ACTIONS(1909), + [anon_sym_bit_DASHor2] = ACTIONS(1909), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1911), + [anon_sym_out_GT] = ACTIONS(1911), + [anon_sym_e_GT] = ACTIONS(1911), + [anon_sym_o_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT] = ACTIONS(1911), + [anon_sym_err_GT_GT] = ACTIONS(1909), + [anon_sym_out_GT_GT] = ACTIONS(1909), + [anon_sym_e_GT_GT] = ACTIONS(1909), + [anon_sym_o_GT_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym__expr_parenthesized_immediate] = STATE(5076), + [aux_sym__repeat_newline] = STATE(1061), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(830)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1324), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1091), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4915), [sym_comment] = STATE(830), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(831)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(1066), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(831), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(832)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(957), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1328), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1092), + [sym__unquoted_with_expr] = STATE(1331), + [sym__unquoted_anonymous_prefix] = STATE(4915), [sym_comment] = STATE(832), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, [STATE(833)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1694), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(958), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(833), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(834)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1695), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(717), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(1070), + [sym__expr_parenthesized_immediate] = STATE(5069), [sym_comment] = STATE(834), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(835)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1696), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1289), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1096), + [sym__unquoted_with_expr] = STATE(1342), + [sym__unquoted_anonymous_prefix] = STATE(4915), [sym_comment] = STATE(835), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(836)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1697), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(836), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(837)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1698), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(733), - [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(837), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(838)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1699), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(738), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(839)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(965), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(840)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1700), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(718), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(841)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2255), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(733), - [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(842)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(719), - [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(843)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1703), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(722), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(844)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(844), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(845)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1256), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(717), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(846)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1257), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(847)] = { - [sym_comment] = STATE(847), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(2486), - [aux_sym__immediate_decimal_token5] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(848)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1258), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(849)] = { - [sym_comment] = STATE(849), - [anon_sym_in] = ACTIONS(2488), - [sym__newline] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_RPAREN] = ACTIONS(2493), - [anon_sym_GT2] = ACTIONS(2495), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_STAR2] = ACTIONS(2495), - [anon_sym_and2] = ACTIONS(2488), - [anon_sym_xor2] = ACTIONS(2488), - [anon_sym_or2] = ACTIONS(2488), - [anon_sym_not_DASHin2] = ACTIONS(2488), - [anon_sym_has2] = ACTIONS(2488), - [anon_sym_not_DASHhas2] = ACTIONS(2488), - [anon_sym_starts_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), - [anon_sym_ends_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), - [anon_sym_EQ_EQ2] = ACTIONS(2488), - [anon_sym_BANG_EQ2] = ACTIONS(2488), - [anon_sym_LT2] = ACTIONS(2495), - [anon_sym_LT_EQ2] = ACTIONS(2488), - [anon_sym_GT_EQ2] = ACTIONS(2488), - [anon_sym_EQ_TILDE2] = ACTIONS(2488), - [anon_sym_BANG_TILDE2] = ACTIONS(2488), - [anon_sym_like2] = ACTIONS(2488), - [anon_sym_not_DASHlike2] = ACTIONS(2488), - [anon_sym_STAR_STAR2] = ACTIONS(2488), - [anon_sym_PLUS_PLUS2] = ACTIONS(2488), - [anon_sym_SLASH2] = ACTIONS(2495), - [anon_sym_mod2] = ACTIONS(2488), - [anon_sym_SLASH_SLASH2] = ACTIONS(2488), - [anon_sym_PLUS2] = ACTIONS(2495), - [anon_sym_bit_DASHshl2] = ACTIONS(2488), - [anon_sym_bit_DASHshr2] = ACTIONS(2488), - [anon_sym_bit_DASHand2] = ACTIONS(2488), - [anon_sym_bit_DASHxor2] = ACTIONS(2488), - [anon_sym_bit_DASHor2] = ACTIONS(2488), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(2497), - [anon_sym_out_GT] = ACTIONS(2497), - [anon_sym_e_GT] = ACTIONS(2497), - [anon_sym_o_GT] = ACTIONS(2497), - [anon_sym_err_PLUSout_GT] = ACTIONS(2497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2497), - [anon_sym_o_PLUSe_GT] = ACTIONS(2497), - [anon_sym_e_PLUSo_GT] = ACTIONS(2497), - [anon_sym_err_GT_GT] = ACTIONS(2493), - [anon_sym_out_GT_GT] = ACTIONS(2493), - [anon_sym_e_GT_GT] = ACTIONS(2493), - [anon_sym_o_GT_GT] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(850)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(850), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(851)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1259), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(733), - [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(851), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(852)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1260), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(738), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(852), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(853)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(965), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(853), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(854)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1261), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(718), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(854), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(855)] = { - [sym_cell_path] = STATE(1300), - [sym_path] = STATE(703), - [sym_comment] = STATE(855), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_GT2] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_STAR2] = ACTIONS(1895), - [anon_sym_and2] = ACTIONS(1893), - [anon_sym_xor2] = ACTIONS(1893), - [anon_sym_or2] = ACTIONS(1893), - [anon_sym_not_DASHin2] = ACTIONS(1893), - [anon_sym_has2] = ACTIONS(1893), - [anon_sym_not_DASHhas2] = ACTIONS(1893), - [anon_sym_starts_DASHwith2] = ACTIONS(1893), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1893), - [anon_sym_ends_DASHwith2] = ACTIONS(1893), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1893), - [anon_sym_EQ_EQ2] = ACTIONS(1893), - [anon_sym_BANG_EQ2] = ACTIONS(1893), - [anon_sym_LT2] = ACTIONS(1895), - [anon_sym_LT_EQ2] = ACTIONS(1893), - [anon_sym_GT_EQ2] = ACTIONS(1893), - [anon_sym_EQ_TILDE2] = ACTIONS(1893), - [anon_sym_BANG_TILDE2] = ACTIONS(1893), - [anon_sym_like2] = ACTIONS(1893), - [anon_sym_not_DASHlike2] = ACTIONS(1893), - [anon_sym_STAR_STAR2] = ACTIONS(1893), - [anon_sym_PLUS_PLUS2] = ACTIONS(1893), - [anon_sym_SLASH2] = ACTIONS(1895), - [anon_sym_mod2] = ACTIONS(1893), - [anon_sym_SLASH_SLASH2] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_bit_DASHshl2] = ACTIONS(1893), - [anon_sym_bit_DASHshr2] = ACTIONS(1893), - [anon_sym_bit_DASHand2] = ACTIONS(1893), - [anon_sym_bit_DASHxor2] = ACTIONS(1893), - [anon_sym_bit_DASHor2] = ACTIONS(1893), - [anon_sym_DOT2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(856)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1262), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(856), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(857)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1263), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(719), - [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(857), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(858)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1352), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1055), - [sym__unquoted_with_expr] = STATE(1299), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(858), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2516), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), [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(2446), + [sym_val_date] = ACTIONS(2526), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(859)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1721), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1083), - [sym__unquoted_with_expr] = STATE(1340), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(859), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [STATE(836)] = { + [aux_sym__repeat_newline] = STATE(1072), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(836), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(837)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1344), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1098), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(837), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2516), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), [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(2446), + [sym_val_date] = ACTIONS(2526), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(860)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1264), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(927), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(722), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(860), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(838)] = { + [aux_sym__repeat_newline] = STATE(1074), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(838), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(861)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1362), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1009), - [sym__unquoted_with_expr] = STATE(1289), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(861), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(839)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1709), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1089), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(839), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(862)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2232), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(862), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(863)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1322), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1066), - [sym__unquoted_with_expr] = STATE(1325), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(863), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(840)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1711), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1090), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(840), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(864)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1351), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1076), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(864), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(841)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1712), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1091), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(841), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(865)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1310), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1081), - [sym__unquoted_with_expr] = STATE(1347), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(865), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(842)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1714), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1092), + [sym__unquoted_with_expr] = STATE(1331), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(866)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2234), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(957), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(866), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(867)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2257), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(958), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(867), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(868)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2237), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(717), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(869)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1359), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1084), - [sym__unquoted_with_expr] = STATE(1320), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(843)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1706), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1096), + [sym__unquoted_with_expr] = STATE(1342), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(870)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1110), - [sym__unquoted_with_expr] = STATE(1348), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(844)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1716), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1098), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(871)] = { - [sym_cell_path] = STATE(1364), - [sym_path] = STATE(703), - [sym_comment] = STATE(871), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [sym__newline] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_err_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_GT_PIPE] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), - [anon_sym_GT2] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1872), - [anon_sym_STAR2] = ACTIONS(1875), - [anon_sym_and2] = ACTIONS(1872), - [anon_sym_xor2] = ACTIONS(1872), - [anon_sym_or2] = ACTIONS(1872), - [anon_sym_not_DASHin2] = ACTIONS(1872), - [anon_sym_has2] = ACTIONS(1872), - [anon_sym_not_DASHhas2] = ACTIONS(1872), - [anon_sym_starts_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), - [anon_sym_ends_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), - [anon_sym_EQ_EQ2] = ACTIONS(1872), - [anon_sym_BANG_EQ2] = ACTIONS(1872), - [anon_sym_LT2] = ACTIONS(1875), - [anon_sym_LT_EQ2] = ACTIONS(1872), - [anon_sym_GT_EQ2] = ACTIONS(1872), - [anon_sym_EQ_TILDE2] = ACTIONS(1872), - [anon_sym_BANG_TILDE2] = ACTIONS(1872), - [anon_sym_like2] = ACTIONS(1872), - [anon_sym_not_DASHlike2] = ACTIONS(1872), - [anon_sym_STAR_STAR2] = ACTIONS(1872), - [anon_sym_PLUS_PLUS2] = ACTIONS(1872), - [anon_sym_SLASH2] = ACTIONS(1875), - [anon_sym_mod2] = ACTIONS(1872), - [anon_sym_SLASH_SLASH2] = ACTIONS(1872), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_bit_DASHshl2] = ACTIONS(1872), - [anon_sym_bit_DASHshr2] = ACTIONS(1872), - [anon_sym_bit_DASHand2] = ACTIONS(1872), - [anon_sym_bit_DASHxor2] = ACTIONS(1872), - [anon_sym_bit_DASHor2] = ACTIONS(1872), - [anon_sym_DOT2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1872), - [anon_sym_out_GT_GT] = ACTIONS(1872), - [anon_sym_e_GT_GT] = ACTIONS(1872), - [anon_sym_o_GT_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2238), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(873)] = { - [aux_sym__repeat_newline] = STATE(873), - [sym_comment] = STATE(873), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_mut] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_export_DASHenv] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_finally] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1878), - [aux_sym_cmd_identifier_token3] = ACTIONS(1878), - [aux_sym_cmd_identifier_token4] = ACTIONS(1878), - [aux_sym_cmd_identifier_token5] = ACTIONS(1878), - [sym__newline] = ACTIONS(2537), - [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_LBRACK] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_where] = ACTIONS(1878), - [aux_sym_expr_unary_token1] = ACTIONS(1878), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1878), - [anon_sym_CARET] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1878), - }, - [STATE(874)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2241), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(875)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2242), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(733), - [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(876)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2244), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(738), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(877)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(965), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(878)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(718), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(878), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(879)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2250), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(879), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(880)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1358), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(996), - [sym__unquoted_with_expr] = STATE(1333), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(845)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1717), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1099), + [sym__unquoted_with_expr] = STATE(1348), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(881)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1298), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1042), - [sym__unquoted_with_expr] = STATE(1346), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(881), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(846)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1720), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1101), + [sym__unquoted_with_expr] = STATE(1352), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(846), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(882)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1352), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1055), - [sym__unquoted_with_expr] = STATE(1299), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(847)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1356), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1102), + [sym__unquoted_with_expr] = STATE(1357), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(847), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1309), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1083), - [sym__unquoted_with_expr] = STATE(1340), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(848)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1721), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1104), + [sym__unquoted_with_expr] = STATE(1367), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(848), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1312), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1326), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(849)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1722), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1106), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(849), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(885)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(719), - [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(885), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(886)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2055), - [sym_val_variable] = STATE(2000), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1799), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(722), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(886), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), - [anon_sym_DOT_DOT_LT] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(887)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1329), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1087), - [sym__unquoted_with_expr] = STATE(1337), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(887), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(850)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1723), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1118), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(850), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(888)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1339), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1127), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(484), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1088), - [sym__unquoted_with_expr] = STATE(1308), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(888), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [STATE(851)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1724), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1524), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(1437), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1119), + [sym__unquoted_with_expr] = STATE(1315), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2532), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2536), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2544), + [aux_sym__val_number_decimal_token4] = ACTIONS(2544), [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(2515), + [sym_val_date] = ACTIONS(2546), [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(2448), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(889)] = { - [sym_cell_path] = STATE(1316), - [sym_path] = STATE(703), - [sym_comment] = STATE(889), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1901), - [sym__newline] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_err_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_GT_PIPE] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), - [anon_sym_GT2] = ACTIONS(1903), - [anon_sym_DASH2] = ACTIONS(1901), - [anon_sym_STAR2] = ACTIONS(1903), - [anon_sym_and2] = ACTIONS(1901), - [anon_sym_xor2] = ACTIONS(1901), - [anon_sym_or2] = ACTIONS(1901), - [anon_sym_not_DASHin2] = ACTIONS(1901), - [anon_sym_has2] = ACTIONS(1901), - [anon_sym_not_DASHhas2] = ACTIONS(1901), - [anon_sym_starts_DASHwith2] = ACTIONS(1901), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1901), - [anon_sym_ends_DASHwith2] = ACTIONS(1901), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1901), - [anon_sym_EQ_EQ2] = ACTIONS(1901), - [anon_sym_BANG_EQ2] = ACTIONS(1901), - [anon_sym_LT2] = ACTIONS(1903), - [anon_sym_LT_EQ2] = ACTIONS(1901), - [anon_sym_GT_EQ2] = ACTIONS(1901), - [anon_sym_EQ_TILDE2] = ACTIONS(1901), - [anon_sym_BANG_TILDE2] = ACTIONS(1901), - [anon_sym_like2] = ACTIONS(1901), - [anon_sym_not_DASHlike2] = ACTIONS(1901), - [anon_sym_STAR_STAR2] = ACTIONS(1901), - [anon_sym_PLUS_PLUS2] = ACTIONS(1901), - [anon_sym_SLASH2] = ACTIONS(1903), - [anon_sym_mod2] = ACTIONS(1901), - [anon_sym_SLASH_SLASH2] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1903), - [anon_sym_bit_DASHshl2] = ACTIONS(1901), - [anon_sym_bit_DASHshr2] = ACTIONS(1901), - [anon_sym_bit_DASHand2] = ACTIONS(1901), - [anon_sym_bit_DASHxor2] = ACTIONS(1901), - [anon_sym_bit_DASHor2] = ACTIONS(1901), - [anon_sym_DOT2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(1903), - [anon_sym_out_GT] = ACTIONS(1903), - [anon_sym_e_GT] = ACTIONS(1903), - [anon_sym_o_GT] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT] = ACTIONS(1903), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(890)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(890), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(891)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1722), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1326), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [STATE(852)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1347), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1099), + [sym__unquoted_with_expr] = STATE(1348), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2516), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), [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(2446), + [sym_val_date] = ACTIONS(2526), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(892)] = { - [aux_sym__repeat_newline] = STATE(873), - [sym_comment] = STATE(892), - [anon_sym_export] = ACTIONS(2540), - [anon_sym_alias] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_mut] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [aux_sym_cmd_identifier_token1] = ACTIONS(2540), - [anon_sym_def] = ACTIONS(2542), - [anon_sym_use] = ACTIONS(2542), - [anon_sym_export_DASHenv] = ACTIONS(2542), - [anon_sym_extern] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_loop] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_catch] = ACTIONS(2542), - [anon_sym_finally] = ACTIONS(2542), - [anon_sym_match] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2540), - [anon_sym_true] = ACTIONS(2542), - [anon_sym_false] = ACTIONS(2542), - [anon_sym_null] = ACTIONS(2542), - [aux_sym_cmd_identifier_token3] = ACTIONS(2542), - [aux_sym_cmd_identifier_token4] = ACTIONS(2542), - [aux_sym_cmd_identifier_token5] = ACTIONS(2542), - [sym__newline] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_err_GT_PIPE] = ACTIONS(2544), - [anon_sym_out_GT_PIPE] = ACTIONS(2544), - [anon_sym_e_GT_PIPE] = ACTIONS(2544), - [anon_sym_o_GT_PIPE] = ACTIONS(2544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_DOLLAR] = ACTIONS(2540), - [anon_sym_DASH2] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2540), - [anon_sym_where] = ACTIONS(2542), - [aux_sym_expr_unary_token1] = ACTIONS(2542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2542), - [anon_sym_DOT_DOT_LT] = ACTIONS(2542), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2542), - [aux_sym__val_number_decimal_token4] = ACTIONS(2542), - [aux_sym__val_number_token1] = ACTIONS(2542), - [aux_sym__val_number_token2] = ACTIONS(2542), - [aux_sym__val_number_token3] = ACTIONS(2542), - [anon_sym_0b] = ACTIONS(2540), - [anon_sym_0o] = ACTIONS(2540), - [anon_sym_0x] = ACTIONS(2540), - [sym_val_date] = ACTIONS(2542), - [anon_sym_DQUOTE] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2542), - [anon_sym_BQUOTE] = ACTIONS(2542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2542), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1723), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1087), - [sym__unquoted_with_expr] = STATE(1337), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [STATE(853)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1349), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1101), + [sym__unquoted_with_expr] = STATE(1352), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2516), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), [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(2446), + [sym_val_date] = ACTIONS(2526), [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(2448), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(894)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(894), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(895)] = { - [sym_expr_unary] = STATE(1357), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_binary] = STATE(1357), - [sym__expr_binary_expression] = STATE(1724), - [sym_expr_parenthesized] = STATE(987), - [sym_val_range] = STATE(1357), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(1357), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(1525), - [sym_val_variable] = STATE(981), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(1088), - [sym__unquoted_with_expr] = STATE(1308), - [sym__unquoted_anonymous_prefix] = STATE(4801), - [sym_comment] = STATE(895), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [STATE(854)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1356), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1102), + [sym__unquoted_with_expr] = STATE(1357), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1322), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2516), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_LT] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), [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(2446), + [sym_val_date] = ACTIONS(2526), [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(2448), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(896)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(896), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [aux_sym_unquoted_token1] = ACTIONS(2528), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(897)] = { - [aux_sym__repeat_newline] = STATE(1123), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(855)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1360), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1104), + [sym__unquoted_with_expr] = STATE(1367), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(855), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(856)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1368), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1106), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(857)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1311), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1118), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(857), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(858)] = { + [aux_sym__repeat_newline] = STATE(1075), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(858), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(898)] = { - [sym_comment] = STATE(898), - [anon_sym_in] = ACTIONS(2488), - [sym__newline] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_err_GT_PIPE] = ACTIONS(2488), - [anon_sym_out_GT_PIPE] = ACTIONS(2488), - [anon_sym_e_GT_PIPE] = ACTIONS(2488), - [anon_sym_o_GT_PIPE] = ACTIONS(2488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2488), - [anon_sym_RPAREN] = ACTIONS(2488), - [anon_sym_GT2] = ACTIONS(2495), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_STAR2] = ACTIONS(2495), - [anon_sym_and2] = ACTIONS(2488), - [anon_sym_xor2] = ACTIONS(2488), - [anon_sym_or2] = ACTIONS(2488), - [anon_sym_not_DASHin2] = ACTIONS(2488), - [anon_sym_has2] = ACTIONS(2488), - [anon_sym_not_DASHhas2] = ACTIONS(2488), - [anon_sym_starts_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), - [anon_sym_ends_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), - [anon_sym_EQ_EQ2] = ACTIONS(2488), - [anon_sym_BANG_EQ2] = ACTIONS(2488), - [anon_sym_LT2] = ACTIONS(2495), - [anon_sym_LT_EQ2] = ACTIONS(2488), - [anon_sym_GT_EQ2] = ACTIONS(2488), - [anon_sym_EQ_TILDE2] = ACTIONS(2488), - [anon_sym_BANG_TILDE2] = ACTIONS(2488), - [anon_sym_like2] = ACTIONS(2488), - [anon_sym_not_DASHlike2] = ACTIONS(2488), - [anon_sym_STAR_STAR2] = ACTIONS(2488), - [anon_sym_PLUS_PLUS2] = ACTIONS(2488), - [anon_sym_SLASH2] = ACTIONS(2495), - [anon_sym_mod2] = ACTIONS(2488), - [anon_sym_SLASH_SLASH2] = ACTIONS(2488), - [anon_sym_PLUS2] = ACTIONS(2495), - [anon_sym_bit_DASHshl2] = ACTIONS(2488), - [anon_sym_bit_DASHshr2] = ACTIONS(2488), - [anon_sym_bit_DASHand2] = ACTIONS(2488), - [anon_sym_bit_DASHxor2] = ACTIONS(2488), - [anon_sym_bit_DASHor2] = ACTIONS(2488), - [anon_sym_DOT_DOT2] = ACTIONS(1592), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(2495), - [anon_sym_out_GT] = ACTIONS(2495), - [anon_sym_e_GT] = ACTIONS(2495), - [anon_sym_o_GT] = ACTIONS(2495), - [anon_sym_err_PLUSout_GT] = ACTIONS(2495), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2495), - [anon_sym_o_PLUSe_GT] = ACTIONS(2495), - [anon_sym_e_PLUSo_GT] = ACTIONS(2495), - [anon_sym_err_GT_GT] = ACTIONS(2488), - [anon_sym_out_GT_GT] = ACTIONS(2488), - [anon_sym_e_GT_GT] = ACTIONS(2488), - [anon_sym_o_GT_GT] = ACTIONS(2488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2488), + [STATE(859)] = { + [aux_sym__repeat_newline] = STATE(1076), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(859), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(899)] = { - [aux_sym__repeat_newline] = STATE(1109), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(860)] = { + [aux_sym__repeat_newline] = STATE(1077), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(860), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(900)] = { - [sym_comment] = STATE(900), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [sym__newline] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_err_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_GT_PIPE] = ACTIONS(2546), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2546), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_GT2] = ACTIONS(2548), - [anon_sym_DASH2] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(2546), - [anon_sym_STAR2] = ACTIONS(2548), - [anon_sym_and2] = ACTIONS(2546), - [anon_sym_xor2] = ACTIONS(2546), - [anon_sym_or2] = ACTIONS(2546), - [anon_sym_not_DASHin2] = ACTIONS(2546), - [anon_sym_has2] = ACTIONS(2546), - [anon_sym_not_DASHhas2] = ACTIONS(2546), - [anon_sym_starts_DASHwith2] = ACTIONS(2546), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2546), - [anon_sym_ends_DASHwith2] = ACTIONS(2546), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2546), - [anon_sym_EQ_EQ2] = ACTIONS(2546), - [anon_sym_BANG_EQ2] = ACTIONS(2546), - [anon_sym_LT2] = ACTIONS(2548), - [anon_sym_LT_EQ2] = ACTIONS(2546), - [anon_sym_GT_EQ2] = ACTIONS(2546), - [anon_sym_EQ_TILDE2] = ACTIONS(2546), - [anon_sym_BANG_TILDE2] = ACTIONS(2546), - [anon_sym_like2] = ACTIONS(2546), - [anon_sym_not_DASHlike2] = ACTIONS(2546), - [anon_sym_STAR_STAR2] = ACTIONS(2546), - [anon_sym_PLUS_PLUS2] = ACTIONS(2546), - [anon_sym_SLASH2] = ACTIONS(2548), - [anon_sym_mod2] = ACTIONS(2546), - [anon_sym_SLASH_SLASH2] = ACTIONS(2546), - [anon_sym_PLUS2] = ACTIONS(2548), - [anon_sym_bit_DASHshl2] = ACTIONS(2546), - [anon_sym_bit_DASHshr2] = ACTIONS(2546), - [anon_sym_bit_DASHand2] = ACTIONS(2546), - [anon_sym_bit_DASHxor2] = ACTIONS(2546), - [anon_sym_bit_DASHor2] = ACTIONS(2546), - [anon_sym_err_GT] = ACTIONS(2548), - [anon_sym_out_GT] = ACTIONS(2548), - [anon_sym_e_GT] = ACTIONS(2548), - [anon_sym_o_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT] = ACTIONS(2548), - [anon_sym_err_GT_GT] = ACTIONS(2546), - [anon_sym_out_GT_GT] = ACTIONS(2546), - [anon_sym_e_GT_GT] = ACTIONS(2546), - [anon_sym_o_GT_GT] = ACTIONS(2546), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2546), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2546), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2546), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2546), + [STATE(861)] = { + [aux_sym__repeat_newline] = STATE(1151), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(861), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(901)] = { - [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2550), - [sym__newline] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_err_GT_PIPE] = ACTIONS(2550), - [anon_sym_out_GT_PIPE] = ACTIONS(2550), - [anon_sym_e_GT_PIPE] = ACTIONS(2550), - [anon_sym_o_GT_PIPE] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_GT2] = ACTIONS(2552), - [anon_sym_DASH2] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_EQ_GT] = ACTIONS(2550), - [anon_sym_STAR2] = ACTIONS(2552), - [anon_sym_and2] = ACTIONS(2550), - [anon_sym_xor2] = ACTIONS(2550), - [anon_sym_or2] = ACTIONS(2550), - [anon_sym_not_DASHin2] = ACTIONS(2550), - [anon_sym_has2] = ACTIONS(2550), - [anon_sym_not_DASHhas2] = ACTIONS(2550), - [anon_sym_starts_DASHwith2] = ACTIONS(2550), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2550), - [anon_sym_ends_DASHwith2] = ACTIONS(2550), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2550), - [anon_sym_EQ_EQ2] = ACTIONS(2550), - [anon_sym_BANG_EQ2] = ACTIONS(2550), - [anon_sym_LT2] = ACTIONS(2552), - [anon_sym_LT_EQ2] = ACTIONS(2550), - [anon_sym_GT_EQ2] = ACTIONS(2550), - [anon_sym_EQ_TILDE2] = ACTIONS(2550), - [anon_sym_BANG_TILDE2] = ACTIONS(2550), - [anon_sym_like2] = ACTIONS(2550), - [anon_sym_not_DASHlike2] = ACTIONS(2550), - [anon_sym_STAR_STAR2] = ACTIONS(2550), - [anon_sym_PLUS_PLUS2] = ACTIONS(2550), - [anon_sym_SLASH2] = ACTIONS(2552), - [anon_sym_mod2] = ACTIONS(2550), - [anon_sym_SLASH_SLASH2] = ACTIONS(2550), - [anon_sym_PLUS2] = ACTIONS(2552), - [anon_sym_bit_DASHshl2] = ACTIONS(2550), - [anon_sym_bit_DASHshr2] = ACTIONS(2550), - [anon_sym_bit_DASHand2] = ACTIONS(2550), - [anon_sym_bit_DASHxor2] = ACTIONS(2550), - [anon_sym_bit_DASHor2] = ACTIONS(2550), - [anon_sym_COLON2] = ACTIONS(2550), - [anon_sym_err_GT] = ACTIONS(2552), - [anon_sym_out_GT] = ACTIONS(2552), - [anon_sym_e_GT] = ACTIONS(2552), - [anon_sym_o_GT] = ACTIONS(2552), - [anon_sym_err_PLUSout_GT] = ACTIONS(2552), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2552), - [anon_sym_o_PLUSe_GT] = ACTIONS(2552), - [anon_sym_e_PLUSo_GT] = ACTIONS(2552), - [anon_sym_err_GT_GT] = ACTIONS(2550), - [anon_sym_out_GT_GT] = ACTIONS(2550), - [anon_sym_e_GT_GT] = ACTIONS(2550), - [anon_sym_o_GT_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2550), + [STATE(862)] = { + [aux_sym__repeat_newline] = STATE(1079), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(862), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(902)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(863)] = { + [aux_sym__repeat_newline] = STATE(1080), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(863), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(903)] = { - [sym_comment] = STATE(903), - [anon_sym_finally] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [sym__newline] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_err_GT_PIPE] = ACTIONS(2554), - [anon_sym_out_GT_PIPE] = ACTIONS(2554), - [anon_sym_e_GT_PIPE] = ACTIONS(2554), - [anon_sym_o_GT_PIPE] = ACTIONS(2554), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2554), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2554), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2554), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2554), - [anon_sym_RPAREN] = ACTIONS(2554), - [anon_sym_GT2] = ACTIONS(2556), - [anon_sym_DASH2] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2554), - [anon_sym_RBRACE] = ACTIONS(2554), - [anon_sym_EQ_GT] = ACTIONS(2554), - [anon_sym_STAR2] = ACTIONS(2556), - [anon_sym_and2] = ACTIONS(2554), - [anon_sym_xor2] = ACTIONS(2554), - [anon_sym_or2] = ACTIONS(2554), - [anon_sym_not_DASHin2] = ACTIONS(2554), - [anon_sym_has2] = ACTIONS(2554), - [anon_sym_not_DASHhas2] = ACTIONS(2554), - [anon_sym_starts_DASHwith2] = ACTIONS(2554), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2554), - [anon_sym_ends_DASHwith2] = ACTIONS(2554), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2554), - [anon_sym_EQ_EQ2] = ACTIONS(2554), - [anon_sym_BANG_EQ2] = ACTIONS(2554), - [anon_sym_LT2] = ACTIONS(2556), - [anon_sym_LT_EQ2] = ACTIONS(2554), - [anon_sym_GT_EQ2] = ACTIONS(2554), - [anon_sym_EQ_TILDE2] = ACTIONS(2554), - [anon_sym_BANG_TILDE2] = ACTIONS(2554), - [anon_sym_like2] = ACTIONS(2554), - [anon_sym_not_DASHlike2] = ACTIONS(2554), - [anon_sym_STAR_STAR2] = ACTIONS(2554), - [anon_sym_PLUS_PLUS2] = ACTIONS(2554), - [anon_sym_SLASH2] = ACTIONS(2556), - [anon_sym_mod2] = ACTIONS(2554), - [anon_sym_SLASH_SLASH2] = ACTIONS(2554), - [anon_sym_PLUS2] = ACTIONS(2556), - [anon_sym_bit_DASHshl2] = ACTIONS(2554), - [anon_sym_bit_DASHshr2] = ACTIONS(2554), - [anon_sym_bit_DASHand2] = ACTIONS(2554), - [anon_sym_bit_DASHxor2] = ACTIONS(2554), - [anon_sym_bit_DASHor2] = ACTIONS(2554), - [anon_sym_err_GT] = ACTIONS(2556), - [anon_sym_out_GT] = ACTIONS(2556), - [anon_sym_e_GT] = ACTIONS(2556), - [anon_sym_o_GT] = ACTIONS(2556), - [anon_sym_err_PLUSout_GT] = ACTIONS(2556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2556), - [anon_sym_o_PLUSe_GT] = ACTIONS(2556), - [anon_sym_e_PLUSo_GT] = ACTIONS(2556), - [anon_sym_err_GT_GT] = ACTIONS(2554), - [anon_sym_out_GT_GT] = ACTIONS(2554), - [anon_sym_e_GT_GT] = ACTIONS(2554), - [anon_sym_o_GT_GT] = ACTIONS(2554), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2554), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2554), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2554), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2554), + [STATE(864)] = { + [aux_sym__repeat_newline] = STATE(1081), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(864), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(904)] = { - [aux_sym__repeat_newline] = STATE(1112), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(904), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(865)] = { + [aux_sym__repeat_newline] = STATE(1082), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(865), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(905)] = { - [aux_sym__repeat_newline] = STATE(1012), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), + [STATE(866)] = { + [aux_sym__repeat_newline] = STATE(1084), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(866), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(906)] = { - [aux_sym__repeat_newline] = STATE(1114), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(867)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(867), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(907)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), + [STATE(868)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), [sym__expr_binary_expression] = STATE(2254), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(907), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(868), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(908)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2227), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(957), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(908), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(869)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2257), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(965), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(869), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(909)] = { - [aux_sym__repeat_newline] = STATE(1116), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(3), + [STATE(870)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(870), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(910)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2226), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [STATE(871)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(871), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(872)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2223), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(958), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(910), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(872), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(911)] = { - [aux_sym__repeat_newline] = STATE(1134), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(3), + [STATE(873)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2224), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(873), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(912)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2225), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(717), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(912), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(874)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2227), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(874), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(913)] = { - [aux_sym__repeat_newline] = STATE(1118), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(913), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(875)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2229), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(875), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(876)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(973), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(974), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(876), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(877)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2230), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(975), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(877), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(878)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2232), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(878), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(879)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(879), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(880)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2233), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2089), + [sym_val_variable] = STATE(1975), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1813), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(978), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(880), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2554), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [aux_sym_expr_unary_token1] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [aux_sym__val_number_decimal_token1] = ACTIONS(2564), + [aux_sym__val_number_decimal_token2] = ACTIONS(2566), + [aux_sym__val_number_decimal_token3] = ACTIONS(2568), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(881)] = { + [aux_sym__repeat_newline] = STATE(1086), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(881), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(914)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2239), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(914), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(915)] = { - [aux_sym__repeat_newline] = STATE(1120), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), + [STATE(882)] = { + [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(882), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(916)] = { - [sym_cell_path] = STATE(1355), - [sym_path] = STATE(703), - [sym_comment] = STATE(916), - [aux_sym__where_predicate_lhs_repeat1] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [STATE(883)] = { + [aux_sym__repeat_newline] = STATE(1088), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(883), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(917)] = { - [sym_comment] = STATE(917), - [anon_sym_if] = 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), + [STATE(884)] = { + [sym_expr_unary] = STATE(1362), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_binary] = STATE(1362), + [sym__expr_binary_expression] = STATE(1313), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1362), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(1362), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(1137), + [sym_val_variable] = STATE(941), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(1119), + [sym__unquoted_with_expr] = STATE(1315), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), + [anon_sym_DOT_DOT_LT] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(918)] = { - [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(2562), - [aux_sym__immediate_decimal_token5] = ACTIONS(2564), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), + [STATE(885)] = { + [sym_comment] = STATE(885), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_mut] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [aux_sym_cmd_identifier_token1] = ACTIONS(2130), + [anon_sym_def] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_export_DASHenv] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_module] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_else] = ACTIONS(2132), + [anon_sym_try] = ACTIONS(2132), + [anon_sym_catch] = ACTIONS(2132), + [anon_sym_finally] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [anon_sym_null] = ACTIONS(2132), + [aux_sym_cmd_identifier_token3] = ACTIONS(2132), + [aux_sym_cmd_identifier_token4] = ACTIONS(2132), + [aux_sym_cmd_identifier_token5] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_where] = ACTIONS(2132), + [aux_sym_expr_unary_token1] = ACTIONS(2132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2132), + [anon_sym_DOT_DOT_LT] = ACTIONS(2132), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2132), + [aux_sym__val_number_decimal_token3] = ACTIONS(2132), + [aux_sym__val_number_decimal_token4] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2132), + [aux_sym__val_number_token2] = ACTIONS(2132), + [aux_sym__val_number_token3] = ACTIONS(2132), + [anon_sym_0b] = ACTIONS(2130), + [anon_sym_0o] = ACTIONS(2130), + [anon_sym_0x] = ACTIONS(2130), + [sym_val_date] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2132), + }, + [STATE(886)] = { + [sym_comment] = STATE(886), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_alias] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_mut] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [aux_sym_cmd_identifier_token1] = ACTIONS(2572), + [anon_sym_def] = ACTIONS(2574), + [anon_sym_use] = ACTIONS(2574), + [anon_sym_export_DASHenv] = ACTIONS(2574), + [anon_sym_extern] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_loop] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_else] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [anon_sym_catch] = ACTIONS(2574), + [anon_sym_finally] = ACTIONS(2574), + [anon_sym_match] = ACTIONS(2574), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2574), + [anon_sym_false] = ACTIONS(2574), + [anon_sym_null] = ACTIONS(2574), + [aux_sym_cmd_identifier_token3] = ACTIONS(2574), + [aux_sym_cmd_identifier_token4] = ACTIONS(2574), + [aux_sym_cmd_identifier_token5] = ACTIONS(2574), + [sym__newline] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_err_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_GT_PIPE] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_DOLLAR] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_DOT_DOT] = ACTIONS(2572), + [anon_sym_where] = ACTIONS(2574), + [aux_sym_expr_unary_token1] = ACTIONS(2574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2574), + [anon_sym_DOT_DOT_LT] = ACTIONS(2574), + [aux_sym__val_number_decimal_token1] = ACTIONS(2572), + [aux_sym__val_number_decimal_token2] = ACTIONS(2574), + [aux_sym__val_number_decimal_token3] = ACTIONS(2574), + [aux_sym__val_number_decimal_token4] = ACTIONS(2574), + [aux_sym__val_number_token1] = ACTIONS(2574), + [aux_sym__val_number_token2] = ACTIONS(2574), + [aux_sym__val_number_token3] = ACTIONS(2574), + [anon_sym_0b] = ACTIONS(2572), + [anon_sym_0o] = ACTIONS(2572), + [anon_sym_0x] = ACTIONS(2572), + [sym_val_date] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_BQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2574), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2574), + }, + [STATE(887)] = { + [sym_comment] = STATE(887), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2578), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2576), + [anon_sym_PLUS_PLUS2] = ACTIONS(2576), + [anon_sym_SLASH2] = ACTIONS(2578), + [anon_sym_mod2] = ACTIONS(2576), + [anon_sym_SLASH_SLASH2] = ACTIONS(2576), + [anon_sym_PLUS2] = ACTIONS(2578), + [anon_sym_bit_DASHshl2] = ACTIONS(2576), + [anon_sym_bit_DASHshr2] = ACTIONS(2576), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [sym__unquoted_pattern] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [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(2566), - [aux_sym__immediate_decimal_token5] = ACTIONS(2568), - [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), + [STATE(888)] = { + [sym_comment] = STATE(888), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [sym__newline] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_err_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_GT_PIPE] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_GT2] = ACTIONS(2582), + [anon_sym_DASH2] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_EQ_GT] = ACTIONS(2580), + [anon_sym_STAR2] = ACTIONS(2582), + [anon_sym_and2] = ACTIONS(2580), + [anon_sym_xor2] = ACTIONS(2580), + [anon_sym_or2] = ACTIONS(2580), + [anon_sym_not_DASHin2] = ACTIONS(2580), + [anon_sym_has2] = ACTIONS(2580), + [anon_sym_not_DASHhas2] = ACTIONS(2580), + [anon_sym_starts_DASHwith2] = ACTIONS(2580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2580), + [anon_sym_ends_DASHwith2] = ACTIONS(2580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2580), + [anon_sym_EQ_EQ2] = ACTIONS(2580), + [anon_sym_BANG_EQ2] = ACTIONS(2580), + [anon_sym_LT2] = ACTIONS(2582), + [anon_sym_LT_EQ2] = ACTIONS(2580), + [anon_sym_GT_EQ2] = ACTIONS(2580), + [anon_sym_EQ_TILDE2] = ACTIONS(2580), + [anon_sym_BANG_TILDE2] = ACTIONS(2580), + [anon_sym_like2] = ACTIONS(2580), + [anon_sym_not_DASHlike2] = ACTIONS(2580), + [anon_sym_STAR_STAR2] = ACTIONS(2580), + [anon_sym_PLUS_PLUS2] = ACTIONS(2580), + [anon_sym_SLASH2] = ACTIONS(2582), + [anon_sym_mod2] = ACTIONS(2580), + [anon_sym_SLASH_SLASH2] = ACTIONS(2580), + [anon_sym_PLUS2] = ACTIONS(2582), + [anon_sym_bit_DASHshl2] = ACTIONS(2580), + [anon_sym_bit_DASHshr2] = ACTIONS(2580), + [anon_sym_bit_DASHand2] = ACTIONS(2580), + [anon_sym_bit_DASHxor2] = ACTIONS(2580), + [anon_sym_bit_DASHor2] = ACTIONS(2580), + [anon_sym_err_GT] = ACTIONS(2582), + [anon_sym_out_GT] = ACTIONS(2582), + [anon_sym_e_GT] = ACTIONS(2582), + [anon_sym_o_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT] = ACTIONS(2582), + [anon_sym_err_GT_GT] = ACTIONS(2580), + [anon_sym_out_GT_GT] = ACTIONS(2580), + [anon_sym_e_GT_GT] = ACTIONS(2580), + [anon_sym_o_GT_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2580), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [anon_sym_in] = ACTIONS(2570), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [anon_sym_and2] = ACTIONS(2570), - [anon_sym_xor2] = ACTIONS(2570), - [anon_sym_or2] = ACTIONS(2570), - [anon_sym_not_DASHin2] = ACTIONS(2570), - [anon_sym_has2] = ACTIONS(2570), - [anon_sym_not_DASHhas2] = ACTIONS(2570), - [anon_sym_starts_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), - [anon_sym_ends_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), - [anon_sym_EQ_EQ2] = ACTIONS(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [anon_sym_BANG_TILDE2] = ACTIONS(2570), - [anon_sym_like2] = ACTIONS(2570), - [anon_sym_not_DASHlike2] = ACTIONS(2570), - [anon_sym_LPAREN2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(2570), - [anon_sym_PLUS_PLUS2] = ACTIONS(2570), - [anon_sym_SLASH2] = ACTIONS(2572), - [anon_sym_mod2] = ACTIONS(2570), - [anon_sym_SLASH_SLASH2] = ACTIONS(2570), - [anon_sym_PLUS2] = ACTIONS(2572), - [anon_sym_bit_DASHshl2] = ACTIONS(2570), - [anon_sym_bit_DASHshr2] = ACTIONS(2570), - [anon_sym_bit_DASHand2] = ACTIONS(2570), - [anon_sym_bit_DASHxor2] = ACTIONS(2570), - [anon_sym_bit_DASHor2] = ACTIONS(2570), - [anon_sym_err_GT] = ACTIONS(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [sym__unquoted_pattern] = ACTIONS(2572), + [STATE(889)] = { + [sym_comment] = STATE(889), + [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(921)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(2243), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2014), + [STATE(890)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2237), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1769), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(921), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(890), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(922)] = { - [aux_sym__repeat_newline] = STATE(1014), - [sym__expr_parenthesized_immediate] = STATE(5076), - [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(3), + [STATE(891)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(965), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(891), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(923)] = { - [sym_expr_unary] = STATE(955), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(955), - [sym__expr_binary_expression] = STATE(1701), - [sym_expr_parenthesized] = STATE(720), - [sym_val_range] = STATE(955), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(955), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(1507), + [STATE(892)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(892), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(893)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2245), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(893), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(894)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1692), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(894), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(895)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1693), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(965), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(895), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(896)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1694), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(896), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(897)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1695), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(897), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(898)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1696), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1427), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(694), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(704), [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4880), - [sym_comment] = STATE(923), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(898), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(924)] = { - [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2574), - [sym__newline] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_err_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_GT_PIPE] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), - [anon_sym_RPAREN] = ACTIONS(2574), - [anon_sym_GT2] = ACTIONS(2576), - [anon_sym_DASH2] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_EQ_GT] = ACTIONS(2574), - [anon_sym_STAR2] = ACTIONS(2576), - [anon_sym_and2] = ACTIONS(2574), - [anon_sym_xor2] = ACTIONS(2574), - [anon_sym_or2] = ACTIONS(2574), - [anon_sym_not_DASHin2] = ACTIONS(2574), - [anon_sym_has2] = ACTIONS(2574), - [anon_sym_not_DASHhas2] = ACTIONS(2574), - [anon_sym_starts_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), - [anon_sym_ends_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), - [anon_sym_EQ_EQ2] = ACTIONS(2574), - [anon_sym_BANG_EQ2] = ACTIONS(2574), - [anon_sym_LT2] = ACTIONS(2576), - [anon_sym_LT_EQ2] = ACTIONS(2574), - [anon_sym_GT_EQ2] = ACTIONS(2574), - [anon_sym_EQ_TILDE2] = ACTIONS(2574), - [anon_sym_BANG_TILDE2] = ACTIONS(2574), - [anon_sym_like2] = ACTIONS(2574), - [anon_sym_not_DASHlike2] = ACTIONS(2574), - [anon_sym_STAR_STAR2] = ACTIONS(2574), - [anon_sym_PLUS_PLUS2] = ACTIONS(2574), - [anon_sym_SLASH2] = ACTIONS(2576), - [anon_sym_mod2] = ACTIONS(2574), - [anon_sym_SLASH_SLASH2] = ACTIONS(2574), - [anon_sym_PLUS2] = ACTIONS(2576), - [anon_sym_bit_DASHshl2] = ACTIONS(2574), - [anon_sym_bit_DASHshr2] = ACTIONS(2574), - [anon_sym_bit_DASHand2] = ACTIONS(2574), - [anon_sym_bit_DASHxor2] = ACTIONS(2574), - [anon_sym_bit_DASHor2] = ACTIONS(2574), - [anon_sym_err_GT] = ACTIONS(2576), - [anon_sym_out_GT] = ACTIONS(2576), - [anon_sym_e_GT] = ACTIONS(2576), - [anon_sym_o_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT] = ACTIONS(2576), - [anon_sym_err_GT_GT] = ACTIONS(2574), - [anon_sym_out_GT_GT] = ACTIONS(2574), - [anon_sym_e_GT_GT] = ACTIONS(2574), - [anon_sym_o_GT_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(3), + [STATE(899)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1697), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(899), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(925)] = { - [sym_comment] = STATE(925), - [anon_sym_export] = ACTIONS(1967), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_finally] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_in] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [sym__newline] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_where] = ACTIONS(1965), - [aux_sym_expr_unary_token1] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [anon_sym_0b] = ACTIONS(1967), - [anon_sym_0o] = ACTIONS(1967), - [anon_sym_0x] = ACTIONS(1967), - [sym_val_date] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_BQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1965), + [STATE(900)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1698), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(900), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(926)] = { - [sym_comment] = STATE(926), - [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_POUND] = ACTIONS(3), + [STATE(901)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1699), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(901), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(927)] = { - [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_LPAREN2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1714), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), - [sym__unquoted_pattern] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(3), + [STATE(902)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(973), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(974), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(902), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(928)] = { - [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [aux_sym__immediate_decimal_token5] = ACTIONS(2564), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), - [sym__unquoted_pattern] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(3), + [STATE(903)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1700), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(975), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(903), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(929)] = { - [sym_comment] = STATE(929), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2094), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), - [sym__unquoted_pattern] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), + [STATE(904)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1701), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(904), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [anon_sym_in] = ACTIONS(2574), - [sym__newline] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_err_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_GT_PIPE] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), - [anon_sym_RPAREN] = ACTIONS(2574), - [anon_sym_GT2] = ACTIONS(2576), - [anon_sym_DASH2] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR2] = ACTIONS(2576), - [anon_sym_and2] = ACTIONS(2574), - [anon_sym_xor2] = ACTIONS(2574), - [anon_sym_or2] = ACTIONS(2574), - [anon_sym_not_DASHin2] = ACTIONS(2574), - [anon_sym_has2] = ACTIONS(2574), - [anon_sym_not_DASHhas2] = ACTIONS(2574), - [anon_sym_starts_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), - [anon_sym_ends_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), - [anon_sym_EQ_EQ2] = ACTIONS(2574), - [anon_sym_BANG_EQ2] = ACTIONS(2574), - [anon_sym_LT2] = ACTIONS(2576), - [anon_sym_LT_EQ2] = ACTIONS(2574), - [anon_sym_GT_EQ2] = ACTIONS(2574), - [anon_sym_EQ_TILDE2] = ACTIONS(2574), - [anon_sym_BANG_TILDE2] = ACTIONS(2574), - [anon_sym_like2] = ACTIONS(2574), - [anon_sym_not_DASHlike2] = ACTIONS(2574), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_STAR_STAR2] = ACTIONS(2574), - [anon_sym_PLUS_PLUS2] = ACTIONS(2574), - [anon_sym_SLASH2] = ACTIONS(2576), - [anon_sym_mod2] = ACTIONS(2574), - [anon_sym_SLASH_SLASH2] = ACTIONS(2574), - [anon_sym_PLUS2] = ACTIONS(2576), - [anon_sym_bit_DASHshl2] = ACTIONS(2574), - [anon_sym_bit_DASHshr2] = ACTIONS(2574), - [anon_sym_bit_DASHand2] = ACTIONS(2574), - [anon_sym_bit_DASHxor2] = ACTIONS(2574), - [anon_sym_bit_DASHor2] = ACTIONS(2574), - [anon_sym_err_GT] = ACTIONS(2576), - [anon_sym_out_GT] = ACTIONS(2576), - [anon_sym_e_GT] = ACTIONS(2576), - [anon_sym_o_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT] = ACTIONS(2576), - [anon_sym_err_GT_GT] = ACTIONS(2574), - [anon_sym_out_GT_GT] = ACTIONS(2574), - [anon_sym_e_GT_GT] = ACTIONS(2574), - [anon_sym_o_GT_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), - [sym__unquoted_pattern] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [STATE(905)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(905), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(931)] = { - [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [sym__unquoted_pattern] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [STATE(906)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(1703), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1509), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1431), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(978), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(906), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2091), + [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [aux_sym__immediate_decimal_token5] = ACTIONS(2582), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(3), + [STATE(907)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2239), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(907), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(933)] = { - [sym_comment] = STATE(933), + [STATE(908)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2228), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(908), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(909)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2235), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(909), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(910)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(910), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(911)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(973), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(974), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(911), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(912)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(975), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(912), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(913)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2231), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(913), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(914)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2234), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(914), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(915)] = { + [sym_expr_unary] = STATE(963), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(963), + [sym__expr_binary_expression] = STATE(2240), + [sym_expr_parenthesized] = STATE(699), + [sym_val_range] = STATE(963), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(963), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(1998), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1752), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(978), + [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym_comment] = STATE(915), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(916)] = { + [sym_comment] = STATE(916), + [anon_sym_finally] = ACTIONS(2584), [anon_sym_in] = ACTIONS(2584), [sym__newline] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2584), @@ -118831,7 +117878,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2584), [anon_sym_GT2] = ACTIONS(2586), [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_EQ_GT] = ACTIONS(2584), [anon_sym_STAR2] = ACTIONS(2586), [anon_sym_and2] = ACTIONS(2584), [anon_sym_xor2] = ACTIONS(2584), @@ -118852,7 +117901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2584), [anon_sym_like2] = ACTIONS(2584), [anon_sym_not_DASHlike2] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2588), [anon_sym_STAR_STAR2] = ACTIONS(2584), [anon_sym_PLUS_PLUS2] = ACTIONS(2584), [anon_sym_SLASH2] = ACTIONS(2586), @@ -118880,2150 +117928,1539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), - [sym__unquoted_pattern] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [anon_sym_in] = ACTIONS(2590), - [sym__newline] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_err_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_GT_PIPE] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), - [anon_sym_RPAREN] = ACTIONS(2590), - [anon_sym_GT2] = ACTIONS(2592), - [anon_sym_DASH2] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR2] = ACTIONS(2592), - [anon_sym_and2] = ACTIONS(2590), - [anon_sym_xor2] = ACTIONS(2590), - [anon_sym_or2] = ACTIONS(2590), - [anon_sym_not_DASHin2] = ACTIONS(2590), - [anon_sym_has2] = ACTIONS(2590), - [anon_sym_not_DASHhas2] = ACTIONS(2590), - [anon_sym_starts_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), - [anon_sym_ends_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), - [anon_sym_EQ_EQ2] = ACTIONS(2590), - [anon_sym_BANG_EQ2] = ACTIONS(2590), - [anon_sym_LT2] = ACTIONS(2592), - [anon_sym_LT_EQ2] = ACTIONS(2590), - [anon_sym_GT_EQ2] = ACTIONS(2590), - [anon_sym_EQ_TILDE2] = ACTIONS(2590), - [anon_sym_BANG_TILDE2] = ACTIONS(2590), - [anon_sym_like2] = ACTIONS(2590), - [anon_sym_not_DASHlike2] = ACTIONS(2590), - [anon_sym_LPAREN2] = ACTIONS(2594), - [anon_sym_STAR_STAR2] = ACTIONS(2590), - [anon_sym_PLUS_PLUS2] = ACTIONS(2590), - [anon_sym_SLASH2] = ACTIONS(2592), - [anon_sym_mod2] = ACTIONS(2590), - [anon_sym_SLASH_SLASH2] = ACTIONS(2590), - [anon_sym_PLUS2] = ACTIONS(2592), - [anon_sym_bit_DASHshl2] = ACTIONS(2590), - [anon_sym_bit_DASHshr2] = ACTIONS(2590), - [anon_sym_bit_DASHand2] = ACTIONS(2590), - [anon_sym_bit_DASHxor2] = ACTIONS(2590), - [anon_sym_bit_DASHor2] = ACTIONS(2590), - [anon_sym_err_GT] = ACTIONS(2592), - [anon_sym_out_GT] = ACTIONS(2592), - [anon_sym_e_GT] = ACTIONS(2592), - [anon_sym_o_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT] = ACTIONS(2592), - [anon_sym_err_GT_GT] = ACTIONS(2590), - [anon_sym_out_GT_GT] = ACTIONS(2590), - [anon_sym_e_GT_GT] = ACTIONS(2590), - [anon_sym_o_GT_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), - [sym__unquoted_pattern] = ACTIONS(2596), + [STATE(917)] = { + [sym_comment] = STATE(917), + [anon_sym_finally] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [sym__newline] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_err_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_GT_PIPE] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_GT2] = ACTIONS(2590), + [anon_sym_DASH2] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_EQ_GT] = ACTIONS(2588), + [anon_sym_STAR2] = ACTIONS(2590), + [anon_sym_and2] = ACTIONS(2588), + [anon_sym_xor2] = ACTIONS(2588), + [anon_sym_or2] = ACTIONS(2588), + [anon_sym_not_DASHin2] = ACTIONS(2588), + [anon_sym_has2] = ACTIONS(2588), + [anon_sym_not_DASHhas2] = ACTIONS(2588), + [anon_sym_starts_DASHwith2] = ACTIONS(2588), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2588), + [anon_sym_ends_DASHwith2] = ACTIONS(2588), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2588), + [anon_sym_EQ_EQ2] = ACTIONS(2588), + [anon_sym_BANG_EQ2] = ACTIONS(2588), + [anon_sym_LT2] = ACTIONS(2590), + [anon_sym_LT_EQ2] = ACTIONS(2588), + [anon_sym_GT_EQ2] = ACTIONS(2588), + [anon_sym_EQ_TILDE2] = ACTIONS(2588), + [anon_sym_BANG_TILDE2] = ACTIONS(2588), + [anon_sym_like2] = ACTIONS(2588), + [anon_sym_not_DASHlike2] = ACTIONS(2588), + [anon_sym_STAR_STAR2] = ACTIONS(2588), + [anon_sym_PLUS_PLUS2] = ACTIONS(2588), + [anon_sym_SLASH2] = ACTIONS(2590), + [anon_sym_mod2] = ACTIONS(2588), + [anon_sym_SLASH_SLASH2] = ACTIONS(2588), + [anon_sym_PLUS2] = ACTIONS(2590), + [anon_sym_bit_DASHshl2] = ACTIONS(2588), + [anon_sym_bit_DASHshr2] = ACTIONS(2588), + [anon_sym_bit_DASHand2] = ACTIONS(2588), + [anon_sym_bit_DASHxor2] = ACTIONS(2588), + [anon_sym_bit_DASHor2] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2588), + [anon_sym_out_GT_GT] = ACTIONS(2588), + [anon_sym_e_GT_GT] = ACTIONS(2588), + [anon_sym_o_GT_GT] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2588), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(935)] = { - [sym_comment] = STATE(935), - [anon_sym_in] = ACTIONS(2598), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_RPAREN] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2598), - [anon_sym_xor2] = ACTIONS(2598), - [anon_sym_or2] = ACTIONS(2598), - [anon_sym_not_DASHin2] = ACTIONS(2598), - [anon_sym_has2] = ACTIONS(2598), - [anon_sym_not_DASHhas2] = ACTIONS(2598), - [anon_sym_starts_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2598), - [anon_sym_ends_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2598), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2598), - [anon_sym_like2] = ACTIONS(2598), - [anon_sym_not_DASHlike2] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(2602), - [anon_sym_STAR_STAR2] = ACTIONS(2598), - [anon_sym_PLUS_PLUS2] = ACTIONS(2598), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2598), - [anon_sym_SLASH_SLASH2] = ACTIONS(2598), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2598), - [anon_sym_bit_DASHshr2] = ACTIONS(2598), - [anon_sym_bit_DASHand2] = ACTIONS(2598), - [anon_sym_bit_DASHxor2] = ACTIONS(2598), - [anon_sym_bit_DASHor2] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), - [sym__unquoted_pattern] = ACTIONS(2604), + [STATE(918)] = { + [sym_comment] = STATE(918), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [sym__newline] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_err_GT_PIPE] = ACTIONS(2592), + [anon_sym_out_GT_PIPE] = ACTIONS(2592), + [anon_sym_e_GT_PIPE] = ACTIONS(2592), + [anon_sym_o_GT_PIPE] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_GT2] = ACTIONS(2594), + [anon_sym_DASH2] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(2592), + [anon_sym_STAR2] = ACTIONS(2594), + [anon_sym_and2] = ACTIONS(2592), + [anon_sym_xor2] = ACTIONS(2592), + [anon_sym_or2] = ACTIONS(2592), + [anon_sym_not_DASHin2] = ACTIONS(2592), + [anon_sym_has2] = ACTIONS(2592), + [anon_sym_not_DASHhas2] = ACTIONS(2592), + [anon_sym_starts_DASHwith2] = ACTIONS(2592), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2592), + [anon_sym_ends_DASHwith2] = ACTIONS(2592), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2592), + [anon_sym_EQ_EQ2] = ACTIONS(2592), + [anon_sym_BANG_EQ2] = ACTIONS(2592), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LT_EQ2] = ACTIONS(2592), + [anon_sym_GT_EQ2] = ACTIONS(2592), + [anon_sym_EQ_TILDE2] = ACTIONS(2592), + [anon_sym_BANG_TILDE2] = ACTIONS(2592), + [anon_sym_like2] = ACTIONS(2592), + [anon_sym_not_DASHlike2] = ACTIONS(2592), + [anon_sym_STAR_STAR2] = ACTIONS(2592), + [anon_sym_PLUS_PLUS2] = ACTIONS(2592), + [anon_sym_SLASH2] = ACTIONS(2594), + [anon_sym_mod2] = ACTIONS(2592), + [anon_sym_SLASH_SLASH2] = ACTIONS(2592), + [anon_sym_PLUS2] = ACTIONS(2594), + [anon_sym_bit_DASHshl2] = ACTIONS(2592), + [anon_sym_bit_DASHshr2] = ACTIONS(2592), + [anon_sym_bit_DASHand2] = ACTIONS(2592), + [anon_sym_bit_DASHxor2] = ACTIONS(2592), + [anon_sym_bit_DASHor2] = ACTIONS(2592), + [anon_sym_err_GT] = ACTIONS(2594), + [anon_sym_out_GT] = ACTIONS(2594), + [anon_sym_e_GT] = ACTIONS(2594), + [anon_sym_o_GT] = ACTIONS(2594), + [anon_sym_err_PLUSout_GT] = ACTIONS(2594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2594), + [anon_sym_o_PLUSe_GT] = ACTIONS(2594), + [anon_sym_e_PLUSo_GT] = ACTIONS(2594), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(1216), - [sym__newline] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_err_GT_PIPE] = ACTIONS(1216), - [anon_sym_out_GT_PIPE] = ACTIONS(1216), - [anon_sym_e_GT_PIPE] = ACTIONS(1216), - [anon_sym_o_GT_PIPE] = ACTIONS(1216), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1216), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1216), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1216), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1216), - [anon_sym_xor2] = ACTIONS(1216), - [anon_sym_or2] = ACTIONS(1216), - [anon_sym_not_DASHin2] = ACTIONS(1216), - [anon_sym_has2] = ACTIONS(1216), - [anon_sym_not_DASHhas2] = ACTIONS(1216), - [anon_sym_starts_DASHwith2] = ACTIONS(1216), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1216), - [anon_sym_ends_DASHwith2] = ACTIONS(1216), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1216), - [anon_sym_EQ_EQ2] = ACTIONS(1216), - [anon_sym_BANG_EQ2] = ACTIONS(1216), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1216), - [anon_sym_GT_EQ2] = ACTIONS(1216), - [anon_sym_EQ_TILDE2] = ACTIONS(1216), - [anon_sym_BANG_TILDE2] = ACTIONS(1216), - [anon_sym_like2] = ACTIONS(1216), - [anon_sym_not_DASHlike2] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(1216), - [anon_sym_PLUS_PLUS2] = ACTIONS(1216), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1216), - [anon_sym_SLASH_SLASH2] = ACTIONS(1216), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1216), - [anon_sym_bit_DASHshr2] = ACTIONS(1216), - [anon_sym_bit_DASHand2] = ACTIONS(1216), - [anon_sym_bit_DASHxor2] = ACTIONS(1216), - [anon_sym_bit_DASHor2] = ACTIONS(1216), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1216), - [anon_sym_out_GT_GT] = ACTIONS(1216), - [anon_sym_e_GT_GT] = ACTIONS(1216), - [anon_sym_o_GT_GT] = ACTIONS(1216), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1216), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1216), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1216), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1216), - [sym__unquoted_pattern] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(937)] = { - [sym_comment] = STATE(937), - [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(1226), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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(2606), - [anon_sym_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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(2608), + [STATE(919)] = { + [sym_cell_path] = STATE(1309), + [sym_path] = STATE(737), + [sym_comment] = STATE(919), + [aux_sym__where_predicate_lhs_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1925), + [anon_sym_in] = ACTIONS(1925), + [sym__newline] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_err_GT_PIPE] = ACTIONS(1925), + [anon_sym_out_GT_PIPE] = ACTIONS(1925), + [anon_sym_e_GT_PIPE] = ACTIONS(1925), + [anon_sym_o_GT_PIPE] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), + [anon_sym_GT2] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1925), + [anon_sym_STAR2] = ACTIONS(1927), + [anon_sym_and2] = ACTIONS(1925), + [anon_sym_xor2] = ACTIONS(1925), + [anon_sym_or2] = ACTIONS(1925), + [anon_sym_not_DASHin2] = ACTIONS(1925), + [anon_sym_has2] = ACTIONS(1925), + [anon_sym_not_DASHhas2] = ACTIONS(1925), + [anon_sym_starts_DASHwith2] = ACTIONS(1925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1925), + [anon_sym_ends_DASHwith2] = ACTIONS(1925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1925), + [anon_sym_EQ_EQ2] = ACTIONS(1925), + [anon_sym_BANG_EQ2] = ACTIONS(1925), + [anon_sym_LT2] = ACTIONS(1927), + [anon_sym_LT_EQ2] = ACTIONS(1925), + [anon_sym_GT_EQ2] = ACTIONS(1925), + [anon_sym_EQ_TILDE2] = ACTIONS(1925), + [anon_sym_BANG_TILDE2] = ACTIONS(1925), + [anon_sym_like2] = ACTIONS(1925), + [anon_sym_not_DASHlike2] = ACTIONS(1925), + [anon_sym_STAR_STAR2] = ACTIONS(1925), + [anon_sym_PLUS_PLUS2] = ACTIONS(1925), + [anon_sym_SLASH2] = ACTIONS(1927), + [anon_sym_mod2] = ACTIONS(1925), + [anon_sym_SLASH_SLASH2] = ACTIONS(1925), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_bit_DASHshl2] = ACTIONS(1925), + [anon_sym_bit_DASHshr2] = ACTIONS(1925), + [anon_sym_bit_DASHand2] = ACTIONS(1925), + [anon_sym_bit_DASHxor2] = ACTIONS(1925), + [anon_sym_bit_DASHor2] = ACTIONS(1925), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1927), + [anon_sym_out_GT] = ACTIONS(1927), + [anon_sym_e_GT] = ACTIONS(1927), + [anon_sym_o_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT] = ACTIONS(1927), + [anon_sym_err_GT_GT] = ACTIONS(1925), + [anon_sym_out_GT_GT] = ACTIONS(1925), + [anon_sym_e_GT_GT] = ACTIONS(1925), + [anon_sym_o_GT_GT] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [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), + [STATE(920)] = { + [sym_comment] = STATE(920), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(2596), + [anon_sym_STAR2] = ACTIONS(2598), + [anon_sym_and2] = ACTIONS(2596), + [anon_sym_xor2] = ACTIONS(2596), + [anon_sym_or2] = ACTIONS(2596), + [anon_sym_not_DASHin2] = ACTIONS(2596), + [anon_sym_has2] = ACTIONS(2596), + [anon_sym_not_DASHhas2] = ACTIONS(2596), + [anon_sym_starts_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2596), + [anon_sym_ends_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2596), + [anon_sym_EQ_EQ2] = ACTIONS(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2596), + [anon_sym_like2] = ACTIONS(2596), + [anon_sym_not_DASHlike2] = ACTIONS(2596), + [anon_sym_STAR_STAR2] = ACTIONS(2596), + [anon_sym_PLUS_PLUS2] = ACTIONS(2596), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2596), + [anon_sym_SLASH_SLASH2] = ACTIONS(2596), + [anon_sym_PLUS2] = ACTIONS(2598), + [anon_sym_bit_DASHshl2] = ACTIONS(2596), + [anon_sym_bit_DASHshr2] = ACTIONS(2596), + [anon_sym_bit_DASHand2] = ACTIONS(2596), + [anon_sym_bit_DASHxor2] = ACTIONS(2596), + [anon_sym_bit_DASHor2] = ACTIONS(2596), + [anon_sym_err_GT] = ACTIONS(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(939)] = { - [sym_comment] = STATE(939), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), + [STATE(921)] = { + [sym_comment] = STATE(921), + [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(2484), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_STAR2] = ACTIONS(2484), + [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(2484), + [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(2484), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2484), + [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_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [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(940)] = { - [sym_comment] = STATE(940), - [anon_sym_in] = ACTIONS(1919), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_GT2] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_STAR2] = ACTIONS(1921), - [anon_sym_and2] = ACTIONS(1919), - [anon_sym_xor2] = ACTIONS(1919), - [anon_sym_or2] = ACTIONS(1919), - [anon_sym_not_DASHin2] = ACTIONS(1919), - [anon_sym_has2] = ACTIONS(1919), - [anon_sym_not_DASHhas2] = ACTIONS(1919), - [anon_sym_starts_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), - [anon_sym_ends_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), - [anon_sym_EQ_EQ2] = ACTIONS(1919), - [anon_sym_BANG_EQ2] = ACTIONS(1919), - [anon_sym_LT2] = ACTIONS(1921), - [anon_sym_LT_EQ2] = ACTIONS(1919), - [anon_sym_GT_EQ2] = ACTIONS(1919), - [anon_sym_EQ_TILDE2] = ACTIONS(1919), - [anon_sym_BANG_TILDE2] = ACTIONS(1919), - [anon_sym_like2] = ACTIONS(1919), - [anon_sym_not_DASHlike2] = ACTIONS(1919), - [anon_sym_LPAREN2] = ACTIONS(1919), - [anon_sym_STAR_STAR2] = ACTIONS(1919), - [anon_sym_PLUS_PLUS2] = ACTIONS(1919), - [anon_sym_SLASH2] = ACTIONS(1921), - [anon_sym_mod2] = ACTIONS(1919), - [anon_sym_SLASH_SLASH2] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_bit_DASHshl2] = ACTIONS(1919), - [anon_sym_bit_DASHshr2] = ACTIONS(1919), - [anon_sym_bit_DASHand2] = ACTIONS(1919), - [anon_sym_bit_DASHxor2] = ACTIONS(1919), - [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [sym__unquoted_pattern] = ACTIONS(1921), + [STATE(922)] = { + [sym_comment] = STATE(922), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_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(941)] = { - [sym_comment] = STATE(941), - [ts_builtin_sym_end] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_GT2] = ACTIONS(2243), - [anon_sym_DASH2] = ACTIONS(2241), - [anon_sym_STAR2] = ACTIONS(2243), - [anon_sym_and2] = ACTIONS(2241), - [anon_sym_xor2] = ACTIONS(2241), - [anon_sym_or2] = ACTIONS(2241), - [anon_sym_not_DASHin2] = ACTIONS(2241), - [anon_sym_has2] = ACTIONS(2241), - [anon_sym_not_DASHhas2] = ACTIONS(2241), - [anon_sym_starts_DASHwith2] = ACTIONS(2241), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2241), - [anon_sym_ends_DASHwith2] = ACTIONS(2241), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2241), - [anon_sym_EQ_EQ2] = ACTIONS(2241), - [anon_sym_BANG_EQ2] = ACTIONS(2241), - [anon_sym_LT2] = ACTIONS(2243), - [anon_sym_LT_EQ2] = ACTIONS(2241), - [anon_sym_GT_EQ2] = ACTIONS(2241), - [anon_sym_EQ_TILDE2] = ACTIONS(2241), - [anon_sym_BANG_TILDE2] = ACTIONS(2241), - [anon_sym_like2] = ACTIONS(2241), - [anon_sym_not_DASHlike2] = ACTIONS(2241), - [anon_sym_STAR_STAR2] = ACTIONS(2241), - [anon_sym_PLUS_PLUS2] = ACTIONS(2241), - [anon_sym_SLASH2] = ACTIONS(2243), - [anon_sym_mod2] = ACTIONS(2241), - [anon_sym_SLASH_SLASH2] = ACTIONS(2241), - [anon_sym_PLUS2] = ACTIONS(2243), - [anon_sym_bit_DASHshl2] = ACTIONS(2241), - [anon_sym_bit_DASHshr2] = ACTIONS(2241), - [anon_sym_bit_DASHand2] = ACTIONS(2241), - [anon_sym_bit_DASHxor2] = ACTIONS(2241), - [anon_sym_bit_DASHor2] = ACTIONS(2241), - [anon_sym_DOT_DOT2] = ACTIONS(2610), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2612), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2612), - [anon_sym_err_GT] = ACTIONS(2243), - [anon_sym_out_GT] = ACTIONS(2243), - [anon_sym_e_GT] = ACTIONS(2243), - [anon_sym_o_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT] = ACTIONS(2243), - [anon_sym_err_GT_GT] = ACTIONS(2241), - [anon_sym_out_GT_GT] = ACTIONS(2241), - [anon_sym_e_GT_GT] = ACTIONS(2241), - [anon_sym_o_GT_GT] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2241), + [STATE(923)] = { + [sym_comment] = STATE(923), + [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_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(942)] = { - [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [sym__newline] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_err_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_GT_PIPE] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), - [anon_sym_GT2] = ACTIONS(2251), - [anon_sym_DASH2] = ACTIONS(2249), - [anon_sym_STAR2] = ACTIONS(2251), - [anon_sym_and2] = ACTIONS(2249), - [anon_sym_xor2] = ACTIONS(2249), - [anon_sym_or2] = ACTIONS(2249), - [anon_sym_not_DASHin2] = ACTIONS(2249), - [anon_sym_has2] = ACTIONS(2249), - [anon_sym_not_DASHhas2] = ACTIONS(2249), - [anon_sym_starts_DASHwith2] = ACTIONS(2249), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2249), - [anon_sym_ends_DASHwith2] = ACTIONS(2249), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2249), - [anon_sym_EQ_EQ2] = ACTIONS(2249), - [anon_sym_BANG_EQ2] = ACTIONS(2249), - [anon_sym_LT2] = ACTIONS(2251), - [anon_sym_LT_EQ2] = ACTIONS(2249), - [anon_sym_GT_EQ2] = ACTIONS(2249), - [anon_sym_EQ_TILDE2] = ACTIONS(2249), - [anon_sym_BANG_TILDE2] = ACTIONS(2249), - [anon_sym_like2] = ACTIONS(2249), - [anon_sym_not_DASHlike2] = ACTIONS(2249), - [anon_sym_STAR_STAR2] = ACTIONS(2249), - [anon_sym_PLUS_PLUS2] = ACTIONS(2249), - [anon_sym_SLASH2] = ACTIONS(2251), - [anon_sym_mod2] = ACTIONS(2249), - [anon_sym_SLASH_SLASH2] = ACTIONS(2249), - [anon_sym_PLUS2] = ACTIONS(2251), - [anon_sym_bit_DASHshl2] = ACTIONS(2249), - [anon_sym_bit_DASHshr2] = ACTIONS(2249), - [anon_sym_bit_DASHand2] = ACTIONS(2249), - [anon_sym_bit_DASHxor2] = ACTIONS(2249), - [anon_sym_bit_DASHor2] = ACTIONS(2249), - [anon_sym_DOT_DOT2] = ACTIONS(2614), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2616), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2616), - [anon_sym_err_GT] = ACTIONS(2251), - [anon_sym_out_GT] = ACTIONS(2251), - [anon_sym_e_GT] = ACTIONS(2251), - [anon_sym_o_GT] = ACTIONS(2251), - [anon_sym_err_PLUSout_GT] = ACTIONS(2251), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), - [anon_sym_o_PLUSe_GT] = ACTIONS(2251), - [anon_sym_e_PLUSo_GT] = ACTIONS(2251), - [anon_sym_err_GT_GT] = ACTIONS(2249), - [anon_sym_out_GT_GT] = ACTIONS(2249), - [anon_sym_e_GT_GT] = ACTIONS(2249), - [anon_sym_o_GT_GT] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2249), + [STATE(924)] = { + [aux_sym__repeat_newline] = STATE(1105), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(924), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(943)] = { - [sym_comment] = STATE(943), - [ts_builtin_sym_end] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2257), - [sym__newline] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_err_GT_PIPE] = ACTIONS(2257), - [anon_sym_out_GT_PIPE] = ACTIONS(2257), - [anon_sym_e_GT_PIPE] = ACTIONS(2257), - [anon_sym_o_GT_PIPE] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2257), - [anon_sym_GT2] = ACTIONS(2259), - [anon_sym_DASH2] = ACTIONS(2257), - [anon_sym_STAR2] = ACTIONS(2259), - [anon_sym_and2] = ACTIONS(2257), - [anon_sym_xor2] = ACTIONS(2257), - [anon_sym_or2] = ACTIONS(2257), - [anon_sym_not_DASHin2] = ACTIONS(2257), - [anon_sym_has2] = ACTIONS(2257), - [anon_sym_not_DASHhas2] = ACTIONS(2257), - [anon_sym_starts_DASHwith2] = ACTIONS(2257), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2257), - [anon_sym_ends_DASHwith2] = ACTIONS(2257), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2257), - [anon_sym_EQ_EQ2] = ACTIONS(2257), - [anon_sym_BANG_EQ2] = ACTIONS(2257), - [anon_sym_LT2] = ACTIONS(2259), - [anon_sym_LT_EQ2] = ACTIONS(2257), - [anon_sym_GT_EQ2] = ACTIONS(2257), - [anon_sym_EQ_TILDE2] = ACTIONS(2257), - [anon_sym_BANG_TILDE2] = ACTIONS(2257), - [anon_sym_like2] = ACTIONS(2257), - [anon_sym_not_DASHlike2] = ACTIONS(2257), - [anon_sym_STAR_STAR2] = ACTIONS(2257), - [anon_sym_PLUS_PLUS2] = ACTIONS(2257), - [anon_sym_SLASH2] = ACTIONS(2259), - [anon_sym_mod2] = ACTIONS(2257), - [anon_sym_SLASH_SLASH2] = ACTIONS(2257), - [anon_sym_PLUS2] = ACTIONS(2259), - [anon_sym_bit_DASHshl2] = ACTIONS(2257), - [anon_sym_bit_DASHshr2] = ACTIONS(2257), - [anon_sym_bit_DASHand2] = ACTIONS(2257), - [anon_sym_bit_DASHxor2] = ACTIONS(2257), - [anon_sym_bit_DASHor2] = ACTIONS(2257), - [anon_sym_DOT_DOT2] = ACTIONS(2618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2620), - [anon_sym_err_GT] = ACTIONS(2259), - [anon_sym_out_GT] = ACTIONS(2259), - [anon_sym_e_GT] = ACTIONS(2259), - [anon_sym_o_GT] = ACTIONS(2259), - [anon_sym_err_PLUSout_GT] = ACTIONS(2259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), - [anon_sym_o_PLUSe_GT] = ACTIONS(2259), - [anon_sym_e_PLUSo_GT] = ACTIONS(2259), - [anon_sym_err_GT_GT] = ACTIONS(2257), - [anon_sym_out_GT_GT] = ACTIONS(2257), - [anon_sym_e_GT_GT] = ACTIONS(2257), - [anon_sym_o_GT_GT] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), + [STATE(925)] = { + [sym_comment] = STATE(925), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_err_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_GT_PIPE] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_EQ_GT] = ACTIONS(2186), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2186), + [anon_sym_out_GT_GT] = ACTIONS(2186), + [anon_sym_e_GT_GT] = ACTIONS(2186), + [anon_sym_o_GT_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(944)] = { - [sym_comment] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(2622), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2624), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2624), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [STATE(926)] = { + [aux_sym__repeat_newline] = STATE(1108), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(926), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(945)] = { - [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_EQ_GT] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1714), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [STATE(927)] = { + [aux_sym__repeat_newline] = STATE(1113), + [sym__expr_parenthesized_immediate] = STATE(5069), + [sym_comment] = STATE(927), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(946)] = { - [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(2227), - [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(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_EQ_GT] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [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), + [STATE(928)] = { + [sym_comment] = STATE(928), + [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_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_DOT_DOT2] = ACTIONS(2600), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2602), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2602), + [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(947)] = { - [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2626), - [sym__newline] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_err_GT_PIPE] = ACTIONS(2626), - [anon_sym_out_GT_PIPE] = ACTIONS(2626), - [anon_sym_e_GT_PIPE] = ACTIONS(2626), - [anon_sym_o_GT_PIPE] = ACTIONS(2626), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2626), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2626), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2626), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_GT2] = ACTIONS(2628), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_EQ_GT] = ACTIONS(2626), - [anon_sym_STAR2] = ACTIONS(2628), - [anon_sym_and2] = ACTIONS(2626), - [anon_sym_xor2] = ACTIONS(2626), - [anon_sym_or2] = ACTIONS(2626), - [anon_sym_not_DASHin2] = ACTIONS(2626), - [anon_sym_has2] = ACTIONS(2626), - [anon_sym_not_DASHhas2] = ACTIONS(2626), - [anon_sym_starts_DASHwith2] = ACTIONS(2626), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2626), - [anon_sym_ends_DASHwith2] = ACTIONS(2626), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2626), - [anon_sym_EQ_EQ2] = ACTIONS(2626), - [anon_sym_BANG_EQ2] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2628), - [anon_sym_LT_EQ2] = ACTIONS(2626), - [anon_sym_GT_EQ2] = ACTIONS(2626), - [anon_sym_EQ_TILDE2] = ACTIONS(2626), - [anon_sym_BANG_TILDE2] = ACTIONS(2626), - [anon_sym_like2] = ACTIONS(2626), - [anon_sym_not_DASHlike2] = ACTIONS(2626), - [anon_sym_STAR_STAR2] = ACTIONS(2626), - [anon_sym_PLUS_PLUS2] = ACTIONS(2626), - [anon_sym_SLASH2] = ACTIONS(2628), - [anon_sym_mod2] = ACTIONS(2626), - [anon_sym_SLASH_SLASH2] = ACTIONS(2626), - [anon_sym_PLUS2] = ACTIONS(2628), - [anon_sym_bit_DASHshl2] = ACTIONS(2626), - [anon_sym_bit_DASHshr2] = ACTIONS(2626), - [anon_sym_bit_DASHand2] = ACTIONS(2626), - [anon_sym_bit_DASHxor2] = ACTIONS(2626), - [anon_sym_bit_DASHor2] = ACTIONS(2626), - [anon_sym_err_GT] = ACTIONS(2628), - [anon_sym_out_GT] = ACTIONS(2628), - [anon_sym_e_GT] = ACTIONS(2628), - [anon_sym_o_GT] = ACTIONS(2628), - [anon_sym_err_PLUSout_GT] = ACTIONS(2628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2628), - [anon_sym_o_PLUSe_GT] = ACTIONS(2628), - [anon_sym_e_PLUSo_GT] = ACTIONS(2628), - [anon_sym_err_GT_GT] = ACTIONS(2626), - [anon_sym_out_GT_GT] = ACTIONS(2626), - [anon_sym_e_GT_GT] = ACTIONS(2626), - [anon_sym_o_GT_GT] = ACTIONS(2626), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2626), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2626), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2626), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2626), + [STATE(929)] = { + [sym_comment] = STATE(929), + [anon_sym_in] = ACTIONS(2604), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2604), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2604), + [anon_sym_xor2] = ACTIONS(2604), + [anon_sym_or2] = ACTIONS(2604), + [anon_sym_not_DASHin2] = ACTIONS(2604), + [anon_sym_has2] = ACTIONS(2604), + [anon_sym_not_DASHhas2] = ACTIONS(2604), + [anon_sym_starts_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2604), + [anon_sym_ends_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2604), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2604), + [anon_sym_like2] = ACTIONS(2604), + [anon_sym_not_DASHlike2] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(2608), + [anon_sym_STAR_STAR2] = ACTIONS(2604), + [anon_sym_PLUS_PLUS2] = ACTIONS(2604), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2604), + [anon_sym_SLASH_SLASH2] = ACTIONS(2604), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2604), + [anon_sym_bit_DASHshr2] = ACTIONS(2604), + [anon_sym_bit_DASHand2] = ACTIONS(2604), + [anon_sym_bit_DASHxor2] = ACTIONS(2604), + [anon_sym_bit_DASHor2] = ACTIONS(2604), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [sym__unquoted_pattern] = ACTIONS(2610), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(948)] = { - [sym_comment] = STATE(948), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [STATE(930)] = { + [sym_comment] = STATE(930), + [anon_sym_export] = ACTIONS(2612), + [anon_sym_alias] = ACTIONS(2616), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_mut] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [aux_sym_cmd_identifier_token1] = ACTIONS(2612), + [anon_sym_def] = ACTIONS(2616), + [anon_sym_use] = ACTIONS(2616), + [anon_sym_export_DASHenv] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_module] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_loop] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_else] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [anon_sym_catch] = ACTIONS(2616), + [anon_sym_finally] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2612), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_null] = ACTIONS(2616), + [aux_sym_cmd_identifier_token3] = ACTIONS(2616), + [aux_sym_cmd_identifier_token4] = ACTIONS(2616), + [aux_sym_cmd_identifier_token5] = ACTIONS(2616), + [sym__newline] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_DOLLAR] = ACTIONS(2612), + [anon_sym_DASH2] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_where] = ACTIONS(2620), + [aux_sym_expr_unary_token1] = ACTIONS(2620), + [anon_sym_PLUS2] = ACTIONS(2626), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2620), + [anon_sym_DOT_DOT_LT] = ACTIONS(2620), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2628), + [aux_sym__val_number_decimal_token1] = ACTIONS(2612), + [aux_sym__val_number_decimal_token2] = ACTIONS(2616), + [aux_sym__val_number_decimal_token3] = ACTIONS(2616), + [aux_sym__val_number_decimal_token4] = ACTIONS(2616), + [aux_sym__val_number_token1] = ACTIONS(2616), + [aux_sym__val_number_token2] = ACTIONS(2616), + [aux_sym__val_number_token3] = ACTIONS(2616), + [anon_sym_0b] = ACTIONS(2623), + [anon_sym_0o] = ACTIONS(2623), + [anon_sym_0x] = ACTIONS(2623), + [sym_val_date] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2616), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_BQUOTE] = ACTIONS(2616), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2616), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2616), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2628), + [anon_sym_CARET] = ACTIONS(2620), + [anon_sym_PERCENT] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2616), + }, + [STATE(931)] = { + [sym_comment] = STATE(931), + [anon_sym_in] = ACTIONS(1258), + [sym__newline] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_err_GT_PIPE] = ACTIONS(1258), + [anon_sym_out_GT_PIPE] = ACTIONS(1258), + [anon_sym_e_GT_PIPE] = ACTIONS(1258), + [anon_sym_o_GT_PIPE] = ACTIONS(1258), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1258), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1258), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1258), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1258), + [anon_sym_xor2] = ACTIONS(1258), + [anon_sym_or2] = ACTIONS(1258), + [anon_sym_not_DASHin2] = ACTIONS(1258), + [anon_sym_has2] = ACTIONS(1258), + [anon_sym_not_DASHhas2] = ACTIONS(1258), + [anon_sym_starts_DASHwith2] = ACTIONS(1258), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1258), + [anon_sym_ends_DASHwith2] = ACTIONS(1258), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1258), + [anon_sym_EQ_EQ2] = ACTIONS(1258), + [anon_sym_BANG_EQ2] = ACTIONS(1258), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1258), + [anon_sym_GT_EQ2] = ACTIONS(1258), + [anon_sym_EQ_TILDE2] = ACTIONS(1258), + [anon_sym_BANG_TILDE2] = ACTIONS(1258), + [anon_sym_like2] = ACTIONS(1258), + [anon_sym_not_DASHlike2] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR_STAR2] = ACTIONS(1258), + [anon_sym_PLUS_PLUS2] = ACTIONS(1258), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1258), + [anon_sym_SLASH_SLASH2] = ACTIONS(1258), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1258), + [anon_sym_bit_DASHshr2] = ACTIONS(1258), + [anon_sym_bit_DASHand2] = ACTIONS(1258), + [anon_sym_bit_DASHxor2] = ACTIONS(1258), + [anon_sym_bit_DASHor2] = ACTIONS(1258), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1258), + [anon_sym_out_GT_GT] = ACTIONS(1258), + [anon_sym_e_GT_GT] = ACTIONS(1258), + [anon_sym_o_GT_GT] = ACTIONS(1258), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1258), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1258), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1258), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1258), + [sym__unquoted_pattern] = ACTIONS(2632), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(949)] = { - [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2630), - [sym__newline] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_PIPE] = ACTIONS(2630), - [anon_sym_err_GT_PIPE] = ACTIONS(2630), - [anon_sym_out_GT_PIPE] = ACTIONS(2630), - [anon_sym_e_GT_PIPE] = ACTIONS(2630), - [anon_sym_o_GT_PIPE] = ACTIONS(2630), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2630), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2630), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2630), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2630), - [anon_sym_RPAREN] = ACTIONS(2630), - [anon_sym_GT2] = ACTIONS(2632), - [anon_sym_DASH2] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_EQ_GT] = ACTIONS(2630), - [anon_sym_STAR2] = ACTIONS(2632), - [anon_sym_and2] = ACTIONS(2630), - [anon_sym_xor2] = ACTIONS(2630), - [anon_sym_or2] = ACTIONS(2630), - [anon_sym_not_DASHin2] = ACTIONS(2630), - [anon_sym_has2] = ACTIONS(2630), - [anon_sym_not_DASHhas2] = ACTIONS(2630), - [anon_sym_starts_DASHwith2] = ACTIONS(2630), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2630), - [anon_sym_ends_DASHwith2] = ACTIONS(2630), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2630), - [anon_sym_EQ_EQ2] = ACTIONS(2630), - [anon_sym_BANG_EQ2] = ACTIONS(2630), - [anon_sym_LT2] = ACTIONS(2632), - [anon_sym_LT_EQ2] = ACTIONS(2630), - [anon_sym_GT_EQ2] = ACTIONS(2630), - [anon_sym_EQ_TILDE2] = ACTIONS(2630), - [anon_sym_BANG_TILDE2] = ACTIONS(2630), - [anon_sym_like2] = ACTIONS(2630), - [anon_sym_not_DASHlike2] = ACTIONS(2630), - [anon_sym_STAR_STAR2] = ACTIONS(2630), - [anon_sym_PLUS_PLUS2] = ACTIONS(2630), - [anon_sym_SLASH2] = ACTIONS(2632), - [anon_sym_mod2] = ACTIONS(2630), - [anon_sym_SLASH_SLASH2] = ACTIONS(2630), - [anon_sym_PLUS2] = ACTIONS(2632), - [anon_sym_bit_DASHshl2] = ACTIONS(2630), - [anon_sym_bit_DASHshr2] = ACTIONS(2630), - [anon_sym_bit_DASHand2] = ACTIONS(2630), - [anon_sym_bit_DASHxor2] = ACTIONS(2630), - [anon_sym_bit_DASHor2] = ACTIONS(2630), - [anon_sym_err_GT] = ACTIONS(2632), - [anon_sym_out_GT] = ACTIONS(2632), - [anon_sym_e_GT] = ACTIONS(2632), - [anon_sym_o_GT] = ACTIONS(2632), - [anon_sym_err_PLUSout_GT] = ACTIONS(2632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2632), - [anon_sym_o_PLUSe_GT] = ACTIONS(2632), - [anon_sym_e_PLUSo_GT] = ACTIONS(2632), - [anon_sym_err_GT_GT] = ACTIONS(2630), - [anon_sym_out_GT_GT] = ACTIONS(2630), - [anon_sym_e_GT_GT] = ACTIONS(2630), - [anon_sym_o_GT_GT] = ACTIONS(2630), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2630), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2630), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2630), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2630), + [STATE(932)] = { + [sym_comment] = STATE(932), + [anon_sym_in] = ACTIONS(1250), + [sym__newline] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_err_GT_PIPE] = ACTIONS(1250), + [anon_sym_out_GT_PIPE] = ACTIONS(1250), + [anon_sym_e_GT_PIPE] = ACTIONS(1250), + [anon_sym_o_GT_PIPE] = ACTIONS(1250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1250), + [anon_sym_GT2] = ACTIONS(1234), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_STAR2] = ACTIONS(1234), + [anon_sym_and2] = ACTIONS(1250), + [anon_sym_xor2] = ACTIONS(1250), + [anon_sym_or2] = ACTIONS(1250), + [anon_sym_not_DASHin2] = ACTIONS(1250), + [anon_sym_has2] = ACTIONS(1250), + [anon_sym_not_DASHhas2] = ACTIONS(1250), + [anon_sym_starts_DASHwith2] = ACTIONS(1250), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1250), + [anon_sym_ends_DASHwith2] = ACTIONS(1250), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1250), + [anon_sym_EQ_EQ2] = ACTIONS(1250), + [anon_sym_BANG_EQ2] = ACTIONS(1250), + [anon_sym_LT2] = ACTIONS(1234), + [anon_sym_LT_EQ2] = ACTIONS(1250), + [anon_sym_GT_EQ2] = ACTIONS(1250), + [anon_sym_EQ_TILDE2] = ACTIONS(1250), + [anon_sym_BANG_TILDE2] = ACTIONS(1250), + [anon_sym_like2] = ACTIONS(1250), + [anon_sym_not_DASHlike2] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR_STAR2] = ACTIONS(1250), + [anon_sym_PLUS_PLUS2] = ACTIONS(1250), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1250), + [anon_sym_SLASH_SLASH2] = ACTIONS(1250), + [anon_sym_PLUS2] = ACTIONS(1234), + [anon_sym_bit_DASHshl2] = ACTIONS(1250), + [anon_sym_bit_DASHshr2] = ACTIONS(1250), + [anon_sym_bit_DASHand2] = ACTIONS(1250), + [anon_sym_bit_DASHxor2] = ACTIONS(1250), + [anon_sym_bit_DASHor2] = ACTIONS(1250), + [anon_sym_err_GT] = ACTIONS(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [anon_sym_err_GT_GT] = ACTIONS(1250), + [anon_sym_out_GT_GT] = ACTIONS(1250), + [anon_sym_e_GT_GT] = ACTIONS(1250), + [anon_sym_o_GT_GT] = ACTIONS(1250), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1250), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1250), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1250), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1250), + [sym__unquoted_pattern] = ACTIONS(2632), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(950)] = { - [sym_comment] = STATE(950), - [anon_sym_in] = ACTIONS(2634), - [sym__newline] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_err_GT_PIPE] = ACTIONS(2634), - [anon_sym_out_GT_PIPE] = ACTIONS(2634), - [anon_sym_e_GT_PIPE] = ACTIONS(2634), - [anon_sym_o_GT_PIPE] = ACTIONS(2634), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2634), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2634), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2634), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2634), - [anon_sym_RPAREN] = ACTIONS(2634), - [anon_sym_GT2] = ACTIONS(2636), - [anon_sym_DASH2] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_EQ_GT] = ACTIONS(2634), - [anon_sym_STAR2] = ACTIONS(2636), - [anon_sym_and2] = ACTIONS(2634), - [anon_sym_xor2] = ACTIONS(2634), - [anon_sym_or2] = ACTIONS(2634), - [anon_sym_not_DASHin2] = ACTIONS(2634), - [anon_sym_has2] = ACTIONS(2634), - [anon_sym_not_DASHhas2] = ACTIONS(2634), - [anon_sym_starts_DASHwith2] = ACTIONS(2634), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2634), - [anon_sym_ends_DASHwith2] = ACTIONS(2634), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2634), - [anon_sym_EQ_EQ2] = ACTIONS(2634), - [anon_sym_BANG_EQ2] = ACTIONS(2634), - [anon_sym_LT2] = ACTIONS(2636), - [anon_sym_LT_EQ2] = ACTIONS(2634), - [anon_sym_GT_EQ2] = ACTIONS(2634), - [anon_sym_EQ_TILDE2] = ACTIONS(2634), - [anon_sym_BANG_TILDE2] = ACTIONS(2634), - [anon_sym_like2] = ACTIONS(2634), - [anon_sym_not_DASHlike2] = ACTIONS(2634), - [anon_sym_STAR_STAR2] = ACTIONS(2634), - [anon_sym_PLUS_PLUS2] = ACTIONS(2634), - [anon_sym_SLASH2] = ACTIONS(2636), - [anon_sym_mod2] = ACTIONS(2634), - [anon_sym_SLASH_SLASH2] = ACTIONS(2634), - [anon_sym_PLUS2] = ACTIONS(2636), - [anon_sym_bit_DASHshl2] = ACTIONS(2634), - [anon_sym_bit_DASHshr2] = ACTIONS(2634), - [anon_sym_bit_DASHand2] = ACTIONS(2634), - [anon_sym_bit_DASHxor2] = ACTIONS(2634), - [anon_sym_bit_DASHor2] = ACTIONS(2634), - [anon_sym_err_GT] = ACTIONS(2636), - [anon_sym_out_GT] = ACTIONS(2636), - [anon_sym_e_GT] = ACTIONS(2636), - [anon_sym_o_GT] = ACTIONS(2636), - [anon_sym_err_PLUSout_GT] = ACTIONS(2636), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2636), - [anon_sym_o_PLUSe_GT] = ACTIONS(2636), - [anon_sym_e_PLUSo_GT] = ACTIONS(2636), - [anon_sym_err_GT_GT] = ACTIONS(2634), - [anon_sym_out_GT_GT] = ACTIONS(2634), - [anon_sym_e_GT_GT] = ACTIONS(2634), - [anon_sym_o_GT_GT] = ACTIONS(2634), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2634), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2634), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2634), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2634), + [STATE(933)] = { + [sym_comment] = STATE(933), + [ts_builtin_sym_end] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [sym__newline] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_err_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_GT_PIPE] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), + [anon_sym_GT2] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1913), + [anon_sym_STAR2] = ACTIONS(1915), + [anon_sym_and2] = ACTIONS(1913), + [anon_sym_xor2] = ACTIONS(1913), + [anon_sym_or2] = ACTIONS(1913), + [anon_sym_not_DASHin2] = ACTIONS(1913), + [anon_sym_has2] = ACTIONS(1913), + [anon_sym_not_DASHhas2] = ACTIONS(1913), + [anon_sym_starts_DASHwith2] = ACTIONS(1913), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1913), + [anon_sym_ends_DASHwith2] = ACTIONS(1913), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1913), + [anon_sym_EQ_EQ2] = ACTIONS(1913), + [anon_sym_BANG_EQ2] = ACTIONS(1913), + [anon_sym_LT2] = ACTIONS(1915), + [anon_sym_LT_EQ2] = ACTIONS(1913), + [anon_sym_GT_EQ2] = ACTIONS(1913), + [anon_sym_EQ_TILDE2] = ACTIONS(1913), + [anon_sym_BANG_TILDE2] = ACTIONS(1913), + [anon_sym_like2] = ACTIONS(1913), + [anon_sym_not_DASHlike2] = ACTIONS(1913), + [anon_sym_STAR_STAR2] = ACTIONS(1913), + [anon_sym_PLUS_PLUS2] = ACTIONS(1913), + [anon_sym_SLASH2] = ACTIONS(1915), + [anon_sym_mod2] = ACTIONS(1913), + [anon_sym_SLASH_SLASH2] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_bit_DASHshl2] = ACTIONS(1913), + [anon_sym_bit_DASHshr2] = ACTIONS(1913), + [anon_sym_bit_DASHand2] = ACTIONS(1913), + [anon_sym_bit_DASHxor2] = ACTIONS(1913), + [anon_sym_bit_DASHor2] = ACTIONS(1913), + [anon_sym_DOT_DOT2] = ACTIONS(1915), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1913), + [anon_sym_out_GT_GT] = ACTIONS(1913), + [anon_sym_e_GT_GT] = ACTIONS(1913), + [anon_sym_o_GT_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(951)] = { - [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [STATE(934)] = { + [sym_comment] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(2265), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_err_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_GT_PIPE] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = 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_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(2267), + [anon_sym_out_GT] = ACTIONS(2267), + [anon_sym_e_GT] = ACTIONS(2267), + [anon_sym_o_GT] = ACTIONS(2267), + [anon_sym_err_PLUSout_GT] = ACTIONS(2267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), + [anon_sym_o_PLUSe_GT] = ACTIONS(2267), + [anon_sym_e_PLUSo_GT] = ACTIONS(2267), + [anon_sym_err_GT_GT] = ACTIONS(2265), + [anon_sym_out_GT_GT] = ACTIONS(2265), + [anon_sym_e_GT_GT] = ACTIONS(2265), + [anon_sym_o_GT_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(952)] = { - [sym_comment] = STATE(952), - [anon_sym_export] = ACTIONS(2638), - [anon_sym_alias] = ACTIONS(2640), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_mut] = ACTIONS(2640), - [anon_sym_const] = ACTIONS(2640), - [aux_sym_cmd_identifier_token1] = ACTIONS(2638), - [anon_sym_def] = ACTIONS(2640), - [anon_sym_use] = ACTIONS(2640), - [anon_sym_export_DASHenv] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_module] = ACTIONS(2640), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_loop] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_finally] = ACTIONS(2640), - [anon_sym_match] = ACTIONS(2640), - [anon_sym_in] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [anon_sym_null] = ACTIONS(2640), + [STATE(935)] = { + [aux_sym__repeat_newline] = STATE(1018), + [sym__expression_parenthesized] = STATE(4390), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_comment] = STATE(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), [aux_sym_cmd_identifier_token3] = ACTIONS(2640), [aux_sym_cmd_identifier_token4] = ACTIONS(2640), [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [sym__newline] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_err_GT_PIPE] = ACTIONS(2640), - [anon_sym_out_GT_PIPE] = ACTIONS(2640), - [anon_sym_e_GT_PIPE] = ACTIONS(2640), - [anon_sym_o_GT_PIPE] = ACTIONS(2640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2640), - [anon_sym_DOLLAR] = ACTIONS(2638), - [anon_sym_DASH2] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_DOT_DOT] = ACTIONS(2638), - [anon_sym_where] = ACTIONS(2640), - [aux_sym_expr_unary_token1] = ACTIONS(2640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_LT] = ACTIONS(2640), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [sym__newline] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), [aux_sym__val_number_token1] = ACTIONS(2640), [aux_sym__val_number_token2] = ACTIONS(2640), [aux_sym__val_number_token3] = ACTIONS(2640), - [anon_sym_0b] = ACTIONS(2638), - [anon_sym_0o] = ACTIONS(2638), - [anon_sym_0x] = ACTIONS(2638), - [sym_val_date] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_BQUOTE] = ACTIONS(2640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2640), - }, - [STATE(953)] = { - [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_GT2] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_STAR2] = ACTIONS(1887), - [anon_sym_and2] = ACTIONS(1885), - [anon_sym_xor2] = ACTIONS(1885), - [anon_sym_or2] = ACTIONS(1885), - [anon_sym_not_DASHin2] = ACTIONS(1885), - [anon_sym_has2] = ACTIONS(1885), - [anon_sym_not_DASHhas2] = ACTIONS(1885), - [anon_sym_starts_DASHwith2] = ACTIONS(1885), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1885), - [anon_sym_ends_DASHwith2] = ACTIONS(1885), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1885), - [anon_sym_EQ_EQ2] = ACTIONS(1885), - [anon_sym_BANG_EQ2] = ACTIONS(1885), - [anon_sym_LT2] = ACTIONS(1887), - [anon_sym_LT_EQ2] = ACTIONS(1885), - [anon_sym_GT_EQ2] = ACTIONS(1885), - [anon_sym_EQ_TILDE2] = ACTIONS(1885), - [anon_sym_BANG_TILDE2] = ACTIONS(1885), - [anon_sym_like2] = ACTIONS(1885), - [anon_sym_not_DASHlike2] = ACTIONS(1885), - [anon_sym_STAR_STAR2] = ACTIONS(1885), - [anon_sym_PLUS_PLUS2] = ACTIONS(1885), - [anon_sym_SLASH2] = ACTIONS(1887), - [anon_sym_mod2] = ACTIONS(1885), - [anon_sym_SLASH_SLASH2] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_bit_DASHshl2] = ACTIONS(1885), - [anon_sym_bit_DASHshr2] = ACTIONS(1885), - [anon_sym_bit_DASHand2] = ACTIONS(1885), - [anon_sym_bit_DASHxor2] = ACTIONS(1885), - [anon_sym_bit_DASHor2] = ACTIONS(1885), - [anon_sym_err_GT] = ACTIONS(1887), - [anon_sym_out_GT] = ACTIONS(1887), - [anon_sym_e_GT] = ACTIONS(1887), - [anon_sym_o_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT] = ACTIONS(1887), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(954)] = { - [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_GT2] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_STAR2] = ACTIONS(1895), - [anon_sym_and2] = ACTIONS(1893), - [anon_sym_xor2] = ACTIONS(1893), - [anon_sym_or2] = ACTIONS(1893), - [anon_sym_not_DASHin2] = ACTIONS(1893), - [anon_sym_has2] = ACTIONS(1893), - [anon_sym_not_DASHhas2] = ACTIONS(1893), - [anon_sym_starts_DASHwith2] = ACTIONS(1893), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1893), - [anon_sym_ends_DASHwith2] = ACTIONS(1893), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1893), - [anon_sym_EQ_EQ2] = ACTIONS(1893), - [anon_sym_BANG_EQ2] = ACTIONS(1893), - [anon_sym_LT2] = ACTIONS(1895), - [anon_sym_LT_EQ2] = ACTIONS(1893), - [anon_sym_GT_EQ2] = ACTIONS(1893), - [anon_sym_EQ_TILDE2] = ACTIONS(1893), - [anon_sym_BANG_TILDE2] = ACTIONS(1893), - [anon_sym_like2] = ACTIONS(1893), - [anon_sym_not_DASHlike2] = ACTIONS(1893), - [anon_sym_STAR_STAR2] = ACTIONS(1893), - [anon_sym_PLUS_PLUS2] = ACTIONS(1893), - [anon_sym_SLASH2] = ACTIONS(1895), - [anon_sym_mod2] = ACTIONS(1893), - [anon_sym_SLASH_SLASH2] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_bit_DASHshl2] = ACTIONS(1893), - [anon_sym_bit_DASHshr2] = ACTIONS(1893), - [anon_sym_bit_DASHand2] = ACTIONS(1893), - [anon_sym_bit_DASHxor2] = ACTIONS(1893), - [anon_sym_bit_DASHor2] = ACTIONS(1893), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(955)] = { - [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(2227), - [sym__newline] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_err_GT_PIPE] = ACTIONS(2227), - [anon_sym_out_GT_PIPE] = ACTIONS(2227), - [anon_sym_e_GT_PIPE] = ACTIONS(2227), - [anon_sym_o_GT_PIPE] = ACTIONS(2227), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2227), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2227), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2227), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2227), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_GT2] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_EQ_GT] = ACTIONS(2227), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2227), - [anon_sym_out_GT_GT] = ACTIONS(2227), - [anon_sym_e_GT_GT] = ACTIONS(2227), - [anon_sym_o_GT_GT] = ACTIONS(2227), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2227), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2227), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2227), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(956)] = { - [sym_comment] = STATE(956), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(957)] = { - [sym_comment] = STATE(957), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(958)] = { - [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(959)] = { - [sym_comment] = STATE(959), - [ts_builtin_sym_end] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [sym__newline] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_err_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_GT_PIPE] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), - [anon_sym_GT2] = ACTIONS(1856), - [anon_sym_DASH2] = ACTIONS(1854), - [anon_sym_STAR2] = ACTIONS(1856), - [anon_sym_and2] = ACTIONS(1854), - [anon_sym_xor2] = ACTIONS(1854), - [anon_sym_or2] = ACTIONS(1854), - [anon_sym_not_DASHin2] = ACTIONS(1854), - [anon_sym_has2] = ACTIONS(1854), - [anon_sym_not_DASHhas2] = ACTIONS(1854), - [anon_sym_starts_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), - [anon_sym_ends_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), - [anon_sym_EQ_EQ2] = ACTIONS(1854), - [anon_sym_BANG_EQ2] = ACTIONS(1854), - [anon_sym_LT2] = ACTIONS(1856), - [anon_sym_LT_EQ2] = ACTIONS(1854), - [anon_sym_GT_EQ2] = ACTIONS(1854), - [anon_sym_EQ_TILDE2] = ACTIONS(1854), - [anon_sym_BANG_TILDE2] = ACTIONS(1854), - [anon_sym_like2] = ACTIONS(1854), - [anon_sym_not_DASHlike2] = ACTIONS(1854), - [anon_sym_STAR_STAR2] = ACTIONS(1854), - [anon_sym_PLUS_PLUS2] = ACTIONS(1854), - [anon_sym_SLASH2] = ACTIONS(1856), - [anon_sym_mod2] = ACTIONS(1854), - [anon_sym_SLASH_SLASH2] = ACTIONS(1854), - [anon_sym_PLUS2] = ACTIONS(1856), - [anon_sym_bit_DASHshl2] = ACTIONS(1854), - [anon_sym_bit_DASHshr2] = ACTIONS(1854), - [anon_sym_bit_DASHand2] = ACTIONS(1854), - [anon_sym_bit_DASHxor2] = ACTIONS(1854), - [anon_sym_bit_DASHor2] = ACTIONS(1854), - [anon_sym_DOT_DOT2] = ACTIONS(1856), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1854), - [anon_sym_out_GT_GT] = ACTIONS(1854), - [anon_sym_e_GT_GT] = ACTIONS(1854), - [anon_sym_o_GT_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(960)] = { - [aux_sym__repeat_newline] = STATE(1150), - [sym__expression_parenthesized] = STATE(4643), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2191), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(960), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(961)] = { - [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(962)] = { - [sym_comment] = STATE(962), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(936)] = { + [sym_comment] = STATE(936), + [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(2648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2650), + [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(963)] = { - [sym_comment] = STATE(963), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(937)] = { + [sym_comment] = STATE(937), + [ts_builtin_sym_end] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1872), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(964)] = { - [sym_comment] = STATE(964), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(938)] = { + [sym_comment] = STATE(938), + [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(2652), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2654), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2654), + [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(965)] = { - [sym_comment] = STATE(965), + [STATE(939)] = { + [sym_comment] = STATE(939), [anon_sym_in] = ACTIONS(2656), [sym__newline] = ACTIONS(2656), [anon_sym_SEMI] = ACTIONS(2656), @@ -121091,560 +119528,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(966)] = { - [sym_comment] = STATE(966), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(967)] = { - [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(968)] = { - [sym_comment] = STATE(968), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(969)] = { - [sym_comment] = STATE(969), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(970)] = { - [sym_comment] = STATE(970), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(971)] = { - [sym_comment] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [sym__newline] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_err_GT_PIPE] = ACTIONS(1905), - [anon_sym_out_GT_PIPE] = ACTIONS(1905), - [anon_sym_e_GT_PIPE] = ACTIONS(1905), - [anon_sym_o_GT_PIPE] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), - [anon_sym_GT2] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_STAR2] = ACTIONS(1907), - [anon_sym_and2] = ACTIONS(1905), - [anon_sym_xor2] = ACTIONS(1905), - [anon_sym_or2] = ACTIONS(1905), - [anon_sym_not_DASHin2] = ACTIONS(1905), - [anon_sym_has2] = ACTIONS(1905), - [anon_sym_not_DASHhas2] = ACTIONS(1905), - [anon_sym_starts_DASHwith2] = ACTIONS(1905), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1905), - [anon_sym_ends_DASHwith2] = ACTIONS(1905), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1905), - [anon_sym_EQ_EQ2] = ACTIONS(1905), - [anon_sym_BANG_EQ2] = ACTIONS(1905), - [anon_sym_LT2] = ACTIONS(1907), - [anon_sym_LT_EQ2] = ACTIONS(1905), - [anon_sym_GT_EQ2] = ACTIONS(1905), - [anon_sym_EQ_TILDE2] = ACTIONS(1905), - [anon_sym_BANG_TILDE2] = ACTIONS(1905), - [anon_sym_like2] = ACTIONS(1905), - [anon_sym_not_DASHlike2] = ACTIONS(1905), - [anon_sym_STAR_STAR2] = ACTIONS(1905), - [anon_sym_PLUS_PLUS2] = ACTIONS(1905), - [anon_sym_SLASH2] = ACTIONS(1907), - [anon_sym_mod2] = ACTIONS(1905), - [anon_sym_SLASH_SLASH2] = ACTIONS(1905), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_bit_DASHshl2] = ACTIONS(1905), - [anon_sym_bit_DASHshr2] = ACTIONS(1905), - [anon_sym_bit_DASHand2] = ACTIONS(1905), - [anon_sym_bit_DASHxor2] = ACTIONS(1905), - [anon_sym_bit_DASHor2] = ACTIONS(1905), - [anon_sym_DOT_DOT2] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1905), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1905), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1905), - [anon_sym_out_GT_GT] = ACTIONS(1905), - [anon_sym_e_GT_GT] = ACTIONS(1905), - [anon_sym_o_GT_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(972)] = { - [sym_comment] = STATE(972), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [STATE(940)] = { + [sym_comment] = STATE(940), + [ts_builtin_sym_end] = ACTIONS(1933), + [anon_sym_in] = ACTIONS(1933), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_GT2] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_STAR2] = ACTIONS(1935), + [anon_sym_and2] = ACTIONS(1933), + [anon_sym_xor2] = ACTIONS(1933), + [anon_sym_or2] = ACTIONS(1933), + [anon_sym_not_DASHin2] = ACTIONS(1933), + [anon_sym_has2] = ACTIONS(1933), + [anon_sym_not_DASHhas2] = ACTIONS(1933), + [anon_sym_starts_DASHwith2] = ACTIONS(1933), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1933), + [anon_sym_ends_DASHwith2] = ACTIONS(1933), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1933), + [anon_sym_EQ_EQ2] = ACTIONS(1933), + [anon_sym_BANG_EQ2] = ACTIONS(1933), + [anon_sym_LT2] = ACTIONS(1935), + [anon_sym_LT_EQ2] = ACTIONS(1933), + [anon_sym_GT_EQ2] = ACTIONS(1933), + [anon_sym_EQ_TILDE2] = ACTIONS(1933), + [anon_sym_BANG_TILDE2] = ACTIONS(1933), + [anon_sym_like2] = ACTIONS(1933), + [anon_sym_not_DASHlike2] = ACTIONS(1933), + [anon_sym_STAR_STAR2] = ACTIONS(1933), + [anon_sym_PLUS_PLUS2] = ACTIONS(1933), + [anon_sym_SLASH2] = ACTIONS(1935), + [anon_sym_mod2] = ACTIONS(1933), + [anon_sym_SLASH_SLASH2] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1935), + [anon_sym_bit_DASHshl2] = ACTIONS(1933), + [anon_sym_bit_DASHshr2] = ACTIONS(1933), + [anon_sym_bit_DASHand2] = ACTIONS(1933), + [anon_sym_bit_DASHxor2] = ACTIONS(1933), + [anon_sym_bit_DASHor2] = ACTIONS(1933), + [anon_sym_DOT_DOT2] = ACTIONS(1935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1933), + [anon_sym_err_GT] = ACTIONS(1935), + [anon_sym_out_GT] = ACTIONS(1935), + [anon_sym_e_GT] = ACTIONS(1935), + [anon_sym_o_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT] = ACTIONS(1935), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(973)] = { - [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(2346), - [anon_sym_in] = ACTIONS(2227), - [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_GT2] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [anon_sym_DOT_DOT2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), - [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), + [STATE(941)] = { + [sym_comment] = STATE(941), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(974)] = { - [sym_comment] = STATE(974), + [STATE(942)] = { + [sym_comment] = STATE(942), [anon_sym_in] = ACTIONS(2660), [sym__newline] = ACTIONS(2660), [anon_sym_SEMI] = ACTIONS(2660), @@ -121712,77 +119735,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2660), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(975)] = { - [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_GT2] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1897), - [anon_sym_STAR2] = ACTIONS(1899), - [anon_sym_and2] = ACTIONS(1897), - [anon_sym_xor2] = ACTIONS(1897), - [anon_sym_or2] = ACTIONS(1897), - [anon_sym_not_DASHin2] = ACTIONS(1897), - [anon_sym_has2] = ACTIONS(1897), - [anon_sym_not_DASHhas2] = ACTIONS(1897), - [anon_sym_starts_DASHwith2] = ACTIONS(1897), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1897), - [anon_sym_ends_DASHwith2] = ACTIONS(1897), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1897), - [anon_sym_EQ_EQ2] = ACTIONS(1897), - [anon_sym_BANG_EQ2] = ACTIONS(1897), - [anon_sym_LT2] = ACTIONS(1899), - [anon_sym_LT_EQ2] = ACTIONS(1897), - [anon_sym_GT_EQ2] = ACTIONS(1897), - [anon_sym_EQ_TILDE2] = ACTIONS(1897), - [anon_sym_BANG_TILDE2] = ACTIONS(1897), - [anon_sym_like2] = ACTIONS(1897), - [anon_sym_not_DASHlike2] = ACTIONS(1897), - [anon_sym_STAR_STAR2] = ACTIONS(1897), - [anon_sym_PLUS_PLUS2] = ACTIONS(1897), - [anon_sym_SLASH2] = ACTIONS(1899), - [anon_sym_mod2] = ACTIONS(1897), - [anon_sym_SLASH_SLASH2] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_bit_DASHshl2] = ACTIONS(1897), - [anon_sym_bit_DASHshr2] = ACTIONS(1897), - [anon_sym_bit_DASHand2] = ACTIONS(1897), - [anon_sym_bit_DASHxor2] = ACTIONS(1897), - [anon_sym_bit_DASHor2] = ACTIONS(1897), - [anon_sym_DOT_DOT2] = ACTIONS(1899), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [STATE(943)] = { + [sym_comment] = STATE(943), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(976)] = { - [sym_comment] = STATE(976), + [STATE(944)] = { + [sym_comment] = STATE(944), [anon_sym_in] = ACTIONS(2664), [sym__newline] = ACTIONS(2664), [anon_sym_SEMI] = ACTIONS(2664), @@ -121850,77 +119873,215 @@ 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(977)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expression_parenthesized] = STATE(4659), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2191), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(945)] = { + [sym_comment] = STATE(945), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(978)] = { - [sym_comment] = STATE(978), + [STATE(946)] = { + [sym_comment] = STATE(946), + [anon_sym_in] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_GT2] = ACTIONS(1923), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_STAR2] = ACTIONS(1923), + [anon_sym_and2] = ACTIONS(1921), + [anon_sym_xor2] = ACTIONS(1921), + [anon_sym_or2] = ACTIONS(1921), + [anon_sym_not_DASHin2] = ACTIONS(1921), + [anon_sym_has2] = ACTIONS(1921), + [anon_sym_not_DASHhas2] = ACTIONS(1921), + [anon_sym_starts_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), + [anon_sym_ends_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), + [anon_sym_EQ_EQ2] = ACTIONS(1921), + [anon_sym_BANG_EQ2] = ACTIONS(1921), + [anon_sym_LT2] = ACTIONS(1923), + [anon_sym_LT_EQ2] = ACTIONS(1921), + [anon_sym_GT_EQ2] = ACTIONS(1921), + [anon_sym_EQ_TILDE2] = ACTIONS(1921), + [anon_sym_BANG_TILDE2] = ACTIONS(1921), + [anon_sym_like2] = ACTIONS(1921), + [anon_sym_not_DASHlike2] = ACTIONS(1921), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_STAR_STAR2] = ACTIONS(1921), + [anon_sym_PLUS_PLUS2] = ACTIONS(1921), + [anon_sym_SLASH2] = ACTIONS(1923), + [anon_sym_mod2] = ACTIONS(1921), + [anon_sym_SLASH_SLASH2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1923), + [anon_sym_bit_DASHshl2] = ACTIONS(1921), + [anon_sym_bit_DASHshr2] = ACTIONS(1921), + [anon_sym_bit_DASHand2] = ACTIONS(1921), + [anon_sym_bit_DASHxor2] = ACTIONS(1921), + [anon_sym_bit_DASHor2] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1923), + [anon_sym_out_GT] = ACTIONS(1923), + [anon_sym_e_GT] = ACTIONS(1923), + [anon_sym_o_GT] = ACTIONS(1923), + [anon_sym_err_PLUSout_GT] = ACTIONS(1923), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), + [anon_sym_o_PLUSe_GT] = ACTIONS(1923), + [anon_sym_e_PLUSo_GT] = ACTIONS(1923), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [sym__unquoted_pattern] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(947)] = { + [sym_comment] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [sym__newline] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_err_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_GT_PIPE] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1600), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_STAR2] = ACTIONS(1600), + [anon_sym_and2] = ACTIONS(1602), + [anon_sym_xor2] = ACTIONS(1602), + [anon_sym_or2] = ACTIONS(1602), + [anon_sym_not_DASHin2] = ACTIONS(1602), + [anon_sym_has2] = ACTIONS(1602), + [anon_sym_not_DASHhas2] = ACTIONS(1602), + [anon_sym_starts_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), + [anon_sym_ends_DASHwith2] = ACTIONS(1602), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), + [anon_sym_EQ_EQ2] = ACTIONS(1602), + [anon_sym_BANG_EQ2] = ACTIONS(1602), + [anon_sym_LT2] = ACTIONS(1600), + [anon_sym_LT_EQ2] = ACTIONS(1602), + [anon_sym_GT_EQ2] = ACTIONS(1602), + [anon_sym_EQ_TILDE2] = ACTIONS(1602), + [anon_sym_BANG_TILDE2] = ACTIONS(1602), + [anon_sym_like2] = ACTIONS(1602), + [anon_sym_not_DASHlike2] = ACTIONS(1602), + [anon_sym_STAR_STAR2] = ACTIONS(1602), + [anon_sym_PLUS_PLUS2] = ACTIONS(1602), + [anon_sym_SLASH2] = ACTIONS(1600), + [anon_sym_mod2] = ACTIONS(1602), + [anon_sym_SLASH_SLASH2] = ACTIONS(1602), + [anon_sym_PLUS2] = ACTIONS(1600), + [anon_sym_bit_DASHshl2] = ACTIONS(1602), + [anon_sym_bit_DASHshr2] = ACTIONS(1602), + [anon_sym_bit_DASHand2] = ACTIONS(1602), + [anon_sym_bit_DASHxor2] = ACTIONS(1602), + [anon_sym_bit_DASHor2] = ACTIONS(1602), + [anon_sym_DOT_DOT2] = ACTIONS(1600), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1600), + [anon_sym_out_GT] = ACTIONS(1600), + [anon_sym_e_GT] = ACTIONS(1600), + [anon_sym_o_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT] = ACTIONS(1600), + [anon_sym_err_GT_GT] = ACTIONS(1602), + [anon_sym_out_GT_GT] = ACTIONS(1602), + [anon_sym_e_GT_GT] = ACTIONS(1602), + [anon_sym_o_GT_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(948)] = { + [sym_comment] = STATE(948), [anon_sym_in] = ACTIONS(2668), [sym__newline] = ACTIONS(2668), [anon_sym_SEMI] = ACTIONS(2668), @@ -121988,2195 +120149,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2668), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(979)] = { - [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2584), - [sym__newline] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_err_GT_PIPE] = ACTIONS(2584), - [anon_sym_out_GT_PIPE] = ACTIONS(2584), - [anon_sym_e_GT_PIPE] = ACTIONS(2584), - [anon_sym_o_GT_PIPE] = ACTIONS(2584), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), - [anon_sym_RPAREN] = ACTIONS(2584), - [anon_sym_GT2] = ACTIONS(2586), - [anon_sym_DASH2] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_EQ_GT] = ACTIONS(2584), - [anon_sym_STAR2] = ACTIONS(2586), - [anon_sym_and2] = ACTIONS(2584), - [anon_sym_xor2] = ACTIONS(2584), - [anon_sym_or2] = ACTIONS(2584), - [anon_sym_not_DASHin2] = ACTIONS(2584), - [anon_sym_has2] = ACTIONS(2584), - [anon_sym_not_DASHhas2] = ACTIONS(2584), - [anon_sym_starts_DASHwith2] = ACTIONS(2584), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), - [anon_sym_ends_DASHwith2] = ACTIONS(2584), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), - [anon_sym_EQ_EQ2] = ACTIONS(2584), - [anon_sym_BANG_EQ2] = ACTIONS(2584), - [anon_sym_LT2] = ACTIONS(2586), - [anon_sym_LT_EQ2] = ACTIONS(2584), - [anon_sym_GT_EQ2] = ACTIONS(2584), - [anon_sym_EQ_TILDE2] = ACTIONS(2584), - [anon_sym_BANG_TILDE2] = ACTIONS(2584), - [anon_sym_like2] = ACTIONS(2584), - [anon_sym_not_DASHlike2] = ACTIONS(2584), - [anon_sym_STAR_STAR2] = ACTIONS(2584), - [anon_sym_PLUS_PLUS2] = ACTIONS(2584), - [anon_sym_SLASH2] = ACTIONS(2586), - [anon_sym_mod2] = ACTIONS(2584), - [anon_sym_SLASH_SLASH2] = ACTIONS(2584), - [anon_sym_PLUS2] = ACTIONS(2586), - [anon_sym_bit_DASHshl2] = ACTIONS(2584), - [anon_sym_bit_DASHshr2] = ACTIONS(2584), - [anon_sym_bit_DASHand2] = ACTIONS(2584), - [anon_sym_bit_DASHxor2] = ACTIONS(2584), - [anon_sym_bit_DASHor2] = ACTIONS(2584), - [anon_sym_err_GT] = ACTIONS(2586), - [anon_sym_out_GT] = ACTIONS(2586), - [anon_sym_e_GT] = ACTIONS(2586), - [anon_sym_o_GT] = ACTIONS(2586), - [anon_sym_err_PLUSout_GT] = ACTIONS(2586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), - [anon_sym_o_PLUSe_GT] = ACTIONS(2586), - [anon_sym_e_PLUSo_GT] = ACTIONS(2586), - [anon_sym_err_GT_GT] = ACTIONS(2584), - [anon_sym_out_GT_GT] = ACTIONS(2584), - [anon_sym_e_GT_GT] = ACTIONS(2584), - [anon_sym_o_GT_GT] = ACTIONS(2584), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(980)] = { - [sym_comment] = STATE(980), - [anon_sym_in] = ACTIONS(2590), - [sym__newline] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_err_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_GT_PIPE] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), - [anon_sym_RPAREN] = ACTIONS(2590), - [anon_sym_GT2] = ACTIONS(2592), - [anon_sym_DASH2] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_EQ_GT] = ACTIONS(2590), - [anon_sym_STAR2] = ACTIONS(2592), - [anon_sym_and2] = ACTIONS(2590), - [anon_sym_xor2] = ACTIONS(2590), - [anon_sym_or2] = ACTIONS(2590), - [anon_sym_not_DASHin2] = ACTIONS(2590), - [anon_sym_has2] = ACTIONS(2590), - [anon_sym_not_DASHhas2] = ACTIONS(2590), - [anon_sym_starts_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), - [anon_sym_ends_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), - [anon_sym_EQ_EQ2] = ACTIONS(2590), - [anon_sym_BANG_EQ2] = ACTIONS(2590), - [anon_sym_LT2] = ACTIONS(2592), - [anon_sym_LT_EQ2] = ACTIONS(2590), - [anon_sym_GT_EQ2] = ACTIONS(2590), - [anon_sym_EQ_TILDE2] = ACTIONS(2590), - [anon_sym_BANG_TILDE2] = ACTIONS(2590), - [anon_sym_like2] = ACTIONS(2590), - [anon_sym_not_DASHlike2] = ACTIONS(2590), - [anon_sym_STAR_STAR2] = ACTIONS(2590), - [anon_sym_PLUS_PLUS2] = ACTIONS(2590), - [anon_sym_SLASH2] = ACTIONS(2592), - [anon_sym_mod2] = ACTIONS(2590), - [anon_sym_SLASH_SLASH2] = ACTIONS(2590), - [anon_sym_PLUS2] = ACTIONS(2592), - [anon_sym_bit_DASHshl2] = ACTIONS(2590), - [anon_sym_bit_DASHshr2] = ACTIONS(2590), - [anon_sym_bit_DASHand2] = ACTIONS(2590), - [anon_sym_bit_DASHxor2] = ACTIONS(2590), - [anon_sym_bit_DASHor2] = ACTIONS(2590), - [anon_sym_err_GT] = ACTIONS(2592), - [anon_sym_out_GT] = ACTIONS(2592), - [anon_sym_e_GT] = ACTIONS(2592), - [anon_sym_o_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT] = ACTIONS(2592), - [anon_sym_err_GT_GT] = ACTIONS(2590), - [anon_sym_out_GT_GT] = ACTIONS(2590), - [anon_sym_e_GT_GT] = ACTIONS(2590), - [anon_sym_o_GT_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(981)] = { - [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1714), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_DOT_DOT2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [STATE(949)] = { + [sym_comment] = STATE(949), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(2672), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(2674), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(982)] = { - [sym_comment] = STATE(982), - [ts_builtin_sym_end] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [sym__newline] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_err_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_GT_PIPE] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), - [anon_sym_GT2] = ACTIONS(2110), - [anon_sym_DASH2] = ACTIONS(2108), - [anon_sym_STAR2] = ACTIONS(2110), - [anon_sym_and2] = ACTIONS(2108), - [anon_sym_xor2] = ACTIONS(2108), - [anon_sym_or2] = ACTIONS(2108), - [anon_sym_not_DASHin2] = ACTIONS(2108), - [anon_sym_has2] = ACTIONS(2108), - [anon_sym_not_DASHhas2] = ACTIONS(2108), - [anon_sym_starts_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), - [anon_sym_ends_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), - [anon_sym_EQ_EQ2] = ACTIONS(2108), - [anon_sym_BANG_EQ2] = ACTIONS(2108), - [anon_sym_LT2] = ACTIONS(2110), - [anon_sym_LT_EQ2] = ACTIONS(2108), - [anon_sym_GT_EQ2] = ACTIONS(2108), - [anon_sym_EQ_TILDE2] = ACTIONS(2108), - [anon_sym_BANG_TILDE2] = ACTIONS(2108), - [anon_sym_like2] = ACTIONS(2108), - [anon_sym_not_DASHlike2] = ACTIONS(2108), - [anon_sym_STAR_STAR2] = ACTIONS(2108), - [anon_sym_PLUS_PLUS2] = ACTIONS(2108), - [anon_sym_SLASH2] = ACTIONS(2110), - [anon_sym_mod2] = ACTIONS(2108), - [anon_sym_SLASH_SLASH2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(2110), - [anon_sym_bit_DASHshl2] = ACTIONS(2108), - [anon_sym_bit_DASHshr2] = ACTIONS(2108), - [anon_sym_bit_DASHand2] = ACTIONS(2108), - [anon_sym_bit_DASHxor2] = ACTIONS(2108), - [anon_sym_bit_DASHor2] = ACTIONS(2108), - [anon_sym_DOT_DOT2] = ACTIONS(2672), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2674), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2674), - [anon_sym_err_GT] = ACTIONS(2110), - [anon_sym_out_GT] = ACTIONS(2110), - [anon_sym_e_GT] = ACTIONS(2110), - [anon_sym_o_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT] = ACTIONS(2110), - [anon_sym_err_GT_GT] = ACTIONS(2108), - [anon_sym_out_GT_GT] = ACTIONS(2108), - [anon_sym_e_GT_GT] = ACTIONS(2108), - [anon_sym_o_GT_GT] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), + [STATE(950)] = { + [sym_comment] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [aux_sym__immediate_decimal_token5] = ACTIONS(2502), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [sym__unquoted_pattern] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(983)] = { - [sym_comment] = STATE(983), - [anon_sym_export] = ACTIONS(2231), - [anon_sym_alias] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [aux_sym_cmd_identifier_token1] = ACTIONS(2231), - [anon_sym_def] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_export_DASHenv] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_catch] = ACTIONS(2233), - [anon_sym_finally] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [aux_sym_cmd_identifier_token3] = ACTIONS(2233), - [aux_sym_cmd_identifier_token4] = ACTIONS(2233), - [aux_sym_cmd_identifier_token5] = ACTIONS(2233), - [sym__newline] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_DASH2] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2231), - [anon_sym_where] = ACTIONS(2233), - [aux_sym_expr_unary_token1] = ACTIONS(2233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_LT] = ACTIONS(2233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2231), - [aux_sym__val_number_decimal_token2] = ACTIONS(2233), - [aux_sym__val_number_decimal_token3] = ACTIONS(2233), - [aux_sym__val_number_decimal_token4] = ACTIONS(2233), - [aux_sym__val_number_token1] = ACTIONS(2233), - [aux_sym__val_number_token2] = ACTIONS(2233), - [aux_sym__val_number_token3] = ACTIONS(2233), - [anon_sym_0b] = ACTIONS(2231), - [anon_sym_0o] = ACTIONS(2231), - [anon_sym_0x] = ACTIONS(2231), - [sym_val_date] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), + [STATE(951)] = { + [aux_sym__repeat_newline] = STATE(1124), + [sym__expression_parenthesized] = STATE(4668), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_comment] = STATE(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [sym__newline] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(984)] = { - [sym_comment] = STATE(984), - [anon_sym_export] = ACTIONS(2676), - [anon_sym_alias] = ACTIONS(2678), - [anon_sym_let] = ACTIONS(2678), - [anon_sym_mut] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [aux_sym_cmd_identifier_token1] = ACTIONS(2676), - [anon_sym_def] = ACTIONS(2678), - [anon_sym_use] = ACTIONS(2678), - [anon_sym_export_DASHenv] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_loop] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_catch] = ACTIONS(2678), - [anon_sym_finally] = ACTIONS(2678), - [anon_sym_match] = ACTIONS(2678), + [STATE(952)] = { + [sym_comment] = STATE(952), + [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_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_LPAREN2] = ACTIONS(2108), + [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), + [sym__unquoted_pattern] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(953)] = { + [sym_comment] = STATE(953), [anon_sym_in] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2678), - [anon_sym_false] = ACTIONS(2678), - [anon_sym_null] = ACTIONS(2678), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [sym__newline] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_DOLLAR] = 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(2678), - [anon_sym_DOT_DOT] = ACTIONS(2676), - [anon_sym_where] = ACTIONS(2678), - [aux_sym_expr_unary_token1] = ACTIONS(2678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [aux_sym__val_number_decimal_token1] = ACTIONS(2676), - [aux_sym__val_number_decimal_token2] = ACTIONS(2678), - [aux_sym__val_number_decimal_token3] = ACTIONS(2678), - [aux_sym__val_number_decimal_token4] = ACTIONS(2678), - [aux_sym__val_number_token1] = ACTIONS(2678), - [aux_sym__val_number_token2] = ACTIONS(2678), - [aux_sym__val_number_token3] = ACTIONS(2678), - [anon_sym_0b] = ACTIONS(2676), - [anon_sym_0o] = ACTIONS(2676), - [anon_sym_0x] = ACTIONS(2676), - [sym_val_date] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2678), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2678), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2678), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym_EQ_GT] = 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(985)] = { - [sym_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), + [STATE(954)] = { + [sym_comment] = STATE(954), + [ts_builtin_sym_end] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), [anon_sym_DOT_DOT2] = ACTIONS(2680), [anon_sym_DOT_DOT_EQ2] = ACTIONS(2682), [anon_sym_DOT_DOT_LT2] = ACTIONS(2682), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(1090), - [sym__expression_parenthesized] = STATE(4661), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2191), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(987)] = { - [sym_comment] = STATE(987), - [ts_builtin_sym_end] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2227), - [sym__newline] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_err_GT_PIPE] = ACTIONS(2227), - [anon_sym_out_GT_PIPE] = ACTIONS(2227), - [anon_sym_e_GT_PIPE] = ACTIONS(2227), - [anon_sym_o_GT_PIPE] = ACTIONS(2227), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2227), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2227), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2227), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2227), - [anon_sym_GT2] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2227), - [anon_sym_STAR2] = ACTIONS(2229), - [anon_sym_and2] = ACTIONS(2227), - [anon_sym_xor2] = ACTIONS(2227), - [anon_sym_or2] = ACTIONS(2227), - [anon_sym_not_DASHin2] = ACTIONS(2227), - [anon_sym_has2] = ACTIONS(2227), - [anon_sym_not_DASHhas2] = ACTIONS(2227), - [anon_sym_starts_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), - [anon_sym_ends_DASHwith2] = ACTIONS(2227), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), - [anon_sym_EQ_EQ2] = ACTIONS(2227), - [anon_sym_BANG_EQ2] = ACTIONS(2227), - [anon_sym_LT2] = ACTIONS(2229), - [anon_sym_LT_EQ2] = ACTIONS(2227), - [anon_sym_GT_EQ2] = ACTIONS(2227), - [anon_sym_EQ_TILDE2] = ACTIONS(2227), - [anon_sym_BANG_TILDE2] = ACTIONS(2227), - [anon_sym_like2] = ACTIONS(2227), - [anon_sym_not_DASHlike2] = ACTIONS(2227), - [anon_sym_STAR_STAR2] = ACTIONS(2227), - [anon_sym_PLUS_PLUS2] = ACTIONS(2227), - [anon_sym_SLASH2] = ACTIONS(2229), - [anon_sym_mod2] = ACTIONS(2227), - [anon_sym_SLASH_SLASH2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_bit_DASHshl2] = ACTIONS(2227), - [anon_sym_bit_DASHshr2] = ACTIONS(2227), - [anon_sym_bit_DASHand2] = ACTIONS(2227), - [anon_sym_bit_DASHxor2] = ACTIONS(2227), - [anon_sym_bit_DASHor2] = ACTIONS(2227), - [anon_sym_DOT_DOT2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2227), - [anon_sym_out_GT_GT] = ACTIONS(2227), - [anon_sym_e_GT_GT] = ACTIONS(2227), - [anon_sym_o_GT_GT] = ACTIONS(2227), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2227), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2227), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2227), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(988)] = { - [sym_comment] = STATE(988), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1108), - [sym_comment] = STATE(989), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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(990)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(990), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1023), - [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2690), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2688), - [anon_sym_PLUS_PLUS2] = ACTIONS(2688), - [anon_sym_SLASH2] = ACTIONS(2690), - [anon_sym_mod2] = ACTIONS(2688), - [anon_sym_SLASH_SLASH2] = ACTIONS(2688), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(1024), - [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(996)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), - [sym_comment] = STATE(996), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1025), - [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1026), - [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(1028), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1029), - [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1012), - [sym_comment] = STATE(1005), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [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(1006)] = { - [aux_sym__repeat_newline] = STATE(1030), - [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [STATE(955)] = { + [sym_comment] = STATE(955), + [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(1007)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(956)] = { + [sym_comment] = STATE(956), + [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_RBRACE] = 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_LPAREN2] = ACTIONS(2684), + [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), + [sym__unquoted_pattern] = ACTIONS(2686), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1031), - [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2694), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2692), - [anon_sym_PLUS_PLUS2] = ACTIONS(2692), - [anon_sym_SLASH2] = ACTIONS(2694), - [anon_sym_mod2] = ACTIONS(2692), - [anon_sym_SLASH_SLASH2] = ACTIONS(2692), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(957)] = { + [sym_comment] = STATE(957), + [ts_builtin_sym_end] = ACTIONS(2186), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_err_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_GT_PIPE] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_DOT_DOT2] = ACTIONS(2688), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2690), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2690), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2186), + [anon_sym_out_GT_GT] = ACTIONS(2186), + [anon_sym_e_GT_GT] = ACTIONS(2186), + [anon_sym_o_GT_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1009)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), - [sym_comment] = STATE(1009), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [STATE(958)] = { + [sym_comment] = STATE(958), + [ts_builtin_sym_end] = ACTIONS(2114), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_DOT_DOT2] = ACTIONS(2692), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2694), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2694), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1032), - [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [STATE(959)] = { + [sym_comment] = STATE(959), + [anon_sym_in] = ACTIONS(1909), + [sym__newline] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_err_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_GT_PIPE] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_GT2] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_EQ_GT] = ACTIONS(1909), + [anon_sym_STAR2] = ACTIONS(1911), + [anon_sym_and2] = ACTIONS(1909), + [anon_sym_xor2] = ACTIONS(1909), + [anon_sym_or2] = ACTIONS(1909), + [anon_sym_not_DASHin2] = ACTIONS(1909), + [anon_sym_has2] = ACTIONS(1909), + [anon_sym_not_DASHhas2] = ACTIONS(1909), + [anon_sym_starts_DASHwith2] = ACTIONS(1909), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1909), + [anon_sym_ends_DASHwith2] = ACTIONS(1909), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1909), + [anon_sym_EQ_EQ2] = ACTIONS(1909), + [anon_sym_BANG_EQ2] = ACTIONS(1909), + [anon_sym_LT2] = ACTIONS(1911), + [anon_sym_LT_EQ2] = ACTIONS(1909), + [anon_sym_GT_EQ2] = ACTIONS(1909), + [anon_sym_EQ_TILDE2] = ACTIONS(1909), + [anon_sym_BANG_TILDE2] = ACTIONS(1909), + [anon_sym_like2] = ACTIONS(1909), + [anon_sym_not_DASHlike2] = ACTIONS(1909), + [anon_sym_STAR_STAR2] = ACTIONS(1909), + [anon_sym_PLUS_PLUS2] = ACTIONS(1909), + [anon_sym_SLASH2] = ACTIONS(1911), + [anon_sym_mod2] = ACTIONS(1909), + [anon_sym_SLASH_SLASH2] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(1911), + [anon_sym_bit_DASHshl2] = ACTIONS(1909), + [anon_sym_bit_DASHshr2] = ACTIONS(1909), + [anon_sym_bit_DASHand2] = ACTIONS(1909), + [anon_sym_bit_DASHxor2] = ACTIONS(1909), + [anon_sym_bit_DASHor2] = ACTIONS(1909), + [anon_sym_err_GT] = ACTIONS(1911), + [anon_sym_out_GT] = ACTIONS(1911), + [anon_sym_e_GT] = ACTIONS(1911), + [anon_sym_o_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT] = ACTIONS(1911), + [anon_sym_err_GT_GT] = ACTIONS(1909), + [anon_sym_out_GT_GT] = ACTIONS(1909), + [anon_sym_e_GT_GT] = ACTIONS(1909), + [anon_sym_o_GT_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1011), + [STATE(960)] = { + [sym_comment] = STATE(960), [anon_sym_in] = ACTIONS(2696), [sym__newline] = ACTIONS(2696), [anon_sym_SEMI] = ACTIONS(2696), @@ -124192,7 +120925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2696), [anon_sym_GT2] = ACTIONS(2698), [anon_sym_DASH2] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), [anon_sym_STAR2] = ACTIONS(2698), [anon_sym_and2] = ACTIONS(2696), [anon_sym_xor2] = ACTIONS(2696), @@ -124213,6 +120946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2696), [anon_sym_like2] = ACTIONS(2696), [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2118), [anon_sym_STAR_STAR2] = ACTIONS(2696), [anon_sym_PLUS_PLUS2] = ACTIONS(2696), [anon_sym_SLASH2] = ACTIONS(2698), @@ -124240,895 +120974,1667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [sym__unquoted_pattern] = ACTIONS(2124), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1012)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1012), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(961)] = { + [sym_comment] = STATE(961), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), + [sym__unquoted_pattern] = ACTIONS(2124), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [STATE(962)] = { + [sym_comment] = STATE(962), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = 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_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1014), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(963)] = { + [sym_comment] = STATE(963), + [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_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_EQ_GT] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [STATE(964)] = { + [sym_comment] = STATE(964), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1016)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1016), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(965)] = { + [sym_comment] = STATE(965), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [STATE(966)] = { + [sym_comment] = STATE(966), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(967)] = { + [sym_comment] = STATE(967), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_err_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_GT_PIPE] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), - [anon_sym_LT2] = ACTIONS(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), - [anon_sym_SLASH2] = ACTIONS(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), - [anon_sym_err_GT_GT] = ACTIONS(2482), - [anon_sym_out_GT_GT] = ACTIONS(2482), - [anon_sym_e_GT_GT] = ACTIONS(2482), - [anon_sym_o_GT_GT] = ACTIONS(2482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [STATE(968)] = { + [sym_comment] = STATE(968), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(969)] = { + [sym_comment] = STATE(969), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_EQ_GT] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym__match_pattern_expression] = STATE(4454), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list_body] = STATE(4856), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_rest] = STATE(5273), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4065), - [sym_val_range] = STATE(4911), - [sym__val_range] = STATE(5274), - [sym_val_nothing] = STATE(4913), - [sym_val_bool] = STATE(4509), - [sym_val_variable] = STATE(4066), - [sym_val_number] = STATE(4913), - [sym__val_number_decimal] = STATE(3770), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4913), - [sym_val_filesize] = STATE(4913), - [sym_val_binary] = STATE(4913), - [sym_val_string] = STATE(4913), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_list] = STATE(5281), - [sym__table_head] = STATE(3973), - [sym_val_table] = STATE(4913), - [sym__unquoted_in_list] = STATE(4454), - [sym__unquoted_anonymous_prefix] = STATE(5274), - [sym_comment] = STATE(1021), - [aux_sym__types_body_repeat1] = STATE(1415), - [aux_sym_parameter_repeat2] = STATE(4219), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [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), + [STATE(970)] = { + [sym_comment] = STATE(970), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(971)] = { + [sym_comment] = STATE(971), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(972)] = { + [sym_comment] = STATE(972), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(973)] = { + [sym_comment] = STATE(973), + [anon_sym_in] = ACTIONS(2700), [sym__newline] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [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(2712), - [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), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2702), + [anon_sym_DASH2] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_EQ_GT] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2702), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2700), + [anon_sym_has2] = ACTIONS(2700), + [anon_sym_not_DASHhas2] = ACTIONS(2700), + [anon_sym_starts_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), + [anon_sym_ends_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), + [anon_sym_EQ_EQ2] = ACTIONS(2700), + [anon_sym_BANG_EQ2] = ACTIONS(2700), + [anon_sym_LT2] = ACTIONS(2702), + [anon_sym_LT_EQ2] = ACTIONS(2700), + [anon_sym_GT_EQ2] = ACTIONS(2700), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2700), + [anon_sym_PLUS_PLUS2] = ACTIONS(2700), + [anon_sym_SLASH2] = ACTIONS(2702), + [anon_sym_mod2] = ACTIONS(2700), + [anon_sym_SLASH_SLASH2] = ACTIONS(2700), + [anon_sym_PLUS2] = ACTIONS(2702), + [anon_sym_bit_DASHshl2] = ACTIONS(2700), + [anon_sym_bit_DASHshr2] = ACTIONS(2700), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(974)] = { + [sym_comment] = STATE(974), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(975)] = { + [sym_comment] = STATE(975), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(976)] = { + [sym_comment] = STATE(976), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1025)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1025), + [STATE(977)] = { + [sym_comment] = STATE(977), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(978)] = { + [sym_comment] = STATE(978), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(979)] = { + [sym_comment] = STATE(979), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_err_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_GT_PIPE] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_EQ_GT] = ACTIONS(2265), + [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(2267), + [anon_sym_out_GT] = ACTIONS(2267), + [anon_sym_e_GT] = ACTIONS(2267), + [anon_sym_o_GT] = ACTIONS(2267), + [anon_sym_err_PLUSout_GT] = ACTIONS(2267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), + [anon_sym_o_PLUSe_GT] = ACTIONS(2267), + [anon_sym_e_PLUSo_GT] = ACTIONS(2267), + [anon_sym_err_GT_GT] = ACTIONS(2265), + [anon_sym_out_GT_GT] = ACTIONS(2265), + [anon_sym_e_GT_GT] = ACTIONS(2265), + [anon_sym_o_GT_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(980)] = { + [sym_comment] = STATE(980), + [anon_sym_in] = ACTIONS(2704), + [sym__newline] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_err_GT_PIPE] = ACTIONS(2704), + [anon_sym_out_GT_PIPE] = ACTIONS(2704), + [anon_sym_e_GT_PIPE] = ACTIONS(2704), + [anon_sym_o_GT_PIPE] = ACTIONS(2704), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2704), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2704), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2704), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2704), + [anon_sym_RPAREN] = ACTIONS(2704), + [anon_sym_GT2] = ACTIONS(2706), + [anon_sym_DASH2] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_EQ_GT] = ACTIONS(2704), + [anon_sym_STAR2] = ACTIONS(2706), + [anon_sym_and2] = ACTIONS(2704), + [anon_sym_xor2] = ACTIONS(2704), + [anon_sym_or2] = ACTIONS(2704), + [anon_sym_not_DASHin2] = ACTIONS(2704), + [anon_sym_has2] = ACTIONS(2704), + [anon_sym_not_DASHhas2] = ACTIONS(2704), + [anon_sym_starts_DASHwith2] = ACTIONS(2704), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2704), + [anon_sym_ends_DASHwith2] = ACTIONS(2704), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2704), + [anon_sym_EQ_EQ2] = ACTIONS(2704), + [anon_sym_BANG_EQ2] = ACTIONS(2704), + [anon_sym_LT2] = ACTIONS(2706), + [anon_sym_LT_EQ2] = ACTIONS(2704), + [anon_sym_GT_EQ2] = ACTIONS(2704), + [anon_sym_EQ_TILDE2] = ACTIONS(2704), + [anon_sym_BANG_TILDE2] = ACTIONS(2704), + [anon_sym_like2] = ACTIONS(2704), + [anon_sym_not_DASHlike2] = ACTIONS(2704), + [anon_sym_STAR_STAR2] = ACTIONS(2704), + [anon_sym_PLUS_PLUS2] = ACTIONS(2704), + [anon_sym_SLASH2] = ACTIONS(2706), + [anon_sym_mod2] = ACTIONS(2704), + [anon_sym_SLASH_SLASH2] = ACTIONS(2704), + [anon_sym_PLUS2] = ACTIONS(2706), + [anon_sym_bit_DASHshl2] = ACTIONS(2704), + [anon_sym_bit_DASHshr2] = ACTIONS(2704), + [anon_sym_bit_DASHand2] = ACTIONS(2704), + [anon_sym_bit_DASHxor2] = ACTIONS(2704), + [anon_sym_bit_DASHor2] = ACTIONS(2704), + [anon_sym_err_GT] = ACTIONS(2706), + [anon_sym_out_GT] = ACTIONS(2706), + [anon_sym_e_GT] = ACTIONS(2706), + [anon_sym_o_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT] = ACTIONS(2706), + [anon_sym_err_GT_GT] = ACTIONS(2704), + [anon_sym_out_GT_GT] = ACTIONS(2704), + [anon_sym_e_GT_GT] = ACTIONS(2704), + [anon_sym_o_GT_GT] = ACTIONS(2704), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2704), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2704), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2704), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(981)] = { + [sym_comment] = STATE(981), + [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_GT2] = ACTIONS(1671), + [anon_sym_DASH2] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1671), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [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(982)] = { + [sym_comment] = STATE(982), + [ts_builtin_sym_end] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [aux_sym__immediate_decimal_token5] = ACTIONS(2708), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(983)] = { + [sym_comment] = STATE(983), + [anon_sym_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_STAR2] = ACTIONS(2698), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2696), + [anon_sym_PLUS_PLUS2] = ACTIONS(2696), + [anon_sym_SLASH2] = ACTIONS(2698), + [anon_sym_mod2] = ACTIONS(2696), + [anon_sym_SLASH_SLASH2] = ACTIONS(2696), + [anon_sym_PLUS2] = ACTIONS(2698), + [anon_sym_bit_DASHshl2] = ACTIONS(2696), + [anon_sym_bit_DASHshr2] = ACTIONS(2696), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(984)] = { + [sym_comment] = STATE(984), + [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_RBRACE] = ACTIONS(2710), + [anon_sym_EQ_GT] = 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(985)] = { + [sym_comment] = STATE(985), [anon_sym_in] = ACTIONS(2714), [sym__newline] = ACTIONS(2714), [anon_sym_SEMI] = ACTIONS(2714), @@ -125145,6 +122651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2716), [anon_sym_DASH2] = ACTIONS(2714), [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_EQ_GT] = ACTIONS(2714), [anon_sym_STAR2] = ACTIONS(2716), [anon_sym_and2] = ACTIONS(2714), [anon_sym_xor2] = ACTIONS(2714), @@ -125194,349 +122702,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1026)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1026), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(986)] = { + [sym_comment] = STATE(986), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_EQ_GT] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym__match_pattern_expression] = STATE(4454), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list_body] = STATE(4682), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_rest] = STATE(5214), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4065), - [sym_val_range] = STATE(4911), - [sym__val_range] = STATE(5274), - [sym_val_nothing] = STATE(4913), - [sym_val_bool] = STATE(4509), - [sym_val_variable] = STATE(4066), - [sym_val_number] = STATE(4913), - [sym__val_number_decimal] = STATE(3770), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4913), - [sym_val_filesize] = STATE(4913), - [sym_val_binary] = STATE(4913), - [sym_val_string] = STATE(4913), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_list] = STATE(5281), - [sym__table_head] = STATE(3937), - [sym_val_table] = STATE(4913), - [sym__unquoted_in_list] = STATE(4454), - [sym__unquoted_anonymous_prefix] = STATE(5274), - [sym_comment] = STATE(1027), - [aux_sym__types_body_repeat1] = STATE(1415), - [aux_sym_parameter_repeat2] = STATE(4219), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [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(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [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(2712), - [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(1028)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1028), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(987)] = { + [sym_comment] = STATE(987), + [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_RBRACE] = 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_LPAREN2] = ACTIONS(2718), + [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), + [sym__unquoted_pattern] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), + [STATE(988)] = { + [aux_sym__repeat_newline] = STATE(1078), + [sym__expression_parenthesized] = STATE(4658), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_comment] = STATE(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [sym__newline] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(989)] = { + [sym_comment] = STATE(989), + [anon_sym_in] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_GT2] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_STAR2] = ACTIONS(1903), + [anon_sym_and2] = ACTIONS(1901), + [anon_sym_xor2] = ACTIONS(1901), + [anon_sym_or2] = ACTIONS(1901), + [anon_sym_not_DASHin2] = ACTIONS(1901), + [anon_sym_has2] = ACTIONS(1901), + [anon_sym_not_DASHhas2] = ACTIONS(1901), + [anon_sym_starts_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1901), + [anon_sym_ends_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1901), + [anon_sym_EQ_EQ2] = ACTIONS(1901), + [anon_sym_BANG_EQ2] = ACTIONS(1901), + [anon_sym_LT2] = ACTIONS(1903), + [anon_sym_LT_EQ2] = ACTIONS(1901), + [anon_sym_GT_EQ2] = ACTIONS(1901), + [anon_sym_EQ_TILDE2] = ACTIONS(1901), + [anon_sym_BANG_TILDE2] = ACTIONS(1901), + [anon_sym_like2] = ACTIONS(1901), + [anon_sym_not_DASHlike2] = ACTIONS(1901), + [anon_sym_STAR_STAR2] = ACTIONS(1901), + [anon_sym_PLUS_PLUS2] = ACTIONS(1901), + [anon_sym_SLASH2] = ACTIONS(1903), + [anon_sym_mod2] = ACTIONS(1901), + [anon_sym_SLASH_SLASH2] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_bit_DASHshl2] = ACTIONS(1901), + [anon_sym_bit_DASHshr2] = ACTIONS(1901), + [anon_sym_bit_DASHand2] = ACTIONS(1901), + [anon_sym_bit_DASHxor2] = ACTIONS(1901), + [anon_sym_bit_DASHor2] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1031), + [STATE(990)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(990), [anon_sym_in] = ACTIONS(2720), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), @@ -125602,7967 +123046,11963 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(991)] = { + [aux_sym__repeat_newline] = STATE(1147), + [sym_comment] = STATE(991), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1033)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1033), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(992)] = { + [aux_sym__repeat_newline] = STATE(1117), + [sym_comment] = STATE(992), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(993)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(993), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(994)] = { + [sym_comment] = STATE(994), + [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_LPAREN2] = ACTIONS(2108), + [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), + [sym__unquoted_pattern] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(995)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym_comment] = STATE(995), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(996)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(996), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(997)] = { + [aux_sym__repeat_newline] = STATE(1045), + [sym_comment] = STATE(997), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(998)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(998), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(999)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym_comment] = STATE(999), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1000)] = { + [sym_comment] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1258), + [anon_sym_in] = ACTIONS(1258), + [sym__newline] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_err_GT_PIPE] = ACTIONS(1258), + [anon_sym_out_GT_PIPE] = ACTIONS(1258), + [anon_sym_e_GT_PIPE] = ACTIONS(1258), + [anon_sym_o_GT_PIPE] = ACTIONS(1258), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1258), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1258), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1258), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1258), + [anon_sym_GT2] = ACTIONS(1242), + [anon_sym_DASH2] = ACTIONS(1258), + [anon_sym_STAR2] = ACTIONS(1242), + [anon_sym_and2] = ACTIONS(1258), + [anon_sym_xor2] = ACTIONS(1258), + [anon_sym_or2] = ACTIONS(1258), + [anon_sym_not_DASHin2] = ACTIONS(1258), + [anon_sym_has2] = ACTIONS(1258), + [anon_sym_not_DASHhas2] = ACTIONS(1258), + [anon_sym_starts_DASHwith2] = ACTIONS(1258), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1258), + [anon_sym_ends_DASHwith2] = ACTIONS(1258), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1258), + [anon_sym_EQ_EQ2] = ACTIONS(1258), + [anon_sym_BANG_EQ2] = ACTIONS(1258), + [anon_sym_LT2] = ACTIONS(1242), + [anon_sym_LT_EQ2] = ACTIONS(1258), + [anon_sym_GT_EQ2] = ACTIONS(1258), + [anon_sym_EQ_TILDE2] = ACTIONS(1258), + [anon_sym_BANG_TILDE2] = ACTIONS(1258), + [anon_sym_like2] = ACTIONS(1258), + [anon_sym_not_DASHlike2] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR_STAR2] = ACTIONS(1258), + [anon_sym_PLUS_PLUS2] = ACTIONS(1258), + [anon_sym_SLASH2] = ACTIONS(1242), + [anon_sym_mod2] = ACTIONS(1258), + [anon_sym_SLASH_SLASH2] = ACTIONS(1258), + [anon_sym_PLUS2] = ACTIONS(1242), + [anon_sym_bit_DASHshl2] = ACTIONS(1258), + [anon_sym_bit_DASHshr2] = ACTIONS(1258), + [anon_sym_bit_DASHand2] = ACTIONS(1258), + [anon_sym_bit_DASHxor2] = ACTIONS(1258), + [anon_sym_bit_DASHor2] = ACTIONS(1258), + [anon_sym_err_GT] = ACTIONS(1242), + [anon_sym_out_GT] = ACTIONS(1242), + [anon_sym_e_GT] = ACTIONS(1242), + [anon_sym_o_GT] = ACTIONS(1242), + [anon_sym_err_PLUSout_GT] = ACTIONS(1242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), + [anon_sym_o_PLUSe_GT] = ACTIONS(1242), + [anon_sym_e_PLUSo_GT] = ACTIONS(1242), + [anon_sym_err_GT_GT] = ACTIONS(1258), + [anon_sym_out_GT_GT] = ACTIONS(1258), + [anon_sym_e_GT_GT] = ACTIONS(1258), + [anon_sym_o_GT_GT] = ACTIONS(1258), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1258), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1258), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1258), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1258), + [sym__unquoted_pattern] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1001)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym_comment] = STATE(1001), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1002)] = { + [sym_comment] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(1250), + [anon_sym_in] = ACTIONS(1250), + [sym__newline] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_err_GT_PIPE] = ACTIONS(1250), + [anon_sym_out_GT_PIPE] = ACTIONS(1250), + [anon_sym_e_GT_PIPE] = ACTIONS(1250), + [anon_sym_o_GT_PIPE] = ACTIONS(1250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1250), + [anon_sym_GT2] = ACTIONS(1234), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_STAR2] = ACTIONS(1234), + [anon_sym_and2] = ACTIONS(1250), + [anon_sym_xor2] = ACTIONS(1250), + [anon_sym_or2] = ACTIONS(1250), + [anon_sym_not_DASHin2] = ACTIONS(1250), + [anon_sym_has2] = ACTIONS(1250), + [anon_sym_not_DASHhas2] = ACTIONS(1250), + [anon_sym_starts_DASHwith2] = ACTIONS(1250), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1250), + [anon_sym_ends_DASHwith2] = ACTIONS(1250), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1250), + [anon_sym_EQ_EQ2] = ACTIONS(1250), + [anon_sym_BANG_EQ2] = ACTIONS(1250), + [anon_sym_LT2] = ACTIONS(1234), + [anon_sym_LT_EQ2] = ACTIONS(1250), + [anon_sym_GT_EQ2] = ACTIONS(1250), + [anon_sym_EQ_TILDE2] = ACTIONS(1250), + [anon_sym_BANG_TILDE2] = ACTIONS(1250), + [anon_sym_like2] = ACTIONS(1250), + [anon_sym_not_DASHlike2] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR_STAR2] = ACTIONS(1250), + [anon_sym_PLUS_PLUS2] = ACTIONS(1250), + [anon_sym_SLASH2] = ACTIONS(1234), + [anon_sym_mod2] = ACTIONS(1250), + [anon_sym_SLASH_SLASH2] = ACTIONS(1250), + [anon_sym_PLUS2] = ACTIONS(1234), + [anon_sym_bit_DASHshl2] = ACTIONS(1250), + [anon_sym_bit_DASHshr2] = ACTIONS(1250), + [anon_sym_bit_DASHand2] = ACTIONS(1250), + [anon_sym_bit_DASHxor2] = ACTIONS(1250), + [anon_sym_bit_DASHor2] = ACTIONS(1250), + [anon_sym_err_GT] = ACTIONS(1234), + [anon_sym_out_GT] = ACTIONS(1234), + [anon_sym_e_GT] = ACTIONS(1234), + [anon_sym_o_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT] = ACTIONS(1234), + [anon_sym_err_GT_GT] = ACTIONS(1250), + [anon_sym_out_GT_GT] = ACTIONS(1250), + [anon_sym_e_GT_GT] = ACTIONS(1250), + [anon_sym_o_GT_GT] = ACTIONS(1250), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1250), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1250), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1250), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1250), + [sym__unquoted_pattern] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1003)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym_comment] = STATE(1003), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1004)] = { + [aux_sym__repeat_newline] = STATE(993), + [sym_comment] = STATE(1004), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1005)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym_comment] = STATE(1005), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1006)] = { + [aux_sym__repeat_newline] = STATE(1113), + [sym_comment] = STATE(1006), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1007)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym_comment] = STATE(1007), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1008)] = { + [aux_sym__repeat_newline] = STATE(996), + [sym_comment] = STATE(1008), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1009)] = { + [aux_sym__repeat_newline] = STATE(1057), + [sym_comment] = STATE(1009), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1010)] = { + [aux_sym__repeat_newline] = STATE(1059), + [sym_comment] = STATE(1010), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1011)] = { + [sym_comment] = STATE(1011), + [ts_builtin_sym_end] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_STAR2] = ACTIONS(2698), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2696), + [anon_sym_PLUS_PLUS2] = ACTIONS(2696), + [anon_sym_SLASH2] = ACTIONS(2698), + [anon_sym_mod2] = ACTIONS(2696), + [anon_sym_SLASH_SLASH2] = ACTIONS(2696), + [anon_sym_PLUS2] = ACTIONS(2698), + [anon_sym_bit_DASHshl2] = ACTIONS(2696), + [anon_sym_bit_DASHshr2] = ACTIONS(2696), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [sym__unquoted_pattern] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1012)] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym_comment] = STATE(1012), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1013)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym_comment] = STATE(1013), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1014)] = { + [sym_comment] = STATE(1014), + [ts_builtin_sym_end] = ACTIONS(2114), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), + [sym__unquoted_pattern] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1015)] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym_comment] = STATE(1015), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1016)] = { + [aux_sym__repeat_newline] = STATE(998), + [sym_comment] = STATE(1016), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1017)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym_comment] = STATE(1017), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1018)] = { + [aux_sym__repeat_newline] = STATE(1338), + [sym__expression_parenthesized] = STATE(4420), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_comment] = STATE(1018), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(2732), + [aux_sym_cmd_identifier_token3] = ACTIONS(191), + [aux_sym_cmd_identifier_token4] = ACTIONS(191), + [aux_sym_cmd_identifier_token5] = ACTIONS(191), + [sym__newline] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(1019)] = { + [aux_sym__repeat_newline] = STATE(1070), + [sym_comment] = STATE(1019), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1020)] = { + [sym_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(2660), + [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_GT2] = ACTIONS(2662), + [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2718), + [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), + [sym__unquoted_pattern] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1021)] = { + [aux_sym__repeat_newline] = STATE(1072), + [sym_comment] = STATE(1021), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1022)] = { + [sym_comment] = STATE(1022), + [ts_builtin_sym_end] = ACTIONS(2676), + [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_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2684), + [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), + [sym__unquoted_pattern] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1023)] = { + [aux_sym__repeat_newline] = STATE(1074), + [sym_comment] = STATE(1023), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1024)] = { + [aux_sym__repeat_newline] = STATE(1108), + [sym_comment] = STATE(1024), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1025)] = { + [sym__expr_parenthesized_immediate] = STATE(5283), + [sym_comment] = STATE(1025), + [ts_builtin_sym_end] = ACTIONS(2369), + [anon_sym_in] = ACTIONS(2369), + [sym__newline] = ACTIONS(2369), + [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_GT2] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2369), + [anon_sym_STAR2] = ACTIONS(2371), + [anon_sym_and2] = ACTIONS(2369), + [anon_sym_xor2] = ACTIONS(2369), + [anon_sym_or2] = ACTIONS(2369), + [anon_sym_not_DASHin2] = ACTIONS(2369), + [anon_sym_has2] = ACTIONS(2369), + [anon_sym_not_DASHhas2] = ACTIONS(2369), + [anon_sym_starts_DASHwith2] = ACTIONS(2369), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2369), + [anon_sym_ends_DASHwith2] = ACTIONS(2369), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2369), + [anon_sym_EQ_EQ2] = ACTIONS(2369), + [anon_sym_BANG_EQ2] = ACTIONS(2369), + [anon_sym_LT2] = ACTIONS(2371), + [anon_sym_LT_EQ2] = ACTIONS(2369), + [anon_sym_GT_EQ2] = ACTIONS(2369), + [anon_sym_EQ_TILDE2] = ACTIONS(2369), + [anon_sym_BANG_TILDE2] = ACTIONS(2369), + [anon_sym_like2] = ACTIONS(2369), + [anon_sym_not_DASHlike2] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2369), + [anon_sym_PLUS_PLUS2] = ACTIONS(2369), + [anon_sym_SLASH2] = ACTIONS(2371), + [anon_sym_mod2] = ACTIONS(2369), + [anon_sym_SLASH_SLASH2] = ACTIONS(2369), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_bit_DASHshl2] = ACTIONS(2369), + [anon_sym_bit_DASHshr2] = ACTIONS(2369), + [anon_sym_bit_DASHand2] = ACTIONS(2369), + [anon_sym_bit_DASHxor2] = ACTIONS(2369), + [anon_sym_bit_DASHor2] = ACTIONS(2369), + [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(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(1026)] = { + [aux_sym__repeat_newline] = STATE(1122), + [sym_comment] = STATE(1026), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1027)] = { + [sym__expr_parenthesized_immediate] = STATE(5283), + [sym_comment] = STATE(1027), + [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(1796), + [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_POUND] = ACTIONS(3), + }, + [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(1128), + [sym_comment] = STATE(1028), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1029)] = { + [sym_expr_unary] = STATE(3047), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_parenthesized] = STATE(2582), + [sym_val_range] = STATE(3047), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(3047), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(2673), + [sym_val_variable] = STATE(2650), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(2388), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(2670), + [sym__unquoted_with_expr] = STATE(3048), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(1029), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2736), + [aux_sym_cmd_identifier_token3] = ACTIONS(2738), + [aux_sym_cmd_identifier_token4] = ACTIONS(2738), + [aux_sym_cmd_identifier_token5] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2758), + [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(2760), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(1030)] = { + [sym_expr_unary] = STATE(2950), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_parenthesized] = STATE(2583), + [sym_val_range] = STATE(2950), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(2950), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(2673), + [sym_val_variable] = STATE(2650), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(2388), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(2674), + [sym__unquoted_with_expr] = STATE(3000), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(1030), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2736), + [aux_sym_cmd_identifier_token3] = ACTIONS(2738), + [aux_sym_cmd_identifier_token4] = ACTIONS(2738), + [aux_sym_cmd_identifier_token5] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2758), + [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(2760), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(1031)] = { + [sym_expr_unary] = STATE(3041), + [sym__expr_unary_minus] = STATE(1293), + [sym_expr_parenthesized] = STATE(2585), + [sym_val_range] = STATE(3041), + [sym__val_range] = STATE(4915), + [sym__value] = STATE(3041), + [sym_val_nothing] = STATE(1369), + [sym_val_bool] = STATE(2673), + [sym_val_variable] = STATE(2650), + [sym_val_cellpath] = STATE(1369), + [sym_val_number] = STATE(1369), + [sym__val_number_decimal] = STATE(2388), + [sym__val_number] = STATE(1345), + [sym_val_duration] = STATE(1369), + [sym_val_filesize] = STATE(1369), + [sym_val_binary] = STATE(1369), + [sym_val_string] = STATE(1369), + [sym__raw_str] = STATE(504), + [sym__str_double_quotes] = STATE(504), + [sym__str_single_quotes] = STATE(504), + [sym__str_back_ticks] = STATE(504), + [sym_val_interpolated] = STATE(1369), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1369), + [sym_val_record] = STATE(1369), + [sym_val_table] = STATE(1369), + [sym_val_closure] = STATE(1369), + [sym_unquoted] = STATE(2680), + [sym__unquoted_with_expr] = STATE(2947), + [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_comment] = STATE(1031), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2736), + [aux_sym_cmd_identifier_token3] = ACTIONS(2738), + [aux_sym_cmd_identifier_token4] = ACTIONS(2738), + [aux_sym_cmd_identifier_token5] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2758), + [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(2760), + [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(2528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [STATE(1032)] = { + [aux_sym__repeat_newline] = STATE(4464), + [sym__match_pattern_expression] = STATE(4534), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list_body] = STATE(4677), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_rest] = STATE(5185), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4000), + [sym_val_range] = STATE(4712), + [sym__val_range] = STATE(5257), + [sym_val_nothing] = STATE(4714), + [sym_val_bool] = STATE(4442), + [sym_val_variable] = STATE(4001), + [sym_val_number] = STATE(4714), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4714), + [sym_val_filesize] = STATE(4714), + [sym_val_binary] = STATE(4714), + [sym_val_string] = STATE(4714), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_list] = STATE(5494), + [sym__table_head] = STATE(3893), + [sym_val_table] = STATE(4714), + [sym__unquoted_in_list] = STATE(4534), + [sym__unquoted_anonymous_prefix] = STATE(5257), + [sym_comment] = STATE(1032), + [aux_sym__types_body_repeat1] = STATE(1423), + [aux_sym_parameter_repeat2] = STATE(4206), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_RBRACK] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), + }, + [STATE(1033)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1033), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1034)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1034), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1035)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1035), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1036)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1036), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1037)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1037), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_in] = ACTIONS(2572), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [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(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [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(2572), - [anon_sym_mod2] = ACTIONS(2572), - [anon_sym_SLASH_SLASH2] = ACTIONS(2572), - [anon_sym_PLUS2] = ACTIONS(2572), - [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(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1038)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1038), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_in] = ACTIONS(2600), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_RPAREN] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2600), - [anon_sym_xor2] = ACTIONS(2600), - [anon_sym_or2] = ACTIONS(2600), - [anon_sym_not_DASHin2] = ACTIONS(2600), - [anon_sym_has2] = ACTIONS(2600), - [anon_sym_not_DASHhas2] = ACTIONS(2600), - [anon_sym_starts_DASHwith2] = ACTIONS(2600), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), - [anon_sym_ends_DASHwith2] = ACTIONS(2600), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2600), - [anon_sym_like2] = ACTIONS(2600), - [anon_sym_not_DASHlike2] = ACTIONS(2600), - [anon_sym_STAR_STAR2] = ACTIONS(2600), - [anon_sym_PLUS_PLUS2] = ACTIONS(2600), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2600), - [anon_sym_SLASH_SLASH2] = ACTIONS(2600), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2600), - [anon_sym_bit_DASHshr2] = ACTIONS(2600), - [anon_sym_bit_DASHand2] = ACTIONS(2600), - [anon_sym_bit_DASHxor2] = ACTIONS(2600), - [anon_sym_bit_DASHor2] = ACTIONS(2600), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1039)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1039), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_in] = ACTIONS(785), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(1145), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1040), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(1014), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1043)] = { - [aux_sym__repeat_newline] = STATE(1109), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1043), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(1372), - [sym__expression_parenthesized] = STATE(4503), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2191), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1044), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(2724), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1045)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1806), + [anon_sym_in] = ACTIONS(2774), + [sym__newline] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_err_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_GT_PIPE] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_GT2] = ACTIONS(2776), + [anon_sym_DASH2] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_STAR2] = ACTIONS(2776), + [anon_sym_and2] = ACTIONS(2774), + [anon_sym_xor2] = ACTIONS(2774), + [anon_sym_or2] = ACTIONS(2774), + [anon_sym_not_DASHin2] = ACTIONS(2774), + [anon_sym_has2] = ACTIONS(2774), + [anon_sym_not_DASHhas2] = ACTIONS(2774), + [anon_sym_starts_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), + [anon_sym_ends_DASHwith2] = ACTIONS(2774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), + [anon_sym_EQ_EQ2] = ACTIONS(2774), + [anon_sym_BANG_EQ2] = ACTIONS(2774), + [anon_sym_LT2] = ACTIONS(2776), + [anon_sym_LT_EQ2] = ACTIONS(2774), + [anon_sym_GT_EQ2] = ACTIONS(2774), + [anon_sym_EQ_TILDE2] = ACTIONS(2774), + [anon_sym_BANG_TILDE2] = ACTIONS(2774), + [anon_sym_like2] = ACTIONS(2774), + [anon_sym_not_DASHlike2] = ACTIONS(2774), + [anon_sym_STAR_STAR2] = ACTIONS(2774), + [anon_sym_PLUS_PLUS2] = ACTIONS(2774), + [anon_sym_SLASH2] = ACTIONS(2776), + [anon_sym_mod2] = ACTIONS(2774), + [anon_sym_SLASH_SLASH2] = ACTIONS(2774), + [anon_sym_PLUS2] = ACTIONS(2776), + [anon_sym_bit_DASHshl2] = ACTIONS(2774), + [anon_sym_bit_DASHshr2] = ACTIONS(2774), + [anon_sym_bit_DASHand2] = ACTIONS(2774), + [anon_sym_bit_DASHxor2] = ACTIONS(2774), + [anon_sym_bit_DASHor2] = ACTIONS(2774), + [anon_sym_err_GT] = ACTIONS(2776), + [anon_sym_out_GT] = ACTIONS(2776), + [anon_sym_e_GT] = ACTIONS(2776), + [anon_sym_o_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT] = ACTIONS(2776), + [anon_sym_err_GT_GT] = ACTIONS(2774), + [anon_sym_out_GT_GT] = ACTIONS(2774), + [anon_sym_e_GT_GT] = ACTIONS(2774), + [anon_sym_o_GT_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(1112), + [aux_sym__repeat_newline] = STATE(1075), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1047)] = { - [aux_sym__repeat_newline] = STATE(1114), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1047), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1076), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1049)] = { - [aux_sym__repeat_newline] = STATE(1116), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1049), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(1077), [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [sym__newline] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_err_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_GT_PIPE] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), - [anon_sym_GT2] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1784), - [anon_sym_STAR2] = ACTIONS(1786), - [anon_sym_and2] = ACTIONS(1784), - [anon_sym_xor2] = ACTIONS(1784), - [anon_sym_or2] = ACTIONS(1784), - [anon_sym_not_DASHin2] = ACTIONS(1784), - [anon_sym_has2] = ACTIONS(1784), - [anon_sym_not_DASHhas2] = ACTIONS(1784), - [anon_sym_starts_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), - [anon_sym_ends_DASHwith2] = ACTIONS(1784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), - [anon_sym_EQ_EQ2] = ACTIONS(1784), - [anon_sym_BANG_EQ2] = ACTIONS(1784), - [anon_sym_LT2] = ACTIONS(1786), - [anon_sym_LT_EQ2] = ACTIONS(1784), - [anon_sym_GT_EQ2] = ACTIONS(1784), - [anon_sym_EQ_TILDE2] = ACTIONS(1784), - [anon_sym_BANG_TILDE2] = ACTIONS(1784), - [anon_sym_like2] = ACTIONS(1784), - [anon_sym_not_DASHlike2] = ACTIONS(1784), - [anon_sym_STAR_STAR2] = ACTIONS(1784), - [anon_sym_PLUS_PLUS2] = ACTIONS(1784), - [anon_sym_SLASH2] = ACTIONS(1786), - [anon_sym_mod2] = ACTIONS(1784), - [anon_sym_SLASH_SLASH2] = ACTIONS(1784), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_bit_DASHshl2] = ACTIONS(1784), - [anon_sym_bit_DASHshr2] = ACTIONS(1784), - [anon_sym_bit_DASHand2] = ACTIONS(1784), - [anon_sym_bit_DASHxor2] = ACTIONS(1784), - [anon_sym_bit_DASHor2] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(2730), - [aux_sym__immediate_decimal_token5] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1784), - [anon_sym_out_GT_GT] = ACTIONS(1784), - [anon_sym_e_GT_GT] = ACTIONS(1784), - [anon_sym_o_GT_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(1118), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(1016), + [aux_sym__repeat_newline] = STATE(1151), [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(990), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1120), + [aux_sym__repeat_newline] = STATE(1079), [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1056)] = { + [aux_sym__repeat_newline] = STATE(1080), [sym_comment] = STATE(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(785), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_COLON2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(1123), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(1129), + [aux_sym__repeat_newline] = STATE(1081), [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1133), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1059), - [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(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(1134), + [aux_sym__repeat_newline] = STATE(1082), [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1139), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1062)] = { - [sym__expression] = STATE(5060), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [aux_sym__repeat_newline] = STATE(1083), [sym_comment] = STATE(1062), - [aux_sym_cmd_identifier_token2] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(2738), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_STAR2] = ACTIONS(2784), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2782), + [anon_sym_PLUS_PLUS2] = ACTIONS(2782), + [anon_sym_SLASH2] = ACTIONS(2784), + [anon_sym_mod2] = ACTIONS(2782), + [anon_sym_SLASH_SLASH2] = ACTIONS(2782), + [anon_sym_PLUS2] = ACTIONS(2784), + [anon_sym_bit_DASHshl2] = ACTIONS(2782), + [anon_sym_bit_DASHshr2] = ACTIONS(2782), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1063)] = { - [aux_sym__repeat_newline] = STATE(1143), + [aux_sym__repeat_newline] = STATE(1084), [sym_comment] = STATE(1063), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1064)] = { - [sym__expression] = STATE(5065), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), [sym_comment] = STATE(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(2738), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_cmd_identifier_token2] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(811), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_COLON2] = ACTIONS(914), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(1148), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [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(1066)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(1048), + [aux_sym__repeat_newline] = STATE(1085), [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2422), - [sym__newline] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_err_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_GT_PIPE] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_GT2] = ACTIONS(2424), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_STAR2] = ACTIONS(2424), - [anon_sym_and2] = ACTIONS(2422), - [anon_sym_xor2] = ACTIONS(2422), - [anon_sym_or2] = ACTIONS(2422), - [anon_sym_not_DASHin2] = ACTIONS(2422), - [anon_sym_has2] = ACTIONS(2422), - [anon_sym_not_DASHhas2] = ACTIONS(2422), - [anon_sym_starts_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), - [anon_sym_ends_DASHwith2] = ACTIONS(2422), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), - [anon_sym_EQ_EQ2] = ACTIONS(2422), - [anon_sym_BANG_EQ2] = ACTIONS(2422), - [anon_sym_LT2] = ACTIONS(2424), - [anon_sym_LT_EQ2] = ACTIONS(2422), - [anon_sym_GT_EQ2] = ACTIONS(2422), - [anon_sym_EQ_TILDE2] = ACTIONS(2422), - [anon_sym_BANG_TILDE2] = ACTIONS(2422), - [anon_sym_like2] = ACTIONS(2422), - [anon_sym_not_DASHlike2] = ACTIONS(2422), - [anon_sym_STAR_STAR2] = ACTIONS(2422), - [anon_sym_PLUS_PLUS2] = ACTIONS(2422), - [anon_sym_SLASH2] = ACTIONS(2424), - [anon_sym_mod2] = ACTIONS(2422), - [anon_sym_SLASH_SLASH2] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2424), - [anon_sym_bit_DASHshl2] = ACTIONS(2422), - [anon_sym_bit_DASHshr2] = ACTIONS(2422), - [anon_sym_bit_DASHand2] = ACTIONS(2422), - [anon_sym_bit_DASHxor2] = ACTIONS(2422), - [anon_sym_bit_DASHor2] = ACTIONS(2422), - [anon_sym_err_GT] = ACTIONS(2424), - [anon_sym_out_GT] = ACTIONS(2424), - [anon_sym_e_GT] = ACTIONS(2424), - [anon_sym_o_GT] = ACTIONS(2424), - [anon_sym_err_PLUSout_GT] = ACTIONS(2424), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), - [anon_sym_o_PLUSe_GT] = ACTIONS(2424), - [anon_sym_e_PLUSo_GT] = ACTIONS(2424), - [anon_sym_err_GT_GT] = ACTIONS(2422), - [anon_sym_out_GT_GT] = ACTIONS(2422), - [anon_sym_e_GT_GT] = ACTIONS(2422), - [anon_sym_o_GT_GT] = ACTIONS(2422), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1068), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_alias] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_mut] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [aux_sym_cmd_identifier_token1] = ACTIONS(2740), - [anon_sym_def] = ACTIONS(2744), - [anon_sym_use] = ACTIONS(2744), - [anon_sym_export_DASHenv] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_loop] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_catch] = ACTIONS(2744), - [anon_sym_finally] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2744), - [anon_sym_false] = ACTIONS(2744), - [anon_sym_null] = ACTIONS(2744), - [aux_sym_cmd_identifier_token3] = ACTIONS(2744), - [aux_sym_cmd_identifier_token4] = ACTIONS(2744), - [aux_sym_cmd_identifier_token5] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_AT] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2751), - [anon_sym_where] = ACTIONS(2748), - [aux_sym_expr_unary_token1] = ACTIONS(2748), - [anon_sym_PLUS2] = ACTIONS(2754), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2748), - [anon_sym_DOT_DOT_LT] = ACTIONS(2748), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2756), - [aux_sym__val_number_decimal_token1] = ACTIONS(2740), - [aux_sym__val_number_decimal_token2] = ACTIONS(2744), - [aux_sym__val_number_decimal_token3] = ACTIONS(2744), - [aux_sym__val_number_decimal_token4] = ACTIONS(2744), - [aux_sym__val_number_token1] = ACTIONS(2744), - [aux_sym__val_number_token2] = ACTIONS(2744), - [aux_sym__val_number_token3] = ACTIONS(2744), - [anon_sym_0b] = ACTIONS(2751), - [anon_sym_0o] = ACTIONS(2751), - [anon_sym_0x] = ACTIONS(2751), - [sym_val_date] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_BQUOTE] = ACTIONS(2744), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2748), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1018), + [aux_sym__repeat_newline] = STATE(1086), [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1070)] = { - [sym_expr_unary] = STATE(2849), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_parenthesized] = STATE(2532), - [sym_val_range] = STATE(2849), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(2849), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2595), - [sym_val_variable] = STATE(2547), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(2371), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(2634), - [sym__unquoted_with_expr] = STATE(2851), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1070), - [anon_sym_true] = ACTIONS(2758), - [anon_sym_false] = ACTIONS(2758), - [anon_sym_null] = ACTIONS(2760), - [aux_sym_cmd_identifier_token3] = ACTIONS(2762), - [aux_sym_cmd_identifier_token4] = ACTIONS(2762), - [aux_sym_cmd_identifier_token5] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [aux_sym_expr_unary_token1] = ACTIONS(2774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), - [anon_sym_DOT_DOT_LT] = ACTIONS(2776), - [aux_sym__val_number_decimal_token1] = ACTIONS(2778), - [aux_sym__val_number_decimal_token2] = ACTIONS(2780), - [aux_sym__val_number_decimal_token3] = ACTIONS(2782), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1071)] = { - [sym_expr_unary] = STATE(2852), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_parenthesized] = STATE(2545), - [sym_val_range] = STATE(2852), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(2852), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2595), - [sym_val_variable] = STATE(2547), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(2371), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(2635), - [sym__unquoted_with_expr] = STATE(2854), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(1087), [sym_comment] = STATE(1071), - [anon_sym_true] = ACTIONS(2758), - [anon_sym_false] = ACTIONS(2758), - [anon_sym_null] = ACTIONS(2760), - [aux_sym_cmd_identifier_token3] = ACTIONS(2762), - [aux_sym_cmd_identifier_token4] = ACTIONS(2762), - [aux_sym_cmd_identifier_token5] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [aux_sym_expr_unary_token1] = ACTIONS(2774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), - [anon_sym_DOT_DOT_LT] = ACTIONS(2776), - [aux_sym__val_number_decimal_token1] = ACTIONS(2778), - [aux_sym__val_number_decimal_token2] = ACTIONS(2780), - [aux_sym__val_number_decimal_token3] = ACTIONS(2782), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1072)] = { - [sym_expr_unary] = STATE(2855), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_parenthesized] = STATE(2514), - [sym_val_range] = STATE(2855), - [sym__val_range] = STATE(4880), - [sym__value] = STATE(2855), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(2595), - [sym_val_variable] = STATE(2547), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(2371), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_unquoted] = STATE(2636), - [sym__unquoted_with_expr] = STATE(2857), - [sym__unquoted_anonymous_prefix] = STATE(4880), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1072), - [anon_sym_true] = ACTIONS(2758), - [anon_sym_false] = ACTIONS(2758), - [anon_sym_null] = ACTIONS(2760), - [aux_sym_cmd_identifier_token3] = ACTIONS(2762), - [aux_sym_cmd_identifier_token4] = ACTIONS(2762), - [aux_sym_cmd_identifier_token5] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [aux_sym_expr_unary_token1] = ACTIONS(2774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), - [anon_sym_DOT_DOT_LT] = ACTIONS(2776), - [aux_sym__val_number_decimal_token1] = ACTIONS(2778), - [aux_sym__val_number_decimal_token2] = ACTIONS(2780), - [aux_sym__val_number_decimal_token3] = ACTIONS(2782), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1073)] = { + [aux_sym__repeat_newline] = STATE(1088), [sym_comment] = STATE(1073), - [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_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(992), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(1020), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1077)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2590), - [anon_sym_in] = ACTIONS(2590), - [sym__newline] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_err_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_GT_PIPE] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), - [anon_sym_GT2] = ACTIONS(2592), - [anon_sym_DASH2] = ACTIONS(2590), - [anon_sym_STAR2] = ACTIONS(2592), - [anon_sym_and2] = ACTIONS(2590), - [anon_sym_xor2] = ACTIONS(2590), - [anon_sym_or2] = ACTIONS(2590), - [anon_sym_not_DASHin2] = ACTIONS(2590), - [anon_sym_has2] = ACTIONS(2590), - [anon_sym_not_DASHhas2] = ACTIONS(2590), - [anon_sym_starts_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), - [anon_sym_ends_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), - [anon_sym_EQ_EQ2] = ACTIONS(2590), - [anon_sym_BANG_EQ2] = ACTIONS(2590), - [anon_sym_LT2] = ACTIONS(2592), - [anon_sym_LT_EQ2] = ACTIONS(2590), - [anon_sym_GT_EQ2] = ACTIONS(2590), - [anon_sym_EQ_TILDE2] = ACTIONS(2590), - [anon_sym_BANG_TILDE2] = ACTIONS(2590), - [anon_sym_like2] = ACTIONS(2590), - [anon_sym_not_DASHlike2] = ACTIONS(2590), - [anon_sym_LPAREN2] = ACTIONS(2594), - [anon_sym_STAR_STAR2] = ACTIONS(2590), - [anon_sym_PLUS_PLUS2] = ACTIONS(2590), - [anon_sym_SLASH2] = ACTIONS(2592), - [anon_sym_mod2] = ACTIONS(2590), - [anon_sym_SLASH_SLASH2] = ACTIONS(2590), - [anon_sym_PLUS2] = ACTIONS(2592), - [anon_sym_bit_DASHshl2] = ACTIONS(2590), - [anon_sym_bit_DASHshr2] = ACTIONS(2590), - [anon_sym_bit_DASHand2] = ACTIONS(2590), - [anon_sym_bit_DASHxor2] = ACTIONS(2590), - [anon_sym_bit_DASHor2] = ACTIONS(2590), - [anon_sym_err_GT] = ACTIONS(2592), - [anon_sym_out_GT] = ACTIONS(2592), - [anon_sym_e_GT] = ACTIONS(2592), - [anon_sym_o_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT] = ACTIONS(2592), - [anon_sym_err_GT_GT] = ACTIONS(2590), - [anon_sym_out_GT_GT] = ACTIONS(2590), - [anon_sym_e_GT_GT] = ACTIONS(2590), - [anon_sym_o_GT_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), - [sym__unquoted_pattern] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1078)] = { + [aux_sym__repeat_newline] = STATE(1338), + [sym__expression_parenthesized] = STATE(4660), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [sym__newline] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_err_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_GT_PIPE] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), - [anon_sym_GT2] = ACTIONS(1834), - [anon_sym_DASH2] = ACTIONS(1832), - [anon_sym_STAR2] = ACTIONS(1834), - [anon_sym_and2] = ACTIONS(1832), - [anon_sym_xor2] = ACTIONS(1832), - [anon_sym_or2] = ACTIONS(1832), - [anon_sym_not_DASHin2] = ACTIONS(1832), - [anon_sym_has2] = ACTIONS(1832), - [anon_sym_not_DASHhas2] = ACTIONS(1832), - [anon_sym_starts_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), - [anon_sym_ends_DASHwith2] = ACTIONS(1832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), - [anon_sym_EQ_EQ2] = ACTIONS(1832), - [anon_sym_BANG_EQ2] = ACTIONS(1832), - [anon_sym_LT2] = ACTIONS(1834), - [anon_sym_LT_EQ2] = ACTIONS(1832), - [anon_sym_GT_EQ2] = ACTIONS(1832), - [anon_sym_EQ_TILDE2] = ACTIONS(1832), - [anon_sym_BANG_TILDE2] = ACTIONS(1832), - [anon_sym_like2] = ACTIONS(1832), - [anon_sym_not_DASHlike2] = ACTIONS(1832), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_STAR_STAR2] = ACTIONS(1832), - [anon_sym_PLUS_PLUS2] = ACTIONS(1832), - [anon_sym_SLASH2] = ACTIONS(1834), - [anon_sym_mod2] = ACTIONS(1832), - [anon_sym_SLASH_SLASH2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1834), - [anon_sym_bit_DASHshl2] = ACTIONS(1832), - [anon_sym_bit_DASHshr2] = ACTIONS(1832), - [anon_sym_bit_DASHand2] = ACTIONS(1832), - [anon_sym_bit_DASHxor2] = ACTIONS(1832), - [anon_sym_bit_DASHor2] = ACTIONS(1832), - [anon_sym_err_GT] = ACTIONS(1834), - [anon_sym_out_GT] = ACTIONS(1834), - [anon_sym_e_GT] = ACTIONS(1834), - [anon_sym_o_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT] = ACTIONS(1834), - [anon_sym_err_GT_GT] = ACTIONS(1832), - [anon_sym_out_GT_GT] = ACTIONS(1832), - [anon_sym_e_GT_GT] = ACTIONS(1832), - [anon_sym_o_GT_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), - [sym__unquoted_pattern] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(2732), + [aux_sym_cmd_identifier_token3] = ACTIONS(191), + [aux_sym_cmd_identifier_token4] = ACTIONS(191), + [aux_sym_cmd_identifier_token5] = ACTIONS(191), + [sym__newline] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(998), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1080)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_in] = ACTIONS(1919), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_GT2] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_STAR2] = ACTIONS(1921), - [anon_sym_and2] = ACTIONS(1919), - [anon_sym_xor2] = ACTIONS(1919), - [anon_sym_or2] = ACTIONS(1919), - [anon_sym_not_DASHin2] = ACTIONS(1919), - [anon_sym_has2] = ACTIONS(1919), - [anon_sym_not_DASHhas2] = ACTIONS(1919), - [anon_sym_starts_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), - [anon_sym_ends_DASHwith2] = ACTIONS(1919), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), - [anon_sym_EQ_EQ2] = ACTIONS(1919), - [anon_sym_BANG_EQ2] = ACTIONS(1919), - [anon_sym_LT2] = ACTIONS(1921), - [anon_sym_LT_EQ2] = ACTIONS(1919), - [anon_sym_GT_EQ2] = ACTIONS(1919), - [anon_sym_EQ_TILDE2] = ACTIONS(1919), - [anon_sym_BANG_TILDE2] = ACTIONS(1919), - [anon_sym_like2] = ACTIONS(1919), - [anon_sym_not_DASHlike2] = ACTIONS(1919), - [anon_sym_LPAREN2] = ACTIONS(1919), - [anon_sym_STAR_STAR2] = ACTIONS(1919), - [anon_sym_PLUS_PLUS2] = ACTIONS(1919), - [anon_sym_SLASH2] = ACTIONS(1921), - [anon_sym_mod2] = ACTIONS(1919), - [anon_sym_SLASH_SLASH2] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_bit_DASHshl2] = ACTIONS(1919), - [anon_sym_bit_DASHshr2] = ACTIONS(1919), - [anon_sym_bit_DASHand2] = ACTIONS(1919), - [anon_sym_bit_DASHxor2] = ACTIONS(1919), - [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [sym__unquoted_pattern] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1081)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(1000), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1083)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2796), + [anon_sym_BANG_EQ2] = ACTIONS(2796), + [anon_sym_LT2] = ACTIONS(2798), + [anon_sym_LT_EQ2] = ACTIONS(2796), + [anon_sym_GT_EQ2] = ACTIONS(2796), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2796), + [anon_sym_PLUS_PLUS2] = ACTIONS(2796), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2796), + [anon_sym_bit_DASHshr2] = ACTIONS(2796), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1084)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(1002), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1087)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { - [aux_sym__repeat_newline] = STATE(1372), - [sym__expression_parenthesized] = STATE(4662), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2191), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1090), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(2724), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1091), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2578), + [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(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [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(2578), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2578), + [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(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_in] = ACTIONS(2606), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2606), + [anon_sym_xor2] = ACTIONS(2606), + [anon_sym_or2] = ACTIONS(2606), + [anon_sym_not_DASHin2] = ACTIONS(2606), + [anon_sym_has2] = ACTIONS(2606), + [anon_sym_not_DASHhas2] = ACTIONS(2606), + [anon_sym_starts_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), + [anon_sym_ends_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2606), + [anon_sym_like2] = ACTIONS(2606), + [anon_sym_not_DASHlike2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(2606), + [anon_sym_PLUS_PLUS2] = ACTIONS(2606), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2606), + [anon_sym_SLASH_SLASH2] = ACTIONS(2606), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2606), + [anon_sym_bit_DASHshr2] = ACTIONS(2606), + [anon_sym_bit_DASHand2] = ACTIONS(2606), + [anon_sym_bit_DASHxor2] = ACTIONS(2606), + [anon_sym_bit_DASHor2] = ACTIONS(2606), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_in] = ACTIONS(811), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(914), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(914), + [anon_sym_xor2] = ACTIONS(914), + [anon_sym_or2] = ACTIONS(914), + [anon_sym_not_DASHin2] = ACTIONS(914), + [anon_sym_has2] = ACTIONS(914), + [anon_sym_not_DASHhas2] = ACTIONS(914), + [anon_sym_starts_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), + [anon_sym_ends_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(914), + [anon_sym_like2] = ACTIONS(914), + [anon_sym_not_DASHlike2] = ACTIONS(914), + [anon_sym_STAR_STAR2] = ACTIONS(914), + [anon_sym_PLUS_PLUS2] = ACTIONS(914), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(914), + [anon_sym_SLASH_SLASH2] = ACTIONS(914), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(914), + [anon_sym_bit_DASHshr2] = ACTIONS(914), + [anon_sym_bit_DASHand2] = ACTIONS(914), + [anon_sym_bit_DASHxor2] = ACTIONS(914), + [anon_sym_bit_DASHor2] = ACTIONS(914), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [sym__unquoted_pattern] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2792), - [anon_sym_DASH2] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_STAR2] = ACTIONS(2792), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2790), - [anon_sym_has2] = ACTIONS(2790), - [anon_sym_not_DASHhas2] = ACTIONS(2790), - [anon_sym_starts_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), - [anon_sym_ends_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), - [anon_sym_EQ_EQ2] = ACTIONS(2790), - [anon_sym_BANG_EQ2] = ACTIONS(2790), - [anon_sym_LT2] = ACTIONS(2792), - [anon_sym_LT_EQ2] = ACTIONS(2790), - [anon_sym_GT_EQ2] = ACTIONS(2790), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2790), - [anon_sym_PLUS_PLUS2] = ACTIONS(2790), - [anon_sym_SLASH2] = ACTIONS(2792), - [anon_sym_mod2] = ACTIONS(2790), - [anon_sym_SLASH_SLASH2] = ACTIONS(2790), - [anon_sym_PLUS2] = ACTIONS(2792), - [anon_sym_bit_DASHshl2] = ACTIONS(2790), - [anon_sym_bit_DASHshr2] = ACTIONS(2790), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [sym_expr_unary] = STATE(3006), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_parenthesized] = STATE(2629), - [sym_val_range] = STATE(3006), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(3006), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(2658), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(2405), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(2682), - [sym__unquoted_with_expr] = STATE(3010), - [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1099), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [anon_sym_null] = ACTIONS(2796), - [aux_sym_cmd_identifier_token3] = ACTIONS(2798), - [aux_sym_cmd_identifier_token4] = ACTIONS(2798), - [aux_sym_cmd_identifier_token5] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_DOLLAR] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [aux_sym_expr_unary_token1] = ACTIONS(2810), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_LT] = ACTIONS(2812), - [aux_sym__val_number_decimal_token1] = ACTIONS(2814), - [aux_sym__val_number_decimal_token2] = ACTIONS(2816), - [aux_sym__val_number_decimal_token3] = ACTIONS(2818), - [aux_sym__val_number_decimal_token4] = ACTIONS(2818), - [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(2820), - [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(2448), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1100)] = { - [sym_expr_unary] = STATE(3021), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_parenthesized] = STATE(2630), - [sym_val_range] = STATE(3021), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(3021), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(2658), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(2405), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(2684), - [sym__unquoted_with_expr] = STATE(3024), - [sym__unquoted_anonymous_prefix] = STATE(4801), + [aux_sym__repeat_newline] = STATE(1033), [sym_comment] = STATE(1100), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [anon_sym_null] = ACTIONS(2796), - [aux_sym_cmd_identifier_token3] = ACTIONS(2798), - [aux_sym_cmd_identifier_token4] = ACTIONS(2798), - [aux_sym_cmd_identifier_token5] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_DOLLAR] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [aux_sym_expr_unary_token1] = ACTIONS(2810), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_LT] = ACTIONS(2812), - [aux_sym__val_number_decimal_token1] = ACTIONS(2814), - [aux_sym__val_number_decimal_token2] = ACTIONS(2816), - [aux_sym__val_number_decimal_token3] = ACTIONS(2818), - [aux_sym__val_number_decimal_token4] = ACTIONS(2818), - [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(2820), - [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(2448), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1101)] = { - [sym_expr_unary] = STATE(3025), - [sym__expr_unary_minus] = STATE(1291), - [sym_expr_parenthesized] = STATE(2631), - [sym_val_range] = STATE(3025), - [sym__val_range] = STATE(4801), - [sym__value] = STATE(3025), - [sym_val_nothing] = STATE(1361), - [sym_val_bool] = STATE(2658), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(1361), - [sym_val_number] = STATE(1361), - [sym__val_number_decimal] = STATE(2405), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1361), - [sym_val_filesize] = STATE(1361), - [sym_val_binary] = STATE(1361), - [sym_val_string] = STATE(1361), - [sym__raw_str] = STATE(505), - [sym__str_double_quotes] = STATE(505), - [sym__str_single_quotes] = STATE(505), - [sym__str_back_ticks] = STATE(505), - [sym_val_interpolated] = STATE(1361), - [sym__inter_single_quotes] = STATE(1327), - [sym__inter_double_quotes] = STATE(1336), - [sym_val_list] = STATE(1361), - [sym_val_record] = STATE(1361), - [sym_val_table] = STATE(1361), - [sym_val_closure] = STATE(1361), - [sym_unquoted] = STATE(2686), - [sym__unquoted_with_expr] = STATE(3029), - [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1101), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [anon_sym_null] = ACTIONS(2796), - [aux_sym_cmd_identifier_token3] = ACTIONS(2798), - [aux_sym_cmd_identifier_token4] = ACTIONS(2798), - [aux_sym_cmd_identifier_token5] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_DOLLAR] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [aux_sym_expr_unary_token1] = ACTIONS(2810), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_LT] = ACTIONS(2812), - [aux_sym__val_number_decimal_token1] = ACTIONS(2814), - [aux_sym__val_number_decimal_token2] = ACTIONS(2816), - [aux_sym__val_number_decimal_token3] = ACTIONS(2818), - [aux_sym__val_number_decimal_token4] = ACTIONS(2818), - [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(2820), - [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(2448), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1102)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1102), - [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), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), [anon_sym_LPAREN2] = ACTIONS(1796), - [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_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(2207), - [anon_sym_in] = ACTIONS(2207), - [sym__newline] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_err_GT_PIPE] = ACTIONS(2207), - [anon_sym_out_GT_PIPE] = ACTIONS(2207), - [anon_sym_e_GT_PIPE] = ACTIONS(2207), - [anon_sym_o_GT_PIPE] = ACTIONS(2207), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2207), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2207), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2207), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2207), - [anon_sym_GT2] = ACTIONS(2209), - [anon_sym_DASH2] = ACTIONS(2207), - [anon_sym_STAR2] = ACTIONS(2209), - [anon_sym_and2] = ACTIONS(2207), - [anon_sym_xor2] = ACTIONS(2207), - [anon_sym_or2] = ACTIONS(2207), - [anon_sym_not_DASHin2] = ACTIONS(2207), - [anon_sym_has2] = ACTIONS(2207), - [anon_sym_not_DASHhas2] = ACTIONS(2207), - [anon_sym_starts_DASHwith2] = ACTIONS(2207), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2207), - [anon_sym_ends_DASHwith2] = ACTIONS(2207), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2207), - [anon_sym_EQ_EQ2] = ACTIONS(2207), - [anon_sym_BANG_EQ2] = ACTIONS(2207), - [anon_sym_LT2] = ACTIONS(2209), - [anon_sym_LT_EQ2] = ACTIONS(2207), - [anon_sym_GT_EQ2] = ACTIONS(2207), - [anon_sym_EQ_TILDE2] = ACTIONS(2207), - [anon_sym_BANG_TILDE2] = ACTIONS(2207), - [anon_sym_like2] = ACTIONS(2207), - [anon_sym_not_DASHlike2] = ACTIONS(2207), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2207), - [anon_sym_PLUS_PLUS2] = ACTIONS(2207), - [anon_sym_SLASH2] = ACTIONS(2209), - [anon_sym_mod2] = ACTIONS(2207), - [anon_sym_SLASH_SLASH2] = ACTIONS(2207), - [anon_sym_PLUS2] = ACTIONS(2209), - [anon_sym_bit_DASHshl2] = ACTIONS(2207), - [anon_sym_bit_DASHshr2] = ACTIONS(2207), - [anon_sym_bit_DASHand2] = ACTIONS(2207), - [anon_sym_bit_DASHxor2] = ACTIONS(2207), - [anon_sym_bit_DASHor2] = ACTIONS(2207), - [anon_sym_err_GT] = ACTIONS(2209), - [anon_sym_out_GT] = ACTIONS(2209), - [anon_sym_e_GT] = ACTIONS(2209), - [anon_sym_o_GT] = ACTIONS(2209), - [anon_sym_err_PLUSout_GT] = ACTIONS(2209), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2209), - [anon_sym_o_PLUSe_GT] = ACTIONS(2209), - [anon_sym_e_PLUSo_GT] = ACTIONS(2209), - [anon_sym_err_GT_GT] = ACTIONS(2207), - [anon_sym_out_GT_GT] = ACTIONS(2207), - [anon_sym_e_GT_GT] = ACTIONS(2207), - [anon_sym_o_GT_GT] = ACTIONS(2207), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2207), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2207), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2207), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1790), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_has2] = ACTIONS(1788), + [anon_sym_not_DASHhas2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1790), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_like2] = ACTIONS(1788), + [anon_sym_not_DASHlike2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1790), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(2800), + [aux_sym__immediate_decimal_token5] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1790), + [anon_sym_out_GT] = ACTIONS(1790), + [anon_sym_e_GT] = ACTIONS(1790), + [anon_sym_o_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT] = ACTIONS(1790), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [sym__newline] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_err_GT_PIPE] = ACTIONS(2219), - [anon_sym_out_GT_PIPE] = ACTIONS(2219), - [anon_sym_e_GT_PIPE] = ACTIONS(2219), - [anon_sym_o_GT_PIPE] = ACTIONS(2219), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2219), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2219), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2219), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2219), - [anon_sym_GT2] = ACTIONS(2221), - [anon_sym_DASH2] = ACTIONS(2219), - [anon_sym_STAR2] = ACTIONS(2221), - [anon_sym_and2] = ACTIONS(2219), - [anon_sym_xor2] = ACTIONS(2219), - [anon_sym_or2] = ACTIONS(2219), - [anon_sym_not_DASHin2] = ACTIONS(2219), - [anon_sym_has2] = ACTIONS(2219), - [anon_sym_not_DASHhas2] = ACTIONS(2219), - [anon_sym_starts_DASHwith2] = ACTIONS(2219), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2219), - [anon_sym_ends_DASHwith2] = ACTIONS(2219), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2219), - [anon_sym_EQ_EQ2] = ACTIONS(2219), - [anon_sym_BANG_EQ2] = ACTIONS(2219), - [anon_sym_LT2] = ACTIONS(2221), - [anon_sym_LT_EQ2] = ACTIONS(2219), - [anon_sym_GT_EQ2] = ACTIONS(2219), - [anon_sym_EQ_TILDE2] = ACTIONS(2219), - [anon_sym_BANG_TILDE2] = ACTIONS(2219), - [anon_sym_like2] = ACTIONS(2219), - [anon_sym_not_DASHlike2] = ACTIONS(2219), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2219), - [anon_sym_PLUS_PLUS2] = ACTIONS(2219), - [anon_sym_SLASH2] = ACTIONS(2221), - [anon_sym_mod2] = ACTIONS(2219), - [anon_sym_SLASH_SLASH2] = ACTIONS(2219), - [anon_sym_PLUS2] = ACTIONS(2221), - [anon_sym_bit_DASHshl2] = ACTIONS(2219), - [anon_sym_bit_DASHshr2] = ACTIONS(2219), - [anon_sym_bit_DASHand2] = ACTIONS(2219), - [anon_sym_bit_DASHxor2] = ACTIONS(2219), - [anon_sym_bit_DASHor2] = ACTIONS(2219), - [anon_sym_err_GT] = ACTIONS(2221), - [anon_sym_out_GT] = ACTIONS(2221), - [anon_sym_e_GT] = ACTIONS(2221), - [anon_sym_o_GT] = ACTIONS(2221), - [anon_sym_err_PLUSout_GT] = ACTIONS(2221), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2221), - [anon_sym_o_PLUSe_GT] = ACTIONS(2221), - [anon_sym_e_PLUSo_GT] = ACTIONS(2221), - [anon_sym_err_GT_GT] = ACTIONS(2219), - [anon_sym_out_GT_GT] = ACTIONS(2219), - [anon_sym_e_GT_GT] = ACTIONS(2219), - [anon_sym_o_GT_GT] = ACTIONS(2219), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2219), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2219), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2219), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [sym__expr_parenthesized_immediate] = STATE(5511), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2223), - [sym__newline] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_err_GT_PIPE] = ACTIONS(2223), - [anon_sym_out_GT_PIPE] = ACTIONS(2223), - [anon_sym_e_GT_PIPE] = ACTIONS(2223), - [anon_sym_o_GT_PIPE] = ACTIONS(2223), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2223), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2223), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2223), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2223), - [anon_sym_GT2] = ACTIONS(2225), - [anon_sym_DASH2] = ACTIONS(2223), - [anon_sym_STAR2] = ACTIONS(2225), - [anon_sym_and2] = ACTIONS(2223), - [anon_sym_xor2] = ACTIONS(2223), - [anon_sym_or2] = ACTIONS(2223), - [anon_sym_not_DASHin2] = ACTIONS(2223), - [anon_sym_has2] = ACTIONS(2223), - [anon_sym_not_DASHhas2] = ACTIONS(2223), - [anon_sym_starts_DASHwith2] = ACTIONS(2223), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2223), - [anon_sym_ends_DASHwith2] = ACTIONS(2223), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2223), - [anon_sym_EQ_EQ2] = ACTIONS(2223), - [anon_sym_BANG_EQ2] = ACTIONS(2223), - [anon_sym_LT2] = ACTIONS(2225), - [anon_sym_LT_EQ2] = ACTIONS(2223), - [anon_sym_GT_EQ2] = ACTIONS(2223), - [anon_sym_EQ_TILDE2] = ACTIONS(2223), - [anon_sym_BANG_TILDE2] = ACTIONS(2223), - [anon_sym_like2] = ACTIONS(2223), - [anon_sym_not_DASHlike2] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2223), - [anon_sym_PLUS_PLUS2] = ACTIONS(2223), - [anon_sym_SLASH2] = ACTIONS(2225), - [anon_sym_mod2] = ACTIONS(2223), - [anon_sym_SLASH_SLASH2] = ACTIONS(2223), - [anon_sym_PLUS2] = ACTIONS(2225), - [anon_sym_bit_DASHshl2] = ACTIONS(2223), - [anon_sym_bit_DASHshr2] = ACTIONS(2223), - [anon_sym_bit_DASHand2] = ACTIONS(2223), - [anon_sym_bit_DASHxor2] = ACTIONS(2223), - [anon_sym_bit_DASHor2] = ACTIONS(2223), - [anon_sym_err_GT] = ACTIONS(2225), - [anon_sym_out_GT] = ACTIONS(2225), - [anon_sym_e_GT] = ACTIONS(2225), - [anon_sym_o_GT] = ACTIONS(2225), - [anon_sym_err_PLUSout_GT] = ACTIONS(2225), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2225), - [anon_sym_o_PLUSe_GT] = ACTIONS(2225), - [anon_sym_e_PLUSo_GT] = ACTIONS(2225), - [anon_sym_err_GT_GT] = ACTIONS(2223), - [anon_sym_out_GT_GT] = ACTIONS(2223), - [anon_sym_e_GT_GT] = ACTIONS(2223), - [anon_sym_o_GT_GT] = ACTIONS(2223), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2223), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2223), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2223), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2223), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(1089), + [aux_sym__repeat_newline] = STATE(1034), [sym_comment] = STATE(1107), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1109), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1776), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_has2] = ACTIONS(1774), + [anon_sym_not_DASHhas2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1776), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_like2] = ACTIONS(1774), + [anon_sym_not_DASHlike2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1776), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1110)] = { - [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [ts_builtin_sym_end] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [sym__unquoted_pattern] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1111)] = { - [aux_sym__repeat_newline] = STATE(1091), + [aux_sym__repeat_newline] = STATE(1035), [sym_comment] = STATE(1111), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1112)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1112), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_GT2] = ACTIONS(1923), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_STAR2] = ACTIONS(1923), + [anon_sym_and2] = ACTIONS(1921), + [anon_sym_xor2] = ACTIONS(1921), + [anon_sym_or2] = ACTIONS(1921), + [anon_sym_not_DASHin2] = ACTIONS(1921), + [anon_sym_has2] = ACTIONS(1921), + [anon_sym_not_DASHhas2] = ACTIONS(1921), + [anon_sym_starts_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), + [anon_sym_ends_DASHwith2] = ACTIONS(1921), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), + [anon_sym_EQ_EQ2] = ACTIONS(1921), + [anon_sym_BANG_EQ2] = ACTIONS(1921), + [anon_sym_LT2] = ACTIONS(1923), + [anon_sym_LT_EQ2] = ACTIONS(1921), + [anon_sym_GT_EQ2] = ACTIONS(1921), + [anon_sym_EQ_TILDE2] = ACTIONS(1921), + [anon_sym_BANG_TILDE2] = ACTIONS(1921), + [anon_sym_like2] = ACTIONS(1921), + [anon_sym_not_DASHlike2] = ACTIONS(1921), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_STAR_STAR2] = ACTIONS(1921), + [anon_sym_PLUS_PLUS2] = ACTIONS(1921), + [anon_sym_SLASH2] = ACTIONS(1923), + [anon_sym_mod2] = ACTIONS(1921), + [anon_sym_SLASH_SLASH2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1923), + [anon_sym_bit_DASHshl2] = ACTIONS(1921), + [anon_sym_bit_DASHshr2] = ACTIONS(1921), + [anon_sym_bit_DASHand2] = ACTIONS(1921), + [anon_sym_bit_DASHxor2] = ACTIONS(1921), + [anon_sym_bit_DASHor2] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1923), + [anon_sym_out_GT] = ACTIONS(1923), + [anon_sym_e_GT] = ACTIONS(1923), + [anon_sym_o_GT] = ACTIONS(1923), + [anon_sym_err_PLUSout_GT] = ACTIONS(1923), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), + [anon_sym_o_PLUSe_GT] = ACTIONS(1923), + [anon_sym_e_PLUSo_GT] = ACTIONS(1923), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [sym__unquoted_pattern] = ACTIONS(1923), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1113)] = { - [aux_sym__repeat_newline] = STATE(1092), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1113), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1114)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1114), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(1036), [sym_comment] = STATE(1115), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5283), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [sym__newline] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_err_GT_PIPE] = ACTIONS(2269), + [anon_sym_out_GT_PIPE] = ACTIONS(2269), + [anon_sym_e_GT_PIPE] = ACTIONS(2269), + [anon_sym_o_GT_PIPE] = ACTIONS(2269), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2269), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2269), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2269), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2269), + [anon_sym_GT2] = ACTIONS(2271), + [anon_sym_DASH2] = ACTIONS(2269), + [anon_sym_STAR2] = ACTIONS(2271), + [anon_sym_and2] = ACTIONS(2269), + [anon_sym_xor2] = ACTIONS(2269), + [anon_sym_or2] = ACTIONS(2269), + [anon_sym_not_DASHin2] = ACTIONS(2269), + [anon_sym_has2] = ACTIONS(2269), + [anon_sym_not_DASHhas2] = ACTIONS(2269), + [anon_sym_starts_DASHwith2] = ACTIONS(2269), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2269), + [anon_sym_ends_DASHwith2] = ACTIONS(2269), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2269), + [anon_sym_EQ_EQ2] = ACTIONS(2269), + [anon_sym_BANG_EQ2] = ACTIONS(2269), + [anon_sym_LT2] = ACTIONS(2271), + [anon_sym_LT_EQ2] = ACTIONS(2269), + [anon_sym_GT_EQ2] = ACTIONS(2269), + [anon_sym_EQ_TILDE2] = ACTIONS(2269), + [anon_sym_BANG_TILDE2] = ACTIONS(2269), + [anon_sym_like2] = ACTIONS(2269), + [anon_sym_not_DASHlike2] = ACTIONS(2269), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2269), + [anon_sym_PLUS_PLUS2] = ACTIONS(2269), + [anon_sym_SLASH2] = ACTIONS(2271), + [anon_sym_mod2] = ACTIONS(2269), + [anon_sym_SLASH_SLASH2] = ACTIONS(2269), + [anon_sym_PLUS2] = ACTIONS(2271), + [anon_sym_bit_DASHshl2] = ACTIONS(2269), + [anon_sym_bit_DASHshr2] = ACTIONS(2269), + [anon_sym_bit_DASHand2] = ACTIONS(2269), + [anon_sym_bit_DASHxor2] = ACTIONS(2269), + [anon_sym_bit_DASHor2] = ACTIONS(2269), + [anon_sym_err_GT] = ACTIONS(2271), + [anon_sym_out_GT] = ACTIONS(2271), + [anon_sym_e_GT] = ACTIONS(2271), + [anon_sym_o_GT] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT] = ACTIONS(2271), + [anon_sym_err_GT_GT] = ACTIONS(2269), + [anon_sym_out_GT_GT] = ACTIONS(2269), + [anon_sym_e_GT_GT] = ACTIONS(2269), + [anon_sym_o_GT_GT] = ACTIONS(2269), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2269), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2269), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2269), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2269), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { - [aux_sym__repeat_newline] = STATE(1094), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1117), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1118)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1118), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [aux_sym__repeat_newline] = STATE(1095), + [sym__expr_parenthesized_immediate] = STATE(5005), [sym_comment] = STATE(1119), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1136), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [aux_sym__repeat_newline] = STATE(1007), + [aux_sym__repeat_newline] = STATE(1037), [sym_comment] = STATE(1121), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1122)] = { - [aux_sym__repeat_newline] = STATE(1096), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1122), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1038), [sym_comment] = STATE(1123), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1338), + [sym__expression_parenthesized] = STATE(4669), + [sym_expr_unary] = STATE(1167), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary_parenthesized] = STATE(1167), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(799), + [sym_val_range] = STATE(1167), + [sym__value] = STATE(1167), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1124), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(2732), + [aux_sym_cmd_identifier_token3] = ACTIONS(191), + [aux_sym_cmd_identifier_token4] = ACTIONS(191), + [aux_sym_cmd_identifier_token5] = ACTIONS(191), + [sym__newline] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1125)] = { + [sym_expr_unary] = STATE(2778), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_parenthesized] = STATE(2529), + [sym_val_range] = STATE(2778), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(2778), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2587), + [sym_val_variable] = STATE(2550), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(2372), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(2619), + [sym__unquoted_with_expr] = STATE(2780), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(1125), - [ts_builtin_sym_end] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [anon_sym_and2] = ACTIONS(2570), - [anon_sym_xor2] = ACTIONS(2570), - [anon_sym_or2] = ACTIONS(2570), - [anon_sym_not_DASHin2] = ACTIONS(2570), - [anon_sym_has2] = ACTIONS(2570), - [anon_sym_not_DASHhas2] = ACTIONS(2570), - [anon_sym_starts_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), - [anon_sym_ends_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), - [anon_sym_EQ_EQ2] = ACTIONS(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [anon_sym_BANG_TILDE2] = ACTIONS(2570), - [anon_sym_like2] = ACTIONS(2570), - [anon_sym_not_DASHlike2] = ACTIONS(2570), - [anon_sym_LPAREN2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(2570), - [anon_sym_PLUS_PLUS2] = ACTIONS(2570), - [anon_sym_SLASH2] = ACTIONS(2572), - [anon_sym_mod2] = ACTIONS(2570), - [anon_sym_SLASH_SLASH2] = ACTIONS(2570), - [anon_sym_PLUS2] = ACTIONS(2572), - [anon_sym_bit_DASHshl2] = ACTIONS(2570), - [anon_sym_bit_DASHshr2] = ACTIONS(2570), - [anon_sym_bit_DASHand2] = ACTIONS(2570), - [anon_sym_bit_DASHxor2] = ACTIONS(2570), - [anon_sym_bit_DASHor2] = ACTIONS(2570), - [anon_sym_err_GT] = ACTIONS(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [sym__unquoted_pattern] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2804), + [aux_sym_cmd_identifier_token3] = ACTIONS(2806), + [aux_sym_cmd_identifier_token4] = ACTIONS(2806), + [aux_sym_cmd_identifier_token5] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_DOT_DOT] = ACTIONS(2816), + [aux_sym_expr_unary_token1] = ACTIONS(2818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2820), + [anon_sym_DOT_DOT_LT] = ACTIONS(2820), + [aux_sym__val_number_decimal_token1] = ACTIONS(2822), + [aux_sym__val_number_decimal_token2] = ACTIONS(2824), + [aux_sym__val_number_decimal_token3] = ACTIONS(2826), + [aux_sym__val_number_decimal_token4] = ACTIONS(2826), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(1126)] = { + [sym_expr_unary] = STATE(2781), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_parenthesized] = STATE(2575), + [sym_val_range] = STATE(2781), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(2781), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2587), + [sym_val_variable] = STATE(2550), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(2372), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(2621), + [sym__unquoted_with_expr] = STATE(2783), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2598), - [anon_sym_in] = ACTIONS(2598), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2598), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2598), - [anon_sym_xor2] = ACTIONS(2598), - [anon_sym_or2] = ACTIONS(2598), - [anon_sym_not_DASHin2] = ACTIONS(2598), - [anon_sym_has2] = ACTIONS(2598), - [anon_sym_not_DASHhas2] = ACTIONS(2598), - [anon_sym_starts_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2598), - [anon_sym_ends_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2598), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2598), - [anon_sym_like2] = ACTIONS(2598), - [anon_sym_not_DASHlike2] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(2602), - [anon_sym_STAR_STAR2] = ACTIONS(2598), - [anon_sym_PLUS_PLUS2] = ACTIONS(2598), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2598), - [anon_sym_SLASH_SLASH2] = ACTIONS(2598), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2598), - [anon_sym_bit_DASHshr2] = ACTIONS(2598), - [anon_sym_bit_DASHand2] = ACTIONS(2598), - [anon_sym_bit_DASHxor2] = ACTIONS(2598), - [anon_sym_bit_DASHor2] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), - [sym__unquoted_pattern] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2804), + [aux_sym_cmd_identifier_token3] = ACTIONS(2806), + [aux_sym_cmd_identifier_token4] = ACTIONS(2806), + [aux_sym_cmd_identifier_token5] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_DOT_DOT] = ACTIONS(2816), + [aux_sym_expr_unary_token1] = ACTIONS(2818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2820), + [anon_sym_DOT_DOT_LT] = ACTIONS(2820), + [aux_sym__val_number_decimal_token1] = ACTIONS(2822), + [aux_sym__val_number_decimal_token2] = ACTIONS(2824), + [aux_sym__val_number_decimal_token3] = ACTIONS(2826), + [aux_sym__val_number_decimal_token4] = ACTIONS(2826), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(1127)] = { + [sym_expr_unary] = STATE(2784), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_parenthesized] = STATE(2554), + [sym_val_range] = STATE(2784), + [sym__val_range] = STATE(4859), + [sym__value] = STATE(2784), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(2587), + [sym_val_variable] = STATE(2550), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(2372), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_unquoted] = STATE(2622), + [sym__unquoted_with_expr] = STATE(2785), + [sym__unquoted_anonymous_prefix] = STATE(4859), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_LPAREN2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1714), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), - [sym__unquoted_pattern] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2804), + [aux_sym_cmd_identifier_token3] = ACTIONS(2806), + [aux_sym_cmd_identifier_token4] = ACTIONS(2806), + [aux_sym_cmd_identifier_token5] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_DOT_DOT] = ACTIONS(2816), + [aux_sym_expr_unary_token1] = ACTIONS(2818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2820), + [anon_sym_DOT_DOT_LT] = ACTIONS(2820), + [aux_sym__val_number_decimal_token1] = ACTIONS(2822), + [aux_sym__val_number_decimal_token2] = ACTIONS(2824), + [aux_sym__val_number_decimal_token3] = ACTIONS(2826), + [aux_sym__val_number_decimal_token4] = ACTIONS(2826), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(1128)] = { - [aux_sym__repeat_newline] = STATE(1097), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1128), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(4464), + [sym__match_pattern_expression] = STATE(4534), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list_body] = STATE(4787), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_rest] = STATE(5183), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4000), + [sym_val_range] = STATE(4712), + [sym__val_range] = STATE(5257), + [sym_val_nothing] = STATE(4714), + [sym_val_bool] = STATE(4442), + [sym_val_variable] = STATE(4001), + [sym_val_number] = STATE(4714), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4714), + [sym_val_filesize] = STATE(4714), + [sym_val_binary] = STATE(4714), + [sym_val_string] = STATE(4714), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_list] = STATE(5494), + [sym__table_head] = STATE(3959), + [sym_val_table] = STATE(4714), + [sym__unquoted_in_list] = STATE(4534), + [sym__unquoted_anonymous_prefix] = STATE(5257), [sym_comment] = STATE(1129), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1423), + [aux_sym_parameter_repeat2] = STATE(4206), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_RBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(1098), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2822), - [sym__newline] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2824), - [anon_sym_DASH2] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_STAR2] = ACTIONS(2824), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2822), - [anon_sym_has2] = ACTIONS(2822), - [anon_sym_not_DASHhas2] = ACTIONS(2822), - [anon_sym_starts_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), - [anon_sym_ends_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), - [anon_sym_EQ_EQ2] = ACTIONS(2822), - [anon_sym_BANG_EQ2] = ACTIONS(2822), - [anon_sym_LT2] = ACTIONS(2824), - [anon_sym_LT_EQ2] = ACTIONS(2822), - [anon_sym_GT_EQ2] = ACTIONS(2822), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2822), - [anon_sym_PLUS_PLUS2] = ACTIONS(2822), - [anon_sym_SLASH2] = ACTIONS(2824), - [anon_sym_mod2] = ACTIONS(2822), - [anon_sym_SLASH_SLASH2] = ACTIONS(2822), - [anon_sym_PLUS2] = ACTIONS(2824), - [anon_sym_bit_DASHshl2] = ACTIONS(2822), - [anon_sym_bit_DASHshr2] = ACTIONS(2822), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [ts_builtin_sym_end] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2578), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2576), + [anon_sym_PLUS_PLUS2] = ACTIONS(2576), + [anon_sym_SLASH2] = ACTIONS(2578), + [anon_sym_mod2] = ACTIONS(2576), + [anon_sym_SLASH_SLASH2] = ACTIONS(2576), + [anon_sym_PLUS2] = ACTIONS(2578), + [anon_sym_bit_DASHshl2] = ACTIONS(2576), + [anon_sym_bit_DASHshr2] = ACTIONS(2576), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [sym__unquoted_pattern] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1039), [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1133)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2826), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2828), - [anon_sym_DASH2] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_STAR2] = ACTIONS(2828), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2826), - [anon_sym_has2] = ACTIONS(2826), - [anon_sym_not_DASHhas2] = ACTIONS(2826), - [anon_sym_starts_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), - [anon_sym_ends_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), - [anon_sym_EQ_EQ2] = ACTIONS(2826), - [anon_sym_BANG_EQ2] = ACTIONS(2826), - [anon_sym_LT2] = ACTIONS(2828), - [anon_sym_LT_EQ2] = ACTIONS(2826), - [anon_sym_GT_EQ2] = ACTIONS(2826), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2826), - [anon_sym_PLUS_PLUS2] = ACTIONS(2826), - [anon_sym_SLASH2] = ACTIONS(2828), - [anon_sym_mod2] = ACTIONS(2826), - [anon_sym_SLASH_SLASH2] = ACTIONS(2826), - [anon_sym_PLUS2] = ACTIONS(2828), - [anon_sym_bit_DASHshl2] = ACTIONS(2826), - [anon_sym_bit_DASHshr2] = ACTIONS(2826), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [ts_builtin_sym_end] = ACTIONS(2604), + [anon_sym_in] = ACTIONS(2604), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2604), + [anon_sym_xor2] = ACTIONS(2604), + [anon_sym_or2] = ACTIONS(2604), + [anon_sym_not_DASHin2] = ACTIONS(2604), + [anon_sym_has2] = ACTIONS(2604), + [anon_sym_not_DASHhas2] = ACTIONS(2604), + [anon_sym_starts_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2604), + [anon_sym_ends_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2604), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2604), + [anon_sym_like2] = ACTIONS(2604), + [anon_sym_not_DASHlike2] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(2608), + [anon_sym_STAR_STAR2] = ACTIONS(2604), + [anon_sym_PLUS_PLUS2] = ACTIONS(2604), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2604), + [anon_sym_SLASH_SLASH2] = ACTIONS(2604), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2604), + [anon_sym_bit_DASHshr2] = ACTIONS(2604), + [anon_sym_bit_DASHand2] = ACTIONS(2604), + [anon_sym_bit_DASHxor2] = ACTIONS(2604), + [anon_sym_bit_DASHor2] = ACTIONS(2604), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [sym__unquoted_pattern] = ACTIONS(2610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1040), [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1135)] = { + [sym__expression] = STATE(5001), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2094), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), - [sym__unquoted_pattern] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2786), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_COLON2] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1136)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1136), - [ts_builtin_sym_end] = ACTIONS(1216), - [anon_sym_in] = ACTIONS(1216), - [sym__newline] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_err_GT_PIPE] = ACTIONS(1216), - [anon_sym_out_GT_PIPE] = ACTIONS(1216), - [anon_sym_e_GT_PIPE] = ACTIONS(1216), - [anon_sym_o_GT_PIPE] = ACTIONS(1216), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1216), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1216), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1216), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1216), - [anon_sym_GT2] = ACTIONS(1218), - [anon_sym_DASH2] = ACTIONS(1216), - [anon_sym_STAR2] = ACTIONS(1218), - [anon_sym_and2] = ACTIONS(1216), - [anon_sym_xor2] = ACTIONS(1216), - [anon_sym_or2] = ACTIONS(1216), - [anon_sym_not_DASHin2] = ACTIONS(1216), - [anon_sym_has2] = ACTIONS(1216), - [anon_sym_not_DASHhas2] = ACTIONS(1216), - [anon_sym_starts_DASHwith2] = ACTIONS(1216), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1216), - [anon_sym_ends_DASHwith2] = ACTIONS(1216), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1216), - [anon_sym_EQ_EQ2] = ACTIONS(1216), - [anon_sym_BANG_EQ2] = ACTIONS(1216), - [anon_sym_LT2] = ACTIONS(1218), - [anon_sym_LT_EQ2] = ACTIONS(1216), - [anon_sym_GT_EQ2] = ACTIONS(1216), - [anon_sym_EQ_TILDE2] = ACTIONS(1216), - [anon_sym_BANG_TILDE2] = ACTIONS(1216), - [anon_sym_like2] = ACTIONS(1216), - [anon_sym_not_DASHlike2] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(1216), - [anon_sym_PLUS_PLUS2] = ACTIONS(1216), - [anon_sym_SLASH2] = ACTIONS(1218), - [anon_sym_mod2] = ACTIONS(1216), - [anon_sym_SLASH_SLASH2] = ACTIONS(1216), - [anon_sym_PLUS2] = ACTIONS(1218), - [anon_sym_bit_DASHshl2] = ACTIONS(1216), - [anon_sym_bit_DASHshr2] = ACTIONS(1216), - [anon_sym_bit_DASHand2] = ACTIONS(1216), - [anon_sym_bit_DASHxor2] = ACTIONS(1216), - [anon_sym_bit_DASHor2] = ACTIONS(1216), - [anon_sym_err_GT] = ACTIONS(1218), - [anon_sym_out_GT] = ACTIONS(1218), - [anon_sym_e_GT] = ACTIONS(1218), - [anon_sym_o_GT] = ACTIONS(1218), - [anon_sym_err_PLUSout_GT] = ACTIONS(1218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), - [anon_sym_o_PLUSe_GT] = ACTIONS(1218), - [anon_sym_e_PLUSo_GT] = ACTIONS(1218), - [anon_sym_err_GT_GT] = ACTIONS(1216), - [anon_sym_out_GT_GT] = ACTIONS(1216), - [anon_sym_e_GT_GT] = ACTIONS(1216), - [anon_sym_o_GT_GT] = ACTIONS(1216), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1216), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1216), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1216), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1216), - [sym__unquoted_pattern] = ACTIONS(2608), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1137)] = { [sym_comment] = STATE(1137), - [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(1226), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1226), - [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(1226), - [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(2606), - [anon_sym_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1226), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1226), - [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(1226), - [anon_sym_out_GT] = ACTIONS(1226), - [anon_sym_e_GT] = ACTIONS(1226), - [anon_sym_o_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT] = ACTIONS(1226), - [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(2608), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(2672), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(2674), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1138)] = { - [aux_sym__repeat_newline] = STATE(1124), + [aux_sym__repeat_newline] = STATE(990), [sym_comment] = STATE(1138), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_STAR2] = ACTIONS(2838), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [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(2836), + [anon_sym_BANG_EQ2] = ACTIONS(2836), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2836), + [anon_sym_GT_EQ2] = ACTIONS(2836), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2838), + [anon_sym_mod2] = ACTIONS(2836), + [anon_sym_SLASH_SLASH2] = ACTIONS(2836), + [anon_sym_PLUS2] = ACTIONS(2838), + [anon_sym_bit_DASHshl2] = ACTIONS(2836), + [anon_sym_bit_DASHshr2] = ACTIONS(2836), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1142), [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_STAR2] = ACTIONS(2842), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2840), + [anon_sym_PLUS_PLUS2] = ACTIONS(2840), + [anon_sym_SLASH2] = ACTIONS(2842), + [anon_sym_mod2] = ACTIONS(2840), + [anon_sym_SLASH_SLASH2] = ACTIONS(2840), + [anon_sym_PLUS2] = ACTIONS(2842), + [anon_sym_bit_DASHshl2] = ACTIONS(2840), + [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1140)] = { - [aux_sym__repeat_newline] = STATE(1131), + [sym__expression] = STATE(5002), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1140), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2786), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_COLON2] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(4553), - [sym__match_pattern_expression] = STATE(4454), - [sym__match_pattern_value] = STATE(4911), - [sym__match_pattern_list_body] = STATE(4682), - [sym__match_pattern_list] = STATE(4912), - [sym__match_pattern_rest] = STATE(5214), - [sym__match_pattern_record] = STATE(4913), - [sym_expr_parenthesized] = STATE(4065), - [sym_val_range] = STATE(4911), - [sym__val_range] = STATE(5274), - [sym_val_nothing] = STATE(4913), - [sym_val_bool] = STATE(4509), - [sym_val_variable] = STATE(4066), - [sym_val_number] = STATE(4913), - [sym__val_number_decimal] = STATE(3770), - [sym__val_number] = STATE(4444), - [sym_val_duration] = STATE(4913), - [sym_val_filesize] = STATE(4913), - [sym_val_binary] = STATE(4913), - [sym_val_string] = STATE(4913), - [sym__raw_str] = STATE(3780), - [sym__str_double_quotes] = STATE(3780), - [sym__str_single_quotes] = STATE(3780), - [sym__str_back_ticks] = STATE(3780), - [sym_val_list] = STATE(5281), - [sym__table_head] = STATE(3913), - [sym_val_table] = STATE(4913), - [sym__unquoted_in_list] = STATE(4454), - [sym__unquoted_anonymous_prefix] = STATE(5274), + [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(1141), - [aux_sym__types_body_repeat1] = STATE(1415), - [aux_sym_parameter_repeat2] = STATE(4219), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [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(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [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(2712), - [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), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1142)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1142), - [ts_builtin_sym_end] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [sym__newline] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_err_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_GT_PIPE] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), - [anon_sym_GT2] = ACTIONS(2576), - [anon_sym_DASH2] = ACTIONS(2574), - [anon_sym_STAR2] = ACTIONS(2576), - [anon_sym_and2] = ACTIONS(2574), - [anon_sym_xor2] = ACTIONS(2574), - [anon_sym_or2] = ACTIONS(2574), - [anon_sym_not_DASHin2] = ACTIONS(2574), - [anon_sym_has2] = ACTIONS(2574), - [anon_sym_not_DASHhas2] = ACTIONS(2574), - [anon_sym_starts_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), - [anon_sym_ends_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), - [anon_sym_EQ_EQ2] = ACTIONS(2574), - [anon_sym_BANG_EQ2] = ACTIONS(2574), - [anon_sym_LT2] = ACTIONS(2576), - [anon_sym_LT_EQ2] = ACTIONS(2574), - [anon_sym_GT_EQ2] = ACTIONS(2574), - [anon_sym_EQ_TILDE2] = ACTIONS(2574), - [anon_sym_BANG_TILDE2] = ACTIONS(2574), - [anon_sym_like2] = ACTIONS(2574), - [anon_sym_not_DASHlike2] = ACTIONS(2574), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_STAR_STAR2] = ACTIONS(2574), - [anon_sym_PLUS_PLUS2] = ACTIONS(2574), - [anon_sym_SLASH2] = ACTIONS(2576), - [anon_sym_mod2] = ACTIONS(2574), - [anon_sym_SLASH_SLASH2] = ACTIONS(2574), - [anon_sym_PLUS2] = ACTIONS(2576), - [anon_sym_bit_DASHshl2] = ACTIONS(2574), - [anon_sym_bit_DASHshr2] = ACTIONS(2574), - [anon_sym_bit_DASHand2] = ACTIONS(2574), - [anon_sym_bit_DASHxor2] = ACTIONS(2574), - [anon_sym_bit_DASHor2] = ACTIONS(2574), - [anon_sym_err_GT] = ACTIONS(2576), - [anon_sym_out_GT] = ACTIONS(2576), - [anon_sym_e_GT] = ACTIONS(2576), - [anon_sym_o_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT] = ACTIONS(2576), - [anon_sym_err_GT_GT] = ACTIONS(2574), - [anon_sym_out_GT_GT] = ACTIONS(2574), - [anon_sym_e_GT_GT] = ACTIONS(2574), - [anon_sym_o_GT_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), - [sym__unquoted_pattern] = ACTIONS(1963), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_STAR2] = ACTIONS(2846), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [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(2844), + [anon_sym_PLUS_PLUS2] = ACTIONS(2844), + [anon_sym_SLASH2] = ACTIONS(2846), + [anon_sym_mod2] = ACTIONS(2844), + [anon_sym_SLASH_SLASH2] = ACTIONS(2844), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1144)] = { + [sym__expr_parenthesized_immediate] = STATE(5283), [sym_comment] = STATE(1144), - [ts_builtin_sym_end] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_GT2] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_STAR2] = ACTIONS(1955), - [anon_sym_and2] = ACTIONS(1953), - [anon_sym_xor2] = ACTIONS(1953), - [anon_sym_or2] = ACTIONS(1953), - [anon_sym_not_DASHin2] = ACTIONS(1953), - [anon_sym_has2] = ACTIONS(1953), - [anon_sym_not_DASHhas2] = ACTIONS(1953), - [anon_sym_starts_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), - [anon_sym_ends_DASHwith2] = ACTIONS(1953), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), - [anon_sym_EQ_EQ2] = ACTIONS(1953), - [anon_sym_BANG_EQ2] = ACTIONS(1953), - [anon_sym_LT2] = ACTIONS(1955), - [anon_sym_LT_EQ2] = ACTIONS(1953), - [anon_sym_GT_EQ2] = ACTIONS(1953), - [anon_sym_EQ_TILDE2] = ACTIONS(1953), - [anon_sym_BANG_TILDE2] = ACTIONS(1953), - [anon_sym_like2] = ACTIONS(1953), - [anon_sym_not_DASHlike2] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_STAR_STAR2] = ACTIONS(1953), - [anon_sym_PLUS_PLUS2] = ACTIONS(1953), - [anon_sym_SLASH2] = ACTIONS(1955), - [anon_sym_mod2] = ACTIONS(1953), - [anon_sym_SLASH_SLASH2] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_bit_DASHshl2] = ACTIONS(1953), - [anon_sym_bit_DASHshr2] = ACTIONS(1953), - [anon_sym_bit_DASHand2] = ACTIONS(1953), - [anon_sym_bit_DASHxor2] = ACTIONS(1953), - [anon_sym_bit_DASHor2] = ACTIONS(1953), - [anon_sym_err_GT] = ACTIONS(1955), - [anon_sym_out_GT] = ACTIONS(1955), - [anon_sym_e_GT] = ACTIONS(1955), - [anon_sym_o_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT] = ACTIONS(1955), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [sym__unquoted_pattern] = ACTIONS(1963), + [ts_builtin_sym_end] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2281), + [sym__newline] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_PIPE] = ACTIONS(2281), + [anon_sym_err_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_GT_PIPE] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), + [anon_sym_GT2] = ACTIONS(2283), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_STAR2] = ACTIONS(2283), + [anon_sym_and2] = ACTIONS(2281), + [anon_sym_xor2] = ACTIONS(2281), + [anon_sym_or2] = ACTIONS(2281), + [anon_sym_not_DASHin2] = ACTIONS(2281), + [anon_sym_has2] = ACTIONS(2281), + [anon_sym_not_DASHhas2] = ACTIONS(2281), + [anon_sym_starts_DASHwith2] = ACTIONS(2281), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2281), + [anon_sym_ends_DASHwith2] = ACTIONS(2281), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2281), + [anon_sym_EQ_EQ2] = ACTIONS(2281), + [anon_sym_BANG_EQ2] = ACTIONS(2281), + [anon_sym_LT2] = ACTIONS(2283), + [anon_sym_LT_EQ2] = ACTIONS(2281), + [anon_sym_GT_EQ2] = ACTIONS(2281), + [anon_sym_EQ_TILDE2] = ACTIONS(2281), + [anon_sym_BANG_TILDE2] = ACTIONS(2281), + [anon_sym_like2] = ACTIONS(2281), + [anon_sym_not_DASHlike2] = ACTIONS(2281), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2281), + [anon_sym_PLUS_PLUS2] = ACTIONS(2281), + [anon_sym_SLASH2] = ACTIONS(2283), + [anon_sym_mod2] = ACTIONS(2281), + [anon_sym_SLASH_SLASH2] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2283), + [anon_sym_bit_DASHshl2] = ACTIONS(2281), + [anon_sym_bit_DASHshr2] = ACTIONS(2281), + [anon_sym_bit_DASHand2] = ACTIONS(2281), + [anon_sym_bit_DASHxor2] = ACTIONS(2281), + [anon_sym_bit_DASHor2] = ACTIONS(2281), + [anon_sym_err_GT] = ACTIONS(2283), + [anon_sym_out_GT] = ACTIONS(2283), + [anon_sym_e_GT] = ACTIONS(2283), + [anon_sym_o_GT] = ACTIONS(2283), + [anon_sym_err_PLUSout_GT] = ACTIONS(2283), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2283), + [anon_sym_o_PLUSe_GT] = ACTIONS(2283), + [anon_sym_e_PLUSo_GT] = ACTIONS(2283), + [anon_sym_err_GT_GT] = ACTIONS(2281), + [anon_sym_out_GT_GT] = ACTIONS(2281), + [anon_sym_e_GT_GT] = ACTIONS(2281), + [anon_sym_o_GT_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1145)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(4464), + [sym__match_pattern_expression] = STATE(4534), + [sym__match_pattern_value] = STATE(4712), + [sym__match_pattern_list_body] = STATE(4677), + [sym__match_pattern_list] = STATE(4713), + [sym__match_pattern_rest] = STATE(5185), + [sym__match_pattern_record] = STATE(4714), + [sym_expr_parenthesized] = STATE(4000), + [sym_val_range] = STATE(4712), + [sym__val_range] = STATE(5257), + [sym_val_nothing] = STATE(4714), + [sym_val_bool] = STATE(4442), + [sym_val_variable] = STATE(4001), + [sym_val_number] = STATE(4714), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4612), + [sym_val_duration] = STATE(4714), + [sym_val_filesize] = STATE(4714), + [sym_val_binary] = STATE(4714), + [sym_val_string] = STATE(4714), + [sym__raw_str] = STATE(3776), + [sym__str_double_quotes] = STATE(3776), + [sym__str_single_quotes] = STATE(3776), + [sym__str_back_ticks] = STATE(3776), + [sym_val_list] = STATE(5494), + [sym__table_head] = STATE(3891), + [sym_val_table] = STATE(4714), + [sym__unquoted_in_list] = STATE(4534), + [sym__unquoted_anonymous_prefix] = STATE(5257), [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_GT2] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_STAR2] = ACTIONS(2788), - [anon_sym_and2] = ACTIONS(2786), - [anon_sym_xor2] = ACTIONS(2786), - [anon_sym_or2] = ACTIONS(2786), - [anon_sym_not_DASHin2] = ACTIONS(2786), - [anon_sym_has2] = ACTIONS(2786), - [anon_sym_not_DASHhas2] = ACTIONS(2786), - [anon_sym_starts_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), - [anon_sym_ends_DASHwith2] = ACTIONS(2786), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), - [anon_sym_EQ_EQ2] = ACTIONS(2786), - [anon_sym_BANG_EQ2] = ACTIONS(2786), - [anon_sym_LT2] = ACTIONS(2788), - [anon_sym_LT_EQ2] = ACTIONS(2786), - [anon_sym_GT_EQ2] = ACTIONS(2786), - [anon_sym_EQ_TILDE2] = ACTIONS(2786), - [anon_sym_BANG_TILDE2] = ACTIONS(2786), - [anon_sym_like2] = ACTIONS(2786), - [anon_sym_not_DASHlike2] = ACTIONS(2786), - [anon_sym_STAR_STAR2] = ACTIONS(2786), - [anon_sym_PLUS_PLUS2] = ACTIONS(2786), - [anon_sym_SLASH2] = ACTIONS(2788), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2788), - [anon_sym_bit_DASHshl2] = ACTIONS(2786), - [anon_sym_bit_DASHshr2] = ACTIONS(2786), - [anon_sym_bit_DASHand2] = ACTIONS(2786), - [anon_sym_bit_DASHxor2] = ACTIONS(2786), - [anon_sym_bit_DASHor2] = ACTIONS(2786), - [anon_sym_err_GT] = ACTIONS(2788), - [anon_sym_out_GT] = ACTIONS(2788), - [anon_sym_e_GT] = ACTIONS(2788), - [anon_sym_o_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT] = ACTIONS(2788), - [anon_sym_err_GT_GT] = ACTIONS(2786), - [anon_sym_out_GT_GT] = ACTIONS(2786), - [anon_sym_e_GT_GT] = ACTIONS(2786), - [anon_sym_o_GT_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1423), + [aux_sym_parameter_repeat2] = STATE(4206), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_RBRACK] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), + [aux_sym__val_number_token1] = ACTIONS(1432), + [aux_sym__val_number_token2] = ACTIONS(1432), + [aux_sym__val_number_token3] = ACTIONS(1432), + [anon_sym_0b] = ACTIONS(1434), + [anon_sym_0o] = ACTIONS(1436), + [anon_sym_0x] = ACTIONS(1436), + [sym_val_date] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1444), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1454), }, [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(1132), + [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(1146), - [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(2366), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2366), - [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(2366), - [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(2366), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2366), - [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(2366), - [anon_sym_out_GT] = ACTIONS(2366), - [anon_sym_e_GT] = ACTIONS(2366), - [anon_sym_o_GT] = ACTIONS(2366), - [anon_sym_err_PLUSout_GT] = ACTIONS(2366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), - [anon_sym_o_PLUSe_GT] = ACTIONS(2366), - [anon_sym_e_PLUSo_GT] = ACTIONS(2366), - [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_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1147), - [ts_builtin_sym_end] = ACTIONS(2584), - [anon_sym_in] = ACTIONS(2584), - [sym__newline] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_err_GT_PIPE] = ACTIONS(2584), - [anon_sym_out_GT_PIPE] = ACTIONS(2584), - [anon_sym_e_GT_PIPE] = ACTIONS(2584), - [anon_sym_o_GT_PIPE] = ACTIONS(2584), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), - [anon_sym_GT2] = ACTIONS(2586), - [anon_sym_DASH2] = ACTIONS(2584), - [anon_sym_STAR2] = ACTIONS(2586), - [anon_sym_and2] = ACTIONS(2584), - [anon_sym_xor2] = ACTIONS(2584), - [anon_sym_or2] = ACTIONS(2584), - [anon_sym_not_DASHin2] = ACTIONS(2584), - [anon_sym_has2] = ACTIONS(2584), - [anon_sym_not_DASHhas2] = ACTIONS(2584), - [anon_sym_starts_DASHwith2] = ACTIONS(2584), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), - [anon_sym_ends_DASHwith2] = ACTIONS(2584), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), - [anon_sym_EQ_EQ2] = ACTIONS(2584), - [anon_sym_BANG_EQ2] = ACTIONS(2584), - [anon_sym_LT2] = ACTIONS(2586), - [anon_sym_LT_EQ2] = ACTIONS(2584), - [anon_sym_GT_EQ2] = ACTIONS(2584), - [anon_sym_EQ_TILDE2] = ACTIONS(2584), - [anon_sym_BANG_TILDE2] = ACTIONS(2584), - [anon_sym_like2] = ACTIONS(2584), - [anon_sym_not_DASHlike2] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2588), - [anon_sym_STAR_STAR2] = ACTIONS(2584), - [anon_sym_PLUS_PLUS2] = ACTIONS(2584), - [anon_sym_SLASH2] = ACTIONS(2586), - [anon_sym_mod2] = ACTIONS(2584), - [anon_sym_SLASH_SLASH2] = ACTIONS(2584), - [anon_sym_PLUS2] = ACTIONS(2586), - [anon_sym_bit_DASHshl2] = ACTIONS(2584), - [anon_sym_bit_DASHshr2] = ACTIONS(2584), - [anon_sym_bit_DASHand2] = ACTIONS(2584), - [anon_sym_bit_DASHxor2] = ACTIONS(2584), - [anon_sym_bit_DASHor2] = ACTIONS(2584), - [anon_sym_err_GT] = ACTIONS(2586), - [anon_sym_out_GT] = ACTIONS(2586), - [anon_sym_e_GT] = ACTIONS(2586), - [anon_sym_o_GT] = ACTIONS(2586), - [anon_sym_err_PLUSout_GT] = ACTIONS(2586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), - [anon_sym_o_PLUSe_GT] = ACTIONS(2586), - [anon_sym_e_PLUSo_GT] = ACTIONS(2586), - [anon_sym_err_GT_GT] = ACTIONS(2584), - [anon_sym_out_GT_GT] = ACTIONS(2584), - [anon_sym_e_GT_GT] = ACTIONS(2584), - [anon_sym_o_GT_GT] = ACTIONS(2584), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), - [sym__unquoted_pattern] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1105), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2726), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_GT2] = ACTIONS(2728), - [anon_sym_DASH2] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_STAR2] = ACTIONS(2728), - [anon_sym_and2] = ACTIONS(2726), - [anon_sym_xor2] = ACTIONS(2726), - [anon_sym_or2] = ACTIONS(2726), - [anon_sym_not_DASHin2] = ACTIONS(2726), - [anon_sym_has2] = ACTIONS(2726), - [anon_sym_not_DASHhas2] = ACTIONS(2726), - [anon_sym_starts_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), - [anon_sym_ends_DASHwith2] = ACTIONS(2726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), - [anon_sym_EQ_EQ2] = ACTIONS(2726), - [anon_sym_BANG_EQ2] = ACTIONS(2726), - [anon_sym_LT2] = ACTIONS(2728), - [anon_sym_LT_EQ2] = ACTIONS(2726), - [anon_sym_GT_EQ2] = ACTIONS(2726), - [anon_sym_EQ_TILDE2] = ACTIONS(2726), - [anon_sym_BANG_TILDE2] = ACTIONS(2726), - [anon_sym_like2] = ACTIONS(2726), - [anon_sym_not_DASHlike2] = ACTIONS(2726), - [anon_sym_STAR_STAR2] = ACTIONS(2726), - [anon_sym_PLUS_PLUS2] = ACTIONS(2726), - [anon_sym_SLASH2] = ACTIONS(2728), - [anon_sym_mod2] = ACTIONS(2726), - [anon_sym_SLASH_SLASH2] = ACTIONS(2726), - [anon_sym_PLUS2] = ACTIONS(2728), - [anon_sym_bit_DASHshl2] = ACTIONS(2726), - [anon_sym_bit_DASHshr2] = ACTIONS(2726), - [anon_sym_bit_DASHand2] = ACTIONS(2726), - [anon_sym_bit_DASHxor2] = ACTIONS(2726), - [anon_sym_bit_DASHor2] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1149)] = { - [aux_sym__repeat_newline] = STATE(1022), + [aux_sym__repeat_newline] = STATE(1143), [sym_comment] = STATE(1149), - [anon_sym_in] = ACTIONS(2482), - [sym__newline] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1150)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym_comment] = STATE(1150), + [anon_sym_in] = ACTIONS(2492), + [sym__newline] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_err_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_GT_PIPE] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_GT2] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_STAR2] = ACTIONS(2494), + [anon_sym_and2] = ACTIONS(2492), + [anon_sym_xor2] = ACTIONS(2492), + [anon_sym_or2] = ACTIONS(2492), + [anon_sym_not_DASHin2] = ACTIONS(2492), + [anon_sym_has2] = ACTIONS(2492), + [anon_sym_not_DASHhas2] = ACTIONS(2492), + [anon_sym_starts_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), + [anon_sym_ends_DASHwith2] = ACTIONS(2492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), + [anon_sym_EQ_EQ2] = ACTIONS(2492), + [anon_sym_BANG_EQ2] = ACTIONS(2492), + [anon_sym_LT2] = ACTIONS(2494), + [anon_sym_LT_EQ2] = ACTIONS(2492), + [anon_sym_GT_EQ2] = ACTIONS(2492), + [anon_sym_EQ_TILDE2] = ACTIONS(2492), + [anon_sym_BANG_TILDE2] = ACTIONS(2492), + [anon_sym_like2] = ACTIONS(2492), + [anon_sym_not_DASHlike2] = ACTIONS(2492), + [anon_sym_STAR_STAR2] = ACTIONS(2492), + [anon_sym_PLUS_PLUS2] = ACTIONS(2492), + [anon_sym_SLASH2] = ACTIONS(2494), + [anon_sym_mod2] = ACTIONS(2492), + [anon_sym_SLASH_SLASH2] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_bit_DASHshl2] = ACTIONS(2492), + [anon_sym_bit_DASHshr2] = ACTIONS(2492), + [anon_sym_bit_DASHand2] = ACTIONS(2492), + [anon_sym_bit_DASHxor2] = ACTIONS(2492), + [anon_sym_bit_DASHor2] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [anon_sym_err_GT_GT] = ACTIONS(2492), + [anon_sym_out_GT_GT] = ACTIONS(2492), + [anon_sym_e_GT_GT] = ACTIONS(2492), + [anon_sym_o_GT_GT] = ACTIONS(2492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1151)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1151), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1152)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1152), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1153)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1153), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [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(1154)] = { + [aux_sym__repeat_newline] = STATE(1180), + [sym_comment] = STATE(1154), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1155)] = { + [aux_sym__repeat_newline] = STATE(1191), + [sym_comment] = STATE(1155), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1156)] = { + [aux_sym__repeat_newline] = STATE(1280), + [sym_comment] = STATE(1156), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1157)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1157), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2911), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [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(1158)] = { + [aux_sym__repeat_newline] = STATE(1257), + [sym_comment] = STATE(1158), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1159)] = { + [aux_sym__repeat_newline] = STATE(1192), + [sym_comment] = STATE(1159), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1160)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1160), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [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(1161)] = { + [aux_sym__repeat_newline] = STATE(1233), + [sym_comment] = STATE(1161), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2842), + [anon_sym_bit_DASHshl2] = ACTIONS(2840), + [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1162)] = { + [sym_comment] = STATE(1162), + [aux_sym_cmd_identifier_token2] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2578), + [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(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [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(2578), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2578), + [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(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(1163)] = { + [sym_comment] = STATE(1163), + [aux_sym_cmd_identifier_token2] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2606), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2606), + [anon_sym_xor2] = ACTIONS(2606), + [anon_sym_or2] = ACTIONS(2606), + [anon_sym_not_DASHin2] = ACTIONS(2606), + [anon_sym_has2] = ACTIONS(2606), + [anon_sym_not_DASHhas2] = ACTIONS(2606), + [anon_sym_starts_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), + [anon_sym_ends_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2606), + [anon_sym_like2] = ACTIONS(2606), + [anon_sym_not_DASHlike2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(2606), + [anon_sym_PLUS_PLUS2] = ACTIONS(2606), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2606), + [anon_sym_SLASH_SLASH2] = ACTIONS(2606), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2606), + [anon_sym_bit_DASHshr2] = ACTIONS(2606), + [anon_sym_bit_DASHand2] = ACTIONS(2606), + [anon_sym_bit_DASHxor2] = ACTIONS(2606), + [anon_sym_bit_DASHor2] = ACTIONS(2606), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(1164)] = { + [sym_comment] = STATE(1164), + [ts_builtin_sym_end] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2348), + [sym__newline] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2348), + [anon_sym_err_GT_PIPE] = ACTIONS(2348), + [anon_sym_out_GT_PIPE] = ACTIONS(2348), + [anon_sym_e_GT_PIPE] = ACTIONS(2348), + [anon_sym_o_GT_PIPE] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2348), + [anon_sym_GT2] = ACTIONS(2350), + [anon_sym_DASH2] = ACTIONS(2348), + [anon_sym_STAR2] = ACTIONS(2350), + [anon_sym_and2] = ACTIONS(2348), + [anon_sym_xor2] = ACTIONS(2348), + [anon_sym_or2] = ACTIONS(2348), + [anon_sym_not_DASHin2] = ACTIONS(2348), + [anon_sym_has2] = ACTIONS(2348), + [anon_sym_not_DASHhas2] = ACTIONS(2348), + [anon_sym_starts_DASHwith2] = ACTIONS(2348), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2348), + [anon_sym_ends_DASHwith2] = ACTIONS(2348), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2348), + [anon_sym_EQ_EQ2] = ACTIONS(2348), + [anon_sym_BANG_EQ2] = ACTIONS(2348), + [anon_sym_LT2] = ACTIONS(2350), + [anon_sym_LT_EQ2] = ACTIONS(2348), + [anon_sym_GT_EQ2] = ACTIONS(2348), + [anon_sym_EQ_TILDE2] = ACTIONS(2348), + [anon_sym_BANG_TILDE2] = ACTIONS(2348), + [anon_sym_like2] = ACTIONS(2348), + [anon_sym_not_DASHlike2] = ACTIONS(2348), + [anon_sym_LPAREN2] = ACTIONS(2348), + [anon_sym_STAR_STAR2] = ACTIONS(2348), + [anon_sym_PLUS_PLUS2] = ACTIONS(2348), + [anon_sym_SLASH2] = ACTIONS(2350), + [anon_sym_mod2] = ACTIONS(2348), + [anon_sym_SLASH_SLASH2] = ACTIONS(2348), + [anon_sym_PLUS2] = ACTIONS(2350), + [anon_sym_bit_DASHshl2] = ACTIONS(2348), + [anon_sym_bit_DASHshr2] = ACTIONS(2348), + [anon_sym_bit_DASHand2] = ACTIONS(2348), + [anon_sym_bit_DASHxor2] = ACTIONS(2348), + [anon_sym_bit_DASHor2] = ACTIONS(2348), + [anon_sym_err_GT] = ACTIONS(2350), + [anon_sym_out_GT] = ACTIONS(2350), + [anon_sym_e_GT] = ACTIONS(2350), + [anon_sym_o_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT] = ACTIONS(2350), + [anon_sym_err_GT_GT] = ACTIONS(2348), + [anon_sym_out_GT_GT] = ACTIONS(2348), + [anon_sym_e_GT_GT] = ACTIONS(2348), + [anon_sym_o_GT_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1165)] = { + [sym_comment] = STATE(1165), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_COLON2] = ACTIONS(1740), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(1193), + [sym_comment] = STATE(1166), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2782), + [anon_sym_bit_DASHshr2] = ACTIONS(2782), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1167)] = { + [sym_comment] = STATE(1167), + [anon_sym_in] = ACTIONS(2477), + [sym__newline] = ACTIONS(2479), [anon_sym_SEMI] = ACTIONS(2482), [anon_sym_PIPE] = ACTIONS(2482), [anon_sym_err_GT_PIPE] = ACTIONS(2482), @@ -133575,47 +135015,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), [anon_sym_RPAREN] = ACTIONS(2482), [anon_sym_GT2] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_DASH2] = ACTIONS(2477), [anon_sym_LBRACE] = ACTIONS(2482), [anon_sym_STAR2] = ACTIONS(2484), - [anon_sym_and2] = ACTIONS(2482), - [anon_sym_xor2] = ACTIONS(2482), - [anon_sym_or2] = ACTIONS(2482), - [anon_sym_not_DASHin2] = ACTIONS(2482), - [anon_sym_has2] = ACTIONS(2482), - [anon_sym_not_DASHhas2] = ACTIONS(2482), - [anon_sym_starts_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), - [anon_sym_ends_DASHwith2] = ACTIONS(2482), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), - [anon_sym_EQ_EQ2] = ACTIONS(2482), - [anon_sym_BANG_EQ2] = ACTIONS(2482), + [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(2484), - [anon_sym_LT_EQ2] = ACTIONS(2482), - [anon_sym_GT_EQ2] = ACTIONS(2482), - [anon_sym_EQ_TILDE2] = ACTIONS(2482), - [anon_sym_BANG_TILDE2] = ACTIONS(2482), - [anon_sym_like2] = ACTIONS(2482), - [anon_sym_not_DASHlike2] = ACTIONS(2482), - [anon_sym_STAR_STAR2] = ACTIONS(2482), - [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [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(2484), - [anon_sym_mod2] = ACTIONS(2482), - [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2482), - [anon_sym_bit_DASHshr2] = ACTIONS(2482), - [anon_sym_bit_DASHand2] = ACTIONS(2482), - [anon_sym_bit_DASHxor2] = ACTIONS(2482), - [anon_sym_bit_DASHor2] = ACTIONS(2482), - [anon_sym_err_GT] = ACTIONS(2484), - [anon_sym_out_GT] = ACTIONS(2484), - [anon_sym_e_GT] = ACTIONS(2484), - [anon_sym_o_GT] = ACTIONS(2484), - [anon_sym_err_PLUSout_GT] = ACTIONS(2484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), - [anon_sym_o_PLUSe_GT] = ACTIONS(2484), - [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2477), + [anon_sym_bit_DASHshr2] = ACTIONS(2477), + [anon_sym_bit_DASHand2] = ACTIONS(2477), + [anon_sym_bit_DASHxor2] = ACTIONS(2477), + [anon_sym_bit_DASHor2] = ACTIONS(2477), + [anon_sym_err_GT] = ACTIONS(2486), + [anon_sym_out_GT] = ACTIONS(2486), + [anon_sym_e_GT] = ACTIONS(2486), + [anon_sym_o_GT] = ACTIONS(2486), + [anon_sym_err_PLUSout_GT] = ACTIONS(2486), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2486), + [anon_sym_o_PLUSe_GT] = ACTIONS(2486), + [anon_sym_e_PLUSo_GT] = ACTIONS(2486), [anon_sym_err_GT_GT] = ACTIONS(2482), [anon_sym_out_GT_GT] = ACTIONS(2482), [anon_sym_e_GT_GT] = ACTIONS(2482), @@ -133626,1217 +135066,2421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(1372), - [sym__expression_parenthesized] = STATE(4648), - [sym_expr_unary] = STATE(1187), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary_parenthesized] = STATE(1187), - [sym__expr_binary_expression_parenthesized] = STATE(2191), - [sym_expr_parenthesized] = STATE(849), - [sym_val_range] = STATE(1187), - [sym__value] = STATE(1187), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(1150), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(2724), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(1168)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1168), + [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(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [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(1169)] = { + [sym_comment] = STATE(1169), + [ts_builtin_sym_end] = ACTIONS(2588), + [anon_sym_finally] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [sym__newline] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_err_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_GT_PIPE] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), + [anon_sym_GT2] = ACTIONS(2590), + [anon_sym_DASH2] = ACTIONS(2588), + [anon_sym_STAR2] = ACTIONS(2590), + [anon_sym_and2] = ACTIONS(2588), + [anon_sym_xor2] = ACTIONS(2588), + [anon_sym_or2] = ACTIONS(2588), + [anon_sym_not_DASHin2] = ACTIONS(2588), + [anon_sym_has2] = ACTIONS(2588), + [anon_sym_not_DASHhas2] = ACTIONS(2588), + [anon_sym_starts_DASHwith2] = ACTIONS(2588), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2588), + [anon_sym_ends_DASHwith2] = ACTIONS(2588), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2588), + [anon_sym_EQ_EQ2] = ACTIONS(2588), + [anon_sym_BANG_EQ2] = ACTIONS(2588), + [anon_sym_LT2] = ACTIONS(2590), + [anon_sym_LT_EQ2] = ACTIONS(2588), + [anon_sym_GT_EQ2] = ACTIONS(2588), + [anon_sym_EQ_TILDE2] = ACTIONS(2588), + [anon_sym_BANG_TILDE2] = ACTIONS(2588), + [anon_sym_like2] = ACTIONS(2588), + [anon_sym_not_DASHlike2] = ACTIONS(2588), + [anon_sym_STAR_STAR2] = ACTIONS(2588), + [anon_sym_PLUS_PLUS2] = ACTIONS(2588), + [anon_sym_SLASH2] = ACTIONS(2590), + [anon_sym_mod2] = ACTIONS(2588), + [anon_sym_SLASH_SLASH2] = ACTIONS(2588), + [anon_sym_PLUS2] = ACTIONS(2590), + [anon_sym_bit_DASHshl2] = ACTIONS(2588), + [anon_sym_bit_DASHshr2] = ACTIONS(2588), + [anon_sym_bit_DASHand2] = ACTIONS(2588), + [anon_sym_bit_DASHxor2] = ACTIONS(2588), + [anon_sym_bit_DASHor2] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2588), + [anon_sym_out_GT_GT] = ACTIONS(2588), + [anon_sym_e_GT_GT] = ACTIONS(2588), + [anon_sym_o_GT_GT] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1170)] = { + [aux_sym__repeat_newline] = STATE(1194), + [sym_comment] = STATE(1170), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1171)] = { + [sym_comment] = STATE(1171), + [anon_sym_in] = ACTIONS(2700), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2700), + [anon_sym_has2] = ACTIONS(2700), + [anon_sym_not_DASHhas2] = ACTIONS(2700), + [anon_sym_starts_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), + [anon_sym_ends_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1172)] = { + [sym_comment] = STATE(1172), + [ts_builtin_sym_end] = ACTIONS(2361), + [anon_sym_in] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_err_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_GT_PIPE] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2361), + [anon_sym_GT2] = ACTIONS(2363), + [anon_sym_DASH2] = ACTIONS(2361), + [anon_sym_STAR2] = ACTIONS(2363), + [anon_sym_and2] = ACTIONS(2361), + [anon_sym_xor2] = ACTIONS(2361), + [anon_sym_or2] = ACTIONS(2361), + [anon_sym_not_DASHin2] = ACTIONS(2361), + [anon_sym_has2] = ACTIONS(2361), + [anon_sym_not_DASHhas2] = ACTIONS(2361), + [anon_sym_starts_DASHwith2] = ACTIONS(2361), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2361), + [anon_sym_ends_DASHwith2] = ACTIONS(2361), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2361), + [anon_sym_EQ_EQ2] = ACTIONS(2361), + [anon_sym_BANG_EQ2] = ACTIONS(2361), + [anon_sym_LT2] = ACTIONS(2363), + [anon_sym_LT_EQ2] = ACTIONS(2361), + [anon_sym_GT_EQ2] = ACTIONS(2361), + [anon_sym_EQ_TILDE2] = ACTIONS(2361), + [anon_sym_BANG_TILDE2] = ACTIONS(2361), + [anon_sym_like2] = ACTIONS(2361), + [anon_sym_not_DASHlike2] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR_STAR2] = ACTIONS(2361), + [anon_sym_PLUS_PLUS2] = ACTIONS(2361), + [anon_sym_SLASH2] = ACTIONS(2363), + [anon_sym_mod2] = ACTIONS(2361), + [anon_sym_SLASH_SLASH2] = ACTIONS(2361), + [anon_sym_PLUS2] = ACTIONS(2363), + [anon_sym_bit_DASHshl2] = ACTIONS(2361), + [anon_sym_bit_DASHshr2] = ACTIONS(2361), + [anon_sym_bit_DASHand2] = ACTIONS(2361), + [anon_sym_bit_DASHxor2] = ACTIONS(2361), + [anon_sym_bit_DASHor2] = ACTIONS(2361), + [anon_sym_err_GT] = ACTIONS(2363), + [anon_sym_out_GT] = ACTIONS(2363), + [anon_sym_e_GT] = ACTIONS(2363), + [anon_sym_o_GT] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT] = ACTIONS(2363), + [anon_sym_err_GT_GT] = ACTIONS(2361), + [anon_sym_out_GT_GT] = ACTIONS(2361), + [anon_sym_e_GT_GT] = ACTIONS(2361), + [anon_sym_o_GT_GT] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1173)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1173), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [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(1174)] = { + [aux_sym__repeat_newline] = STATE(1195), + [sym_comment] = STATE(1174), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1175)] = { + [aux_sym__repeat_newline] = STATE(1153), + [sym_comment] = STATE(1175), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1176)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1176), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [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(1177)] = { + [aux_sym__repeat_newline] = STATE(1196), + [sym_comment] = STATE(1177), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1178)] = { + [sym_comment] = STATE(1178), + [anon_sym_in] = ACTIONS(2700), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2702), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2700), + [anon_sym_has2] = ACTIONS(2700), + [anon_sym_not_DASHhas2] = ACTIONS(2700), + [anon_sym_starts_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), + [anon_sym_ends_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), + [anon_sym_EQ_EQ2] = ACTIONS(2700), + [anon_sym_BANG_EQ2] = ACTIONS(2700), + [anon_sym_LT2] = ACTIONS(2702), + [anon_sym_LT_EQ2] = ACTIONS(2700), + [anon_sym_GT_EQ2] = ACTIONS(2700), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1179)] = { + [aux_sym__repeat_newline] = STATE(1258), + [sym_comment] = STATE(1179), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1180)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1180), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [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(1181)] = { + [sym_comment] = STATE(1181), + [anon_sym_in] = ACTIONS(2700), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2702), + [anon_sym_DASH2] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2700), + [anon_sym_has2] = ACTIONS(2700), + [anon_sym_not_DASHhas2] = ACTIONS(2700), + [anon_sym_starts_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), + [anon_sym_ends_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), + [anon_sym_EQ_EQ2] = ACTIONS(2700), + [anon_sym_BANG_EQ2] = ACTIONS(2700), + [anon_sym_LT2] = ACTIONS(2702), + [anon_sym_LT_EQ2] = ACTIONS(2700), + [anon_sym_GT_EQ2] = ACTIONS(2700), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2702), + [anon_sym_bit_DASHshl2] = ACTIONS(2700), + [anon_sym_bit_DASHshr2] = ACTIONS(2700), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1182)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1182), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1183)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1183), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2796), + [anon_sym_BANG_EQ2] = ACTIONS(2796), + [anon_sym_LT2] = ACTIONS(2798), + [anon_sym_LT_EQ2] = ACTIONS(2796), + [anon_sym_GT_EQ2] = ACTIONS(2796), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1184)] = { + [sym__ctrl_match_body] = STATE(5392), + [sym_match_arm] = STATE(4897), + [sym_default_arm] = STATE(4897), + [sym_match_pattern] = STATE(5399), + [sym__match_pattern] = STATE(4099), + [sym__match_pattern_expression] = STATE(4655), + [sym__match_pattern_value] = STATE(4656), + [sym__match_pattern_list] = STATE(4659), + [sym__match_pattern_record] = STATE(4663), + [sym_expr_parenthesized] = STATE(3961), + [sym_val_range] = STATE(4656), + [sym__val_range] = STATE(5303), + [sym_val_nothing] = STATE(4663), + [sym_val_bool] = STATE(4358), + [sym_val_variable] = STATE(3966), + [sym_val_number] = STATE(4663), + [sym__val_number_decimal] = STATE(3674), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(4663), + [sym_val_filesize] = STATE(4663), + [sym_val_binary] = STATE(4663), + [sym_val_string] = STATE(4663), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_table] = STATE(4663), + [sym_unquoted] = STATE(4665), + [sym__unquoted_anonymous_prefix] = STATE(5303), + [sym_comment] = STATE(1184), + [aux_sym__types_body_repeat1] = STATE(1373), + [aux_sym__ctrl_match_body_repeat1] = STATE(1407), + [anon_sym_true] = ACTIONS(2935), + [anon_sym_false] = ACTIONS(2935), + [anon_sym_null] = ACTIONS(2937), + [aux_sym_cmd_identifier_token3] = ACTIONS(2939), + [aux_sym_cmd_identifier_token4] = ACTIONS(2939), + [aux_sym_cmd_identifier_token5] = ACTIONS(2939), + [sym__newline] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym__] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_decimal_token2] = ACTIONS(2959), + [aux_sym__val_number_decimal_token3] = ACTIONS(2961), + [aux_sym__val_number_decimal_token4] = ACTIONS(2961), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), + }, + [STATE(1185)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1185), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2796), + [anon_sym_BANG_EQ2] = ACTIONS(2796), + [anon_sym_LT2] = ACTIONS(2798), + [anon_sym_LT_EQ2] = ACTIONS(2796), + [anon_sym_GT_EQ2] = ACTIONS(2796), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2796), + [anon_sym_bit_DASHshr2] = ACTIONS(2796), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1186)] = { + [sym__ctrl_match_body] = STATE(5262), + [sym_match_arm] = STATE(4897), + [sym_default_arm] = STATE(4897), + [sym_match_pattern] = STATE(5399), + [sym__match_pattern] = STATE(4099), + [sym__match_pattern_expression] = STATE(4655), + [sym__match_pattern_value] = STATE(4656), + [sym__match_pattern_list] = STATE(4659), + [sym__match_pattern_record] = STATE(4663), + [sym_expr_parenthesized] = STATE(3961), + [sym_val_range] = STATE(4656), + [sym__val_range] = STATE(5303), + [sym_val_nothing] = STATE(4663), + [sym_val_bool] = STATE(4358), + [sym_val_variable] = STATE(3966), + [sym_val_number] = STATE(4663), + [sym__val_number_decimal] = STATE(3674), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(4663), + [sym_val_filesize] = STATE(4663), + [sym_val_binary] = STATE(4663), + [sym_val_string] = STATE(4663), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_table] = STATE(4663), + [sym_unquoted] = STATE(4665), + [sym__unquoted_anonymous_prefix] = STATE(5303), + [sym_comment] = STATE(1186), + [aux_sym__types_body_repeat1] = STATE(1373), + [aux_sym__ctrl_match_body_repeat1] = STATE(1407), + [anon_sym_true] = ACTIONS(2935), + [anon_sym_false] = ACTIONS(2935), + [anon_sym_null] = ACTIONS(2937), + [aux_sym_cmd_identifier_token3] = ACTIONS(2939), + [aux_sym_cmd_identifier_token4] = ACTIONS(2939), + [aux_sym_cmd_identifier_token5] = ACTIONS(2939), + [sym__newline] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_decimal_token2] = ACTIONS(2959), + [aux_sym__val_number_decimal_token3] = ACTIONS(2961), + [aux_sym__val_number_decimal_token4] = ACTIONS(2961), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, - [STATE(1151)] = { - [aux_sym__repeat_newline] = STATE(995), - [sym_comment] = STATE(1151), - [anon_sym_in] = ACTIONS(2358), - [sym__newline] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_err_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_GT_PIPE] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_GT2] = ACTIONS(2360), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_STAR2] = ACTIONS(2360), - [anon_sym_and2] = ACTIONS(2358), - [anon_sym_xor2] = ACTIONS(2358), - [anon_sym_or2] = ACTIONS(2358), - [anon_sym_not_DASHin2] = ACTIONS(2358), - [anon_sym_has2] = ACTIONS(2358), - [anon_sym_not_DASHhas2] = ACTIONS(2358), - [anon_sym_starts_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), - [anon_sym_ends_DASHwith2] = ACTIONS(2358), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), - [anon_sym_EQ_EQ2] = ACTIONS(2358), - [anon_sym_BANG_EQ2] = ACTIONS(2358), - [anon_sym_LT2] = ACTIONS(2360), - [anon_sym_LT_EQ2] = ACTIONS(2358), - [anon_sym_GT_EQ2] = ACTIONS(2358), - [anon_sym_EQ_TILDE2] = ACTIONS(2358), - [anon_sym_BANG_TILDE2] = ACTIONS(2358), - [anon_sym_like2] = ACTIONS(2358), - [anon_sym_not_DASHlike2] = ACTIONS(2358), - [anon_sym_STAR_STAR2] = ACTIONS(2358), - [anon_sym_PLUS_PLUS2] = ACTIONS(2358), - [anon_sym_SLASH2] = ACTIONS(2360), - [anon_sym_mod2] = ACTIONS(2358), - [anon_sym_SLASH_SLASH2] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2360), - [anon_sym_bit_DASHshl2] = ACTIONS(2358), - [anon_sym_bit_DASHshr2] = ACTIONS(2358), - [anon_sym_bit_DASHand2] = ACTIONS(2358), - [anon_sym_bit_DASHxor2] = ACTIONS(2358), - [anon_sym_bit_DASHor2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(2360), - [anon_sym_out_GT] = ACTIONS(2360), - [anon_sym_e_GT] = ACTIONS(2360), - [anon_sym_o_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT] = ACTIONS(2360), - [anon_sym_err_GT_GT] = ACTIONS(2358), - [anon_sym_out_GT_GT] = ACTIONS(2358), - [anon_sym_e_GT_GT] = ACTIONS(2358), - [anon_sym_o_GT_GT] = ACTIONS(2358), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [STATE(1187)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1187), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2796), + [anon_sym_BANG_EQ2] = ACTIONS(2796), + [anon_sym_LT2] = ACTIONS(2798), + [anon_sym_LT_EQ2] = ACTIONS(2796), + [anon_sym_GT_EQ2] = ACTIONS(2796), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2796), + [anon_sym_bit_DASHshr2] = ACTIONS(2796), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1265), - [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [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), + [STATE(1188)] = { + [sym_comment] = STATE(1188), + [ts_builtin_sym_end] = ACTIONS(2427), + [anon_sym_finally] = ACTIONS(2427), + [anon_sym_in] = ACTIONS(2427), + [sym__newline] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_err_GT_PIPE] = ACTIONS(2427), + [anon_sym_out_GT_PIPE] = ACTIONS(2427), + [anon_sym_e_GT_PIPE] = ACTIONS(2427), + [anon_sym_o_GT_PIPE] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2427), + [anon_sym_GT2] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2427), + [anon_sym_STAR2] = ACTIONS(2429), + [anon_sym_and2] = ACTIONS(2427), + [anon_sym_xor2] = ACTIONS(2427), + [anon_sym_or2] = ACTIONS(2427), + [anon_sym_not_DASHin2] = ACTIONS(2427), + [anon_sym_has2] = ACTIONS(2427), + [anon_sym_not_DASHhas2] = ACTIONS(2427), + [anon_sym_starts_DASHwith2] = ACTIONS(2427), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2427), + [anon_sym_ends_DASHwith2] = ACTIONS(2427), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2427), + [anon_sym_EQ_EQ2] = ACTIONS(2427), + [anon_sym_BANG_EQ2] = ACTIONS(2427), + [anon_sym_LT2] = ACTIONS(2429), + [anon_sym_LT_EQ2] = ACTIONS(2427), + [anon_sym_GT_EQ2] = ACTIONS(2427), + [anon_sym_EQ_TILDE2] = ACTIONS(2427), + [anon_sym_BANG_TILDE2] = ACTIONS(2427), + [anon_sym_like2] = ACTIONS(2427), + [anon_sym_not_DASHlike2] = ACTIONS(2427), + [anon_sym_STAR_STAR2] = ACTIONS(2427), + [anon_sym_PLUS_PLUS2] = ACTIONS(2427), + [anon_sym_SLASH2] = ACTIONS(2429), + [anon_sym_mod2] = ACTIONS(2427), + [anon_sym_SLASH_SLASH2] = ACTIONS(2427), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_bit_DASHshl2] = ACTIONS(2427), + [anon_sym_bit_DASHshr2] = ACTIONS(2427), + [anon_sym_bit_DASHand2] = ACTIONS(2427), + [anon_sym_bit_DASHxor2] = ACTIONS(2427), + [anon_sym_bit_DASHor2] = ACTIONS(2427), + [anon_sym_err_GT] = ACTIONS(2429), + [anon_sym_out_GT] = ACTIONS(2429), + [anon_sym_e_GT] = ACTIONS(2429), + [anon_sym_o_GT] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT] = ACTIONS(2429), + [anon_sym_err_GT_GT] = ACTIONS(2427), + [anon_sym_out_GT_GT] = ACTIONS(2427), + [anon_sym_e_GT_GT] = ACTIONS(2427), + [anon_sym_o_GT_GT] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2427), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1153)] = { - [sym__expression] = STATE(5060), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(1153), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(1189)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1154)] = { - [sym__expression] = STATE(5065), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(1154), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(1190)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1155)] = { - [sym_comment] = STATE(1155), - [ts_builtin_sym_end] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [sym__newline] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_err_GT_PIPE] = ACTIONS(2336), - [anon_sym_out_GT_PIPE] = ACTIONS(2336), - [anon_sym_e_GT_PIPE] = ACTIONS(2336), - [anon_sym_o_GT_PIPE] = ACTIONS(2336), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2336), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2336), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2336), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2336), - [anon_sym_GT2] = ACTIONS(2338), - [anon_sym_DASH2] = ACTIONS(2336), - [anon_sym_STAR2] = ACTIONS(2338), - [anon_sym_and2] = ACTIONS(2336), - [anon_sym_xor2] = ACTIONS(2336), - [anon_sym_or2] = ACTIONS(2336), - [anon_sym_not_DASHin2] = ACTIONS(2336), - [anon_sym_has2] = ACTIONS(2336), - [anon_sym_not_DASHhas2] = ACTIONS(2336), - [anon_sym_starts_DASHwith2] = ACTIONS(2336), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2336), - [anon_sym_ends_DASHwith2] = ACTIONS(2336), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2336), - [anon_sym_EQ_EQ2] = ACTIONS(2336), - [anon_sym_BANG_EQ2] = ACTIONS(2336), - [anon_sym_LT2] = ACTIONS(2338), - [anon_sym_LT_EQ2] = ACTIONS(2336), - [anon_sym_GT_EQ2] = ACTIONS(2336), - [anon_sym_EQ_TILDE2] = ACTIONS(2336), - [anon_sym_BANG_TILDE2] = ACTIONS(2336), - [anon_sym_like2] = ACTIONS(2336), - [anon_sym_not_DASHlike2] = ACTIONS(2336), - [anon_sym_LPAREN2] = ACTIONS(2336), - [anon_sym_STAR_STAR2] = ACTIONS(2336), - [anon_sym_PLUS_PLUS2] = ACTIONS(2336), - [anon_sym_SLASH2] = ACTIONS(2338), - [anon_sym_mod2] = ACTIONS(2336), - [anon_sym_SLASH_SLASH2] = ACTIONS(2336), - [anon_sym_PLUS2] = ACTIONS(2338), - [anon_sym_bit_DASHshl2] = ACTIONS(2336), - [anon_sym_bit_DASHshr2] = ACTIONS(2336), - [anon_sym_bit_DASHand2] = ACTIONS(2336), - [anon_sym_bit_DASHxor2] = ACTIONS(2336), - [anon_sym_bit_DASHor2] = ACTIONS(2336), - [anon_sym_err_GT] = ACTIONS(2338), - [anon_sym_out_GT] = ACTIONS(2338), - [anon_sym_e_GT] = ACTIONS(2338), - [anon_sym_o_GT] = ACTIONS(2338), - [anon_sym_err_PLUSout_GT] = ACTIONS(2338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2338), - [anon_sym_o_PLUSe_GT] = ACTIONS(2338), - [anon_sym_e_PLUSo_GT] = ACTIONS(2338), - [anon_sym_err_GT_GT] = ACTIONS(2336), - [anon_sym_out_GT_GT] = ACTIONS(2336), - [anon_sym_e_GT_GT] = ACTIONS(2336), - [anon_sym_o_GT_GT] = ACTIONS(2336), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2336), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2336), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2336), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2336), + [STATE(1191)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1191), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2911), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1175), - [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1192)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1192), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2696), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2698), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2696), - [anon_sym_has2] = ACTIONS(2696), - [anon_sym_not_DASHhas2] = ACTIONS(2696), - [anon_sym_starts_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), - [anon_sym_ends_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), - [anon_sym_EQ_EQ2] = ACTIONS(2696), - [anon_sym_BANG_EQ2] = ACTIONS(2696), - [anon_sym_LT2] = ACTIONS(2698), - [anon_sym_LT_EQ2] = ACTIONS(2696), - [anon_sym_GT_EQ2] = ACTIONS(2696), - [anon_sym_EQ_TILDE2] = ACTIONS(2696), - [anon_sym_BANG_TILDE2] = ACTIONS(2696), - [anon_sym_like2] = ACTIONS(2696), - [anon_sym_not_DASHlike2] = ACTIONS(2696), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2696), - [anon_sym_bit_DASHshr2] = ACTIONS(2696), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [STATE(1193)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1193), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2796), + [anon_sym_BANG_EQ2] = ACTIONS(2796), + [anon_sym_LT2] = ACTIONS(2798), + [anon_sym_LT_EQ2] = ACTIONS(2796), + [anon_sym_GT_EQ2] = ACTIONS(2796), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2796), + [anon_sym_bit_DASHshr2] = ACTIONS(2796), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1176), - [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1194)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1194), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(1178), - [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1196)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1196), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [STATE(1197)] = { + [aux_sym__repeat_newline] = STATE(1204), + [sym_comment] = STATE(1197), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [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(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1180), - [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1198)] = { + [aux_sym__repeat_newline] = STATE(1157), + [sym_comment] = STATE(1198), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1163)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1163), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [STATE(1199)] = { + [aux_sym__repeat_newline] = STATE(1264), + [sym_comment] = STATE(1199), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1164)] = { - [sym__ctrl_match_body] = STATE(5232), - [sym_match_arm] = STATE(4730), - [sym_default_arm] = STATE(4730), - [sym_match_pattern] = STATE(5108), - [sym__match_pattern] = STATE(4120), - [sym__match_pattern_expression] = STATE(4468), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4480), - [sym__match_pattern_record] = STATE(4490), - [sym_expr_parenthesized] = STATE(3880), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5398), - [sym_val_nothing] = STATE(4490), - [sym_val_bool] = STATE(4344), - [sym_val_variable] = STATE(3881), - [sym_val_number] = STATE(4490), - [sym__val_number_decimal] = STATE(3707), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(4490), - [sym_val_filesize] = STATE(4490), - [sym_val_binary] = STATE(4490), - [sym_val_string] = STATE(4490), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_table] = STATE(4490), - [sym_unquoted] = STATE(4507), - [sym__unquoted_anonymous_prefix] = STATE(5398), - [sym_comment] = STATE(1164), - [aux_sym__types_body_repeat1] = STATE(1369), - [aux_sym__ctrl_match_body_repeat1] = STATE(1399), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2890), - [aux_sym_cmd_identifier_token3] = ACTIONS(2892), - [aux_sym_cmd_identifier_token4] = ACTIONS(2892), - [aux_sym_cmd_identifier_token5] = ACTIONS(2892), - [sym__newline] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym__] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), - [anon_sym_DOT_DOT_LT] = ACTIONS(2908), - [aux_sym__val_number_decimal_token1] = ACTIONS(2910), - [aux_sym__val_number_decimal_token2] = ACTIONS(2912), - [aux_sym__val_number_decimal_token3] = ACTIONS(2914), - [aux_sym__val_number_decimal_token4] = ACTIONS(2914), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), + [STATE(1200)] = { + [sym_comment] = STATE(1200), + [ts_builtin_sym_end] = ACTIONS(2389), + [anon_sym_finally] = ACTIONS(2389), + [anon_sym_in] = ACTIONS(2389), + [sym__newline] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_PIPE] = ACTIONS(2389), + [anon_sym_err_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_GT_PIPE] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2389), + [anon_sym_GT2] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_STAR2] = ACTIONS(2391), + [anon_sym_and2] = ACTIONS(2389), + [anon_sym_xor2] = ACTIONS(2389), + [anon_sym_or2] = ACTIONS(2389), + [anon_sym_not_DASHin2] = ACTIONS(2389), + [anon_sym_has2] = ACTIONS(2389), + [anon_sym_not_DASHhas2] = ACTIONS(2389), + [anon_sym_starts_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2389), + [anon_sym_ends_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2389), + [anon_sym_EQ_EQ2] = ACTIONS(2389), + [anon_sym_BANG_EQ2] = ACTIONS(2389), + [anon_sym_LT2] = ACTIONS(2391), + [anon_sym_LT_EQ2] = ACTIONS(2389), + [anon_sym_GT_EQ2] = ACTIONS(2389), + [anon_sym_EQ_TILDE2] = ACTIONS(2389), + [anon_sym_BANG_TILDE2] = ACTIONS(2389), + [anon_sym_like2] = ACTIONS(2389), + [anon_sym_not_DASHlike2] = ACTIONS(2389), + [anon_sym_STAR_STAR2] = ACTIONS(2389), + [anon_sym_PLUS_PLUS2] = ACTIONS(2389), + [anon_sym_SLASH2] = ACTIONS(2391), + [anon_sym_mod2] = ACTIONS(2389), + [anon_sym_SLASH_SLASH2] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_bit_DASHshl2] = ACTIONS(2389), + [anon_sym_bit_DASHshr2] = ACTIONS(2389), + [anon_sym_bit_DASHand2] = ACTIONS(2389), + [anon_sym_bit_DASHxor2] = ACTIONS(2389), + [anon_sym_bit_DASHor2] = ACTIONS(2389), + [anon_sym_err_GT] = ACTIONS(2391), + [anon_sym_out_GT] = ACTIONS(2391), + [anon_sym_e_GT] = ACTIONS(2391), + [anon_sym_o_GT] = ACTIONS(2391), + [anon_sym_err_PLUSout_GT] = ACTIONS(2391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2391), + [anon_sym_o_PLUSe_GT] = ACTIONS(2391), + [anon_sym_e_PLUSo_GT] = ACTIONS(2391), + [anon_sym_err_GT_GT] = ACTIONS(2389), + [anon_sym_out_GT_GT] = ACTIONS(2389), + [anon_sym_e_GT_GT] = ACTIONS(2389), + [anon_sym_o_GT_GT] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1165)] = { - [sym__ctrl_match_body] = STATE(5250), - [sym_match_arm] = STATE(4730), - [sym_default_arm] = STATE(4730), - [sym_match_pattern] = STATE(5108), - [sym__match_pattern] = STATE(4120), - [sym__match_pattern_expression] = STATE(4468), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4480), - [sym__match_pattern_record] = STATE(4490), - [sym_expr_parenthesized] = STATE(3880), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5398), - [sym_val_nothing] = STATE(4490), - [sym_val_bool] = STATE(4344), - [sym_val_variable] = STATE(3881), - [sym_val_number] = STATE(4490), - [sym__val_number_decimal] = STATE(3707), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(4490), - [sym_val_filesize] = STATE(4490), - [sym_val_binary] = STATE(4490), - [sym_val_string] = STATE(4490), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_table] = STATE(4490), - [sym_unquoted] = STATE(4507), - [sym__unquoted_anonymous_prefix] = STATE(5398), - [sym_comment] = STATE(1165), - [aux_sym__types_body_repeat1] = STATE(1369), - [aux_sym__ctrl_match_body_repeat1] = STATE(1399), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2890), - [aux_sym_cmd_identifier_token3] = ACTIONS(2892), - [aux_sym_cmd_identifier_token4] = ACTIONS(2892), - [aux_sym_cmd_identifier_token5] = ACTIONS(2892), - [sym__newline] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym__] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), - [anon_sym_DOT_DOT_LT] = ACTIONS(2908), - [aux_sym__val_number_decimal_token1] = ACTIONS(2910), - [aux_sym__val_number_decimal_token2] = ACTIONS(2912), - [aux_sym__val_number_decimal_token3] = ACTIONS(2914), - [aux_sym__val_number_decimal_token4] = ACTIONS(2914), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), + [STATE(1201)] = { + [sym_comment] = STATE(1201), + [anon_sym_in] = ACTIONS(2700), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2702), + [anon_sym_DASH2] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2702), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2700), + [anon_sym_has2] = ACTIONS(2700), + [anon_sym_not_DASHhas2] = ACTIONS(2700), + [anon_sym_starts_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), + [anon_sym_ends_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), + [anon_sym_EQ_EQ2] = ACTIONS(2700), + [anon_sym_BANG_EQ2] = ACTIONS(2700), + [anon_sym_LT2] = ACTIONS(2702), + [anon_sym_LT_EQ2] = ACTIONS(2700), + [anon_sym_GT_EQ2] = ACTIONS(2700), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2702), + [anon_sym_mod2] = ACTIONS(2700), + [anon_sym_SLASH_SLASH2] = ACTIONS(2700), + [anon_sym_PLUS2] = ACTIONS(2702), + [anon_sym_bit_DASHshl2] = ACTIONS(2700), + [anon_sym_bit_DASHshr2] = ACTIONS(2700), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1166)] = { - [sym__ctrl_match_body] = STATE(5380), - [sym_match_arm] = STATE(4730), - [sym_default_arm] = STATE(4730), - [sym_match_pattern] = STATE(5108), - [sym__match_pattern] = STATE(4120), - [sym__match_pattern_expression] = STATE(4468), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4480), - [sym__match_pattern_record] = STATE(4490), - [sym_expr_parenthesized] = STATE(3880), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5398), - [sym_val_nothing] = STATE(4490), - [sym_val_bool] = STATE(4344), - [sym_val_variable] = STATE(3881), - [sym_val_number] = STATE(4490), - [sym__val_number_decimal] = STATE(3707), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(4490), - [sym_val_filesize] = STATE(4490), - [sym_val_binary] = STATE(4490), - [sym_val_string] = STATE(4490), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_table] = STATE(4490), - [sym_unquoted] = STATE(4507), - [sym__unquoted_anonymous_prefix] = STATE(5398), - [sym_comment] = STATE(1166), - [aux_sym__types_body_repeat1] = STATE(1369), - [aux_sym__ctrl_match_body_repeat1] = STATE(1399), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2890), - [aux_sym_cmd_identifier_token3] = ACTIONS(2892), - [aux_sym_cmd_identifier_token4] = ACTIONS(2892), - [aux_sym_cmd_identifier_token5] = ACTIONS(2892), - [sym__newline] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), - [anon_sym_DOT_DOT_LT] = ACTIONS(2908), - [aux_sym__val_number_decimal_token1] = ACTIONS(2910), - [aux_sym__val_number_decimal_token2] = ACTIONS(2912), - [aux_sym__val_number_decimal_token3] = ACTIONS(2914), - [aux_sym__val_number_decimal_token4] = ACTIONS(2914), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), + [STATE(1202)] = { + [sym_comment] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(2393), + [anon_sym_finally] = ACTIONS(2393), + [anon_sym_in] = ACTIONS(2393), + [sym__newline] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2393), + [anon_sym_PIPE] = ACTIONS(2393), + [anon_sym_err_GT_PIPE] = ACTIONS(2393), + [anon_sym_out_GT_PIPE] = ACTIONS(2393), + [anon_sym_e_GT_PIPE] = ACTIONS(2393), + [anon_sym_o_GT_PIPE] = ACTIONS(2393), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2393), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2393), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2393), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2393), + [anon_sym_GT2] = ACTIONS(2395), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_STAR2] = ACTIONS(2395), + [anon_sym_and2] = ACTIONS(2393), + [anon_sym_xor2] = ACTIONS(2393), + [anon_sym_or2] = ACTIONS(2393), + [anon_sym_not_DASHin2] = ACTIONS(2393), + [anon_sym_has2] = ACTIONS(2393), + [anon_sym_not_DASHhas2] = ACTIONS(2393), + [anon_sym_starts_DASHwith2] = ACTIONS(2393), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2393), + [anon_sym_ends_DASHwith2] = ACTIONS(2393), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2393), + [anon_sym_EQ_EQ2] = ACTIONS(2393), + [anon_sym_BANG_EQ2] = ACTIONS(2393), + [anon_sym_LT2] = ACTIONS(2395), + [anon_sym_LT_EQ2] = ACTIONS(2393), + [anon_sym_GT_EQ2] = ACTIONS(2393), + [anon_sym_EQ_TILDE2] = ACTIONS(2393), + [anon_sym_BANG_TILDE2] = ACTIONS(2393), + [anon_sym_like2] = ACTIONS(2393), + [anon_sym_not_DASHlike2] = ACTIONS(2393), + [anon_sym_STAR_STAR2] = ACTIONS(2393), + [anon_sym_PLUS_PLUS2] = ACTIONS(2393), + [anon_sym_SLASH2] = ACTIONS(2395), + [anon_sym_mod2] = ACTIONS(2393), + [anon_sym_SLASH_SLASH2] = ACTIONS(2393), + [anon_sym_PLUS2] = ACTIONS(2395), + [anon_sym_bit_DASHshl2] = ACTIONS(2393), + [anon_sym_bit_DASHshr2] = ACTIONS(2393), + [anon_sym_bit_DASHand2] = ACTIONS(2393), + [anon_sym_bit_DASHxor2] = ACTIONS(2393), + [anon_sym_bit_DASHor2] = ACTIONS(2393), + [anon_sym_err_GT] = ACTIONS(2395), + [anon_sym_out_GT] = ACTIONS(2395), + [anon_sym_e_GT] = ACTIONS(2395), + [anon_sym_o_GT] = ACTIONS(2395), + [anon_sym_err_PLUSout_GT] = ACTIONS(2395), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2395), + [anon_sym_o_PLUSe_GT] = ACTIONS(2395), + [anon_sym_e_PLUSo_GT] = ACTIONS(2395), + [anon_sym_err_GT_GT] = ACTIONS(2393), + [anon_sym_out_GT_GT] = ACTIONS(2393), + [anon_sym_e_GT_GT] = ACTIONS(2393), + [anon_sym_o_GT_GT] = ACTIONS(2393), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2393), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2393), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2393), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1167), - [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [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(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [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(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [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), + [STATE(1203)] = { + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2972), + [anon_sym_BANG_TILDE2] = ACTIONS(2972), + [anon_sym_like2] = ACTIONS(2972), + [anon_sym_not_DASHlike2] = ACTIONS(2972), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2974), + [anon_sym_bit_DASHxor2] = ACTIONS(2976), + [anon_sym_bit_DASHor2] = ACTIONS(2978), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1168), + [STATE(1204)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1204), [anon_sym_in] = ACTIONS(2720), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), @@ -134850,9 +137494,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2864), - [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), @@ -134863,23 +137507,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), [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(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), [anon_sym_bit_DASHand2] = ACTIONS(2720), [anon_sym_bit_DASHxor2] = ACTIONS(2720), [anon_sym_bit_DASHor2] = ACTIONS(2720), @@ -134901,76 +137545,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1169)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1169), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2866), - [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(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [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), + [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(1238), + [sym_comment] = STATE(1205), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1170), + [STATE(1206)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1206), [anon_sym_in] = ACTIONS(2720), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), @@ -134985,8 +137629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), @@ -134999,289 +137643,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [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_POUND] = ACTIONS(3), - }, - [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2874), - [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1172)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1172), - [anon_sym_in] = ACTIONS(2874), - [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2874), - [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2926), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2874), - [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), + [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(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), [anon_sym_bit_DASHand2] = ACTIONS(2720), [anon_sym_bit_DASHxor2] = ACTIONS(2720), [anon_sym_bit_DASHor2] = ACTIONS(2720), @@ -135303,9 +137679,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1175), + [STATE(1207)] = { + [aux_sym__repeat_newline] = STATE(1160), + [sym_comment] = STATE(1207), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1208)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1208), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1209)] = { + [sym_comment] = STATE(1209), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2980), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2972), + [anon_sym_BANG_TILDE2] = ACTIONS(2972), + [anon_sym_like2] = ACTIONS(2972), + [anon_sym_not_DASHlike2] = ACTIONS(2972), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2974), + [anon_sym_bit_DASHxor2] = ACTIONS(2976), + [anon_sym_bit_DASHor2] = ACTIONS(2978), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1210)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1210), [anon_sym_in] = ACTIONS(2720), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), @@ -135320,8 +137897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), [anon_sym_RPAREN] = ACTIONS(2720), [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_DASH2] = ACTIONS(2720), + [anon_sym_STAR2] = ACTIONS(2850), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), @@ -135341,12 +137918,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2720), [anon_sym_like2] = ACTIONS(2720), [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2722), [anon_sym_bit_DASHshl2] = ACTIONS(2720), [anon_sym_bit_DASHshr2] = ACTIONS(2720), [anon_sym_bit_DASHand2] = ACTIONS(2720), @@ -135370,10 +137947,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2874), + [STATE(1211)] = { + [aux_sym__repeat_newline] = STATE(1249), + [sym_comment] = STATE(1211), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1212)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1212), + [anon_sym_in] = ACTIONS(2720), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), @@ -135386,36 +138030,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), + [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(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [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), @@ -135437,77 +138081,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1157), - [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [STATE(1213)] = { + [aux_sym__repeat_newline] = STATE(1279), + [sym_comment] = STATE(1213), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2874), + [STATE(1214)] = { + [aux_sym__repeat_newline] = STATE(1206), + [sym_comment] = STATE(1214), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [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(2836), + [anon_sym_BANG_EQ2] = ACTIONS(2836), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2836), + [anon_sym_GT_EQ2] = ACTIONS(2836), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1215)] = { + [sym_comment] = STATE(1215), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2980), + [anon_sym_xor2] = ACTIONS(2982), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2972), + [anon_sym_BANG_TILDE2] = ACTIONS(2972), + [anon_sym_like2] = ACTIONS(2972), + [anon_sym_not_DASHlike2] = ACTIONS(2972), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2974), + [anon_sym_bit_DASHxor2] = ACTIONS(2976), + [anon_sym_bit_DASHor2] = ACTIONS(2978), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1216)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1216), + [anon_sym_in] = ACTIONS(2858), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), @@ -135520,39 +138298,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), [anon_sym_and2] = ACTIONS(2720), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), [anon_sym_err_GT] = ACTIONS(2722), [anon_sym_out_GT] = ACTIONS(2722), [anon_sym_e_GT] = ACTIONS(2722), @@ -135571,77 +138349,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2790), - [anon_sym_has2] = ACTIONS(2790), - [anon_sym_not_DASHhas2] = ACTIONS(2790), - [anon_sym_starts_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), - [anon_sym_ends_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), + [STATE(1217)] = { + [sym_comment] = STATE(1217), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2874), + [STATE(1218)] = { + [sym_comment] = STATE(1218), + [ts_builtin_sym_end] = ACTIONS(914), + [anon_sym_in] = ACTIONS(914), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(914), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(914), + [anon_sym_xor2] = ACTIONS(914), + [anon_sym_or2] = ACTIONS(914), + [anon_sym_not_DASHin2] = ACTIONS(914), + [anon_sym_has2] = ACTIONS(914), + [anon_sym_not_DASHhas2] = ACTIONS(914), + [anon_sym_starts_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), + [anon_sym_ends_DASHwith2] = ACTIONS(914), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(914), + [anon_sym_like2] = ACTIONS(914), + [anon_sym_not_DASHlike2] = ACTIONS(914), + [anon_sym_STAR_STAR2] = ACTIONS(914), + [anon_sym_PLUS_PLUS2] = ACTIONS(914), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(914), + [anon_sym_SLASH_SLASH2] = ACTIONS(914), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(914), + [anon_sym_bit_DASHshr2] = ACTIONS(914), + [anon_sym_bit_DASHand2] = ACTIONS(914), + [anon_sym_bit_DASHxor2] = ACTIONS(914), + [anon_sym_bit_DASHor2] = ACTIONS(914), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [sym__unquoted_pattern] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1219)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1219), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1220), + [anon_sym_in] = ACTIONS(2858), [sym__newline] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2720), [anon_sym_PIPE] = ACTIONS(2720), @@ -135654,39 +138566,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), [anon_sym_xor2] = ACTIONS(2720), [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), [anon_sym_err_GT] = ACTIONS(2722), [anon_sym_out_GT] = ACTIONS(2722), [anon_sym_e_GT] = ACTIONS(2722), @@ -135705,7251 +138617,4653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1244), - [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2690), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2690), - [anon_sym_mod2] = ACTIONS(2688), - [anon_sym_SLASH_SLASH2] = ACTIONS(2688), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1182)] = { - [sym__ctrl_match_body] = STATE(5293), - [sym_match_arm] = STATE(4730), - [sym_default_arm] = STATE(4730), - [sym_match_pattern] = STATE(5108), - [sym__match_pattern] = STATE(4120), - [sym__match_pattern_expression] = STATE(4468), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4480), - [sym__match_pattern_record] = STATE(4490), - [sym_expr_parenthesized] = STATE(3880), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5398), - [sym_val_nothing] = STATE(4490), - [sym_val_bool] = STATE(4344), - [sym_val_variable] = STATE(3881), - [sym_val_number] = STATE(4490), - [sym__val_number_decimal] = STATE(3707), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(4490), - [sym_val_filesize] = STATE(4490), - [sym_val_binary] = STATE(4490), - [sym_val_string] = STATE(4490), - [sym__raw_str] = STATE(2288), - [sym__str_double_quotes] = STATE(2288), - [sym__str_single_quotes] = STATE(2288), - [sym__str_back_ticks] = STATE(2288), - [sym_val_table] = STATE(4490), - [sym_unquoted] = STATE(4507), - [sym__unquoted_anonymous_prefix] = STATE(5398), - [sym_comment] = STATE(1182), - [aux_sym__types_body_repeat1] = STATE(1369), - [aux_sym__ctrl_match_body_repeat1] = STATE(1399), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2890), - [aux_sym_cmd_identifier_token3] = ACTIONS(2892), - [aux_sym_cmd_identifier_token4] = ACTIONS(2892), - [aux_sym_cmd_identifier_token5] = ACTIONS(2892), - [sym__newline] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym__] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), - [anon_sym_DOT_DOT_LT] = ACTIONS(2908), - [aux_sym__val_number_decimal_token1] = ACTIONS(2910), - [aux_sym__val_number_decimal_token2] = ACTIONS(2912), - [aux_sym__val_number_decimal_token3] = ACTIONS(2914), - [aux_sym__val_number_decimal_token4] = ACTIONS(2914), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1764), - }, - [STATE(1183)] = { - [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2488), - [sym__newline] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_err_GT_PIPE] = ACTIONS(2488), - [anon_sym_out_GT_PIPE] = ACTIONS(2488), - [anon_sym_e_GT_PIPE] = ACTIONS(2488), - [anon_sym_o_GT_PIPE] = ACTIONS(2488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2488), - [anon_sym_RPAREN] = ACTIONS(2488), - [anon_sym_GT2] = ACTIONS(2495), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_STAR2] = ACTIONS(2495), - [anon_sym_and2] = ACTIONS(2488), - [anon_sym_xor2] = ACTIONS(2488), - [anon_sym_or2] = ACTIONS(2488), - [anon_sym_not_DASHin2] = ACTIONS(2488), - [anon_sym_has2] = ACTIONS(2488), - [anon_sym_not_DASHhas2] = ACTIONS(2488), - [anon_sym_starts_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), - [anon_sym_ends_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), - [anon_sym_EQ_EQ2] = ACTIONS(2488), - [anon_sym_BANG_EQ2] = ACTIONS(2488), - [anon_sym_LT2] = ACTIONS(2495), - [anon_sym_LT_EQ2] = ACTIONS(2488), - [anon_sym_GT_EQ2] = ACTIONS(2488), - [anon_sym_EQ_TILDE2] = ACTIONS(2488), - [anon_sym_BANG_TILDE2] = ACTIONS(2488), - [anon_sym_like2] = ACTIONS(2488), - [anon_sym_not_DASHlike2] = ACTIONS(2488), - [anon_sym_STAR_STAR2] = ACTIONS(2488), - [anon_sym_PLUS_PLUS2] = ACTIONS(2488), - [anon_sym_SLASH2] = ACTIONS(2495), - [anon_sym_mod2] = ACTIONS(2488), - [anon_sym_SLASH_SLASH2] = ACTIONS(2488), - [anon_sym_PLUS2] = ACTIONS(2495), - [anon_sym_bit_DASHshl2] = ACTIONS(2488), - [anon_sym_bit_DASHshr2] = ACTIONS(2488), - [anon_sym_bit_DASHand2] = ACTIONS(2488), - [anon_sym_bit_DASHxor2] = ACTIONS(2488), - [anon_sym_bit_DASHor2] = ACTIONS(2488), - [anon_sym_err_GT] = ACTIONS(2495), - [anon_sym_out_GT] = ACTIONS(2495), - [anon_sym_e_GT] = ACTIONS(2495), - [anon_sym_o_GT] = ACTIONS(2495), - [anon_sym_err_PLUSout_GT] = ACTIONS(2495), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2495), - [anon_sym_o_PLUSe_GT] = ACTIONS(2495), - [anon_sym_e_PLUSo_GT] = ACTIONS(2495), - [anon_sym_err_GT_GT] = ACTIONS(2488), - [anon_sym_out_GT_GT] = ACTIONS(2488), - [anon_sym_e_GT_GT] = ACTIONS(2488), - [anon_sym_o_GT_GT] = ACTIONS(2488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(1238), - [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [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(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [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(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [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(1185)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2792), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2790), - [anon_sym_has2] = ACTIONS(2790), - [anon_sym_not_DASHhas2] = ACTIONS(2790), - [anon_sym_starts_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), - [anon_sym_ends_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), - [anon_sym_EQ_EQ2] = ACTIONS(2790), - [anon_sym_BANG_EQ2] = ACTIONS(2790), - [anon_sym_LT2] = ACTIONS(2792), - [anon_sym_LT_EQ2] = ACTIONS(2790), - [anon_sym_GT_EQ2] = ACTIONS(2790), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2792), - [anon_sym_DASH2] = ACTIONS(2790), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2790), - [anon_sym_has2] = ACTIONS(2790), - [anon_sym_not_DASHhas2] = ACTIONS(2790), - [anon_sym_starts_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), - [anon_sym_ends_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), - [anon_sym_EQ_EQ2] = ACTIONS(2790), - [anon_sym_BANG_EQ2] = ACTIONS(2790), - [anon_sym_LT2] = ACTIONS(2792), - [anon_sym_LT_EQ2] = ACTIONS(2790), - [anon_sym_GT_EQ2] = ACTIONS(2790), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2792), - [anon_sym_bit_DASHshl2] = ACTIONS(2790), - [anon_sym_bit_DASHshr2] = ACTIONS(2790), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1187)] = { - [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2488), - [sym__newline] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_RPAREN] = ACTIONS(2493), - [anon_sym_GT2] = ACTIONS(2495), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_STAR2] = ACTIONS(2495), - [anon_sym_and2] = ACTIONS(2488), - [anon_sym_xor2] = ACTIONS(2488), - [anon_sym_or2] = ACTIONS(2488), - [anon_sym_not_DASHin2] = ACTIONS(2488), - [anon_sym_has2] = ACTIONS(2488), - [anon_sym_not_DASHhas2] = ACTIONS(2488), - [anon_sym_starts_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), - [anon_sym_ends_DASHwith2] = ACTIONS(2488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), - [anon_sym_EQ_EQ2] = ACTIONS(2488), - [anon_sym_BANG_EQ2] = ACTIONS(2488), - [anon_sym_LT2] = ACTIONS(2495), - [anon_sym_LT_EQ2] = ACTIONS(2488), - [anon_sym_GT_EQ2] = ACTIONS(2488), - [anon_sym_EQ_TILDE2] = ACTIONS(2488), - [anon_sym_BANG_TILDE2] = ACTIONS(2488), - [anon_sym_like2] = ACTIONS(2488), - [anon_sym_not_DASHlike2] = ACTIONS(2488), - [anon_sym_STAR_STAR2] = ACTIONS(2488), - [anon_sym_PLUS_PLUS2] = ACTIONS(2488), - [anon_sym_SLASH2] = ACTIONS(2495), - [anon_sym_mod2] = ACTIONS(2488), - [anon_sym_SLASH_SLASH2] = ACTIONS(2488), - [anon_sym_PLUS2] = ACTIONS(2495), - [anon_sym_bit_DASHshl2] = ACTIONS(2488), - [anon_sym_bit_DASHshr2] = ACTIONS(2488), - [anon_sym_bit_DASHand2] = ACTIONS(2488), - [anon_sym_bit_DASHxor2] = ACTIONS(2488), - [anon_sym_bit_DASHor2] = ACTIONS(2488), - [anon_sym_err_GT] = ACTIONS(2497), - [anon_sym_out_GT] = ACTIONS(2497), - [anon_sym_e_GT] = ACTIONS(2497), - [anon_sym_o_GT] = ACTIONS(2497), - [anon_sym_err_PLUSout_GT] = ACTIONS(2497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2497), - [anon_sym_o_PLUSe_GT] = ACTIONS(2497), - [anon_sym_e_PLUSo_GT] = ACTIONS(2497), - [anon_sym_err_GT_GT] = ACTIONS(2493), - [anon_sym_out_GT_GT] = ACTIONS(2493), - [anon_sym_e_GT_GT] = ACTIONS(2493), - [anon_sym_o_GT_GT] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2792), - [anon_sym_DASH2] = ACTIONS(2790), - [anon_sym_STAR2] = ACTIONS(2792), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2790), - [anon_sym_has2] = ACTIONS(2790), - [anon_sym_not_DASHhas2] = ACTIONS(2790), - [anon_sym_starts_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), - [anon_sym_ends_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), - [anon_sym_EQ_EQ2] = ACTIONS(2790), - [anon_sym_BANG_EQ2] = ACTIONS(2790), - [anon_sym_LT2] = ACTIONS(2792), - [anon_sym_LT_EQ2] = ACTIONS(2790), - [anon_sym_GT_EQ2] = ACTIONS(2790), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2792), - [anon_sym_mod2] = ACTIONS(2790), - [anon_sym_SLASH_SLASH2] = ACTIONS(2790), - [anon_sym_PLUS2] = ACTIONS(2792), - [anon_sym_bit_DASHshl2] = ACTIONS(2790), - [anon_sym_bit_DASHshr2] = ACTIONS(2790), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(1288), - [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1159), - [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1241), - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2832), - [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(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [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(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [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(1193)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(1245), - [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2832), - [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_STAR2] = ACTIONS(2839), - [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(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [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(1195)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2926), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(1249), - [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2832), - [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_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(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [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(1197)] = { - [aux_sym__repeat_newline] = STATE(1270), - [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1251), - [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [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(1200)] = { - [sym__expression] = STATE(5041), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(1200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(1201)] = { - [sym_comment] = STATE(1201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2572), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [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(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [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(2572), - [anon_sym_mod2] = ACTIONS(2572), - [anon_sym_SLASH_SLASH2] = ACTIONS(2572), - [anon_sym_PLUS2] = ACTIONS(2572), - [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(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1202)] = { - [sym_comment] = STATE(1202), - [aux_sym_cmd_identifier_token2] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2600), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2600), - [anon_sym_xor2] = ACTIONS(2600), - [anon_sym_or2] = ACTIONS(2600), - [anon_sym_not_DASHin2] = ACTIONS(2600), - [anon_sym_has2] = ACTIONS(2600), - [anon_sym_not_DASHhas2] = ACTIONS(2600), - [anon_sym_starts_DASHwith2] = ACTIONS(2600), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), - [anon_sym_ends_DASHwith2] = ACTIONS(2600), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2600), - [anon_sym_like2] = ACTIONS(2600), - [anon_sym_not_DASHlike2] = ACTIONS(2600), - [anon_sym_STAR_STAR2] = ACTIONS(2600), - [anon_sym_PLUS_PLUS2] = ACTIONS(2600), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2600), - [anon_sym_SLASH_SLASH2] = ACTIONS(2600), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2600), - [anon_sym_bit_DASHshr2] = ACTIONS(2600), - [anon_sym_bit_DASHand2] = ACTIONS(2600), - [anon_sym_bit_DASHxor2] = ACTIONS(2600), - [anon_sym_bit_DASHor2] = ACTIONS(2600), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1203)] = { - [aux_sym__repeat_newline] = STATE(1268), - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2935), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2937), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [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(1204)] = { - [sym_comment] = STATE(1204), - [ts_builtin_sym_end] = ACTIONS(2570), - [aux_sym_cmd_identifier_token2] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(2572), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_STAR2] = ACTIONS(2572), - [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(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [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(2572), - [anon_sym_mod2] = ACTIONS(2572), - [anon_sym_SLASH_SLASH2] = ACTIONS(2572), - [anon_sym_PLUS2] = ACTIONS(2572), - [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(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1205)] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(2598), - [aux_sym_cmd_identifier_token2] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(2600), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2600), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2600), - [anon_sym_xor2] = ACTIONS(2600), - [anon_sym_or2] = ACTIONS(2600), - [anon_sym_not_DASHin2] = ACTIONS(2600), - [anon_sym_has2] = ACTIONS(2600), - [anon_sym_not_DASHhas2] = ACTIONS(2600), - [anon_sym_starts_DASHwith2] = ACTIONS(2600), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), - [anon_sym_ends_DASHwith2] = ACTIONS(2600), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2600), - [anon_sym_like2] = ACTIONS(2600), - [anon_sym_not_DASHlike2] = ACTIONS(2600), - [anon_sym_STAR_STAR2] = ACTIONS(2600), - [anon_sym_PLUS_PLUS2] = ACTIONS(2600), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2600), - [anon_sym_SLASH_SLASH2] = ACTIONS(2600), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2600), - [anon_sym_bit_DASHshr2] = ACTIONS(2600), - [anon_sym_bit_DASHand2] = ACTIONS(2600), - [anon_sym_bit_DASHxor2] = ACTIONS(2600), - [anon_sym_bit_DASHor2] = ACTIONS(2600), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(1272), - [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [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(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [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(1207)] = { - [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(884), - [aux_sym_cmd_identifier_token2] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(785), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(785), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(785), - [anon_sym_xor2] = ACTIONS(785), - [anon_sym_or2] = ACTIONS(785), - [anon_sym_not_DASHin2] = ACTIONS(785), - [anon_sym_has2] = ACTIONS(785), - [anon_sym_not_DASHhas2] = ACTIONS(785), - [anon_sym_starts_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), - [anon_sym_ends_DASHwith2] = ACTIONS(785), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(785), - [anon_sym_like2] = ACTIONS(785), - [anon_sym_not_DASHlike2] = ACTIONS(785), - [anon_sym_STAR_STAR2] = ACTIONS(785), - [anon_sym_PLUS_PLUS2] = ACTIONS(785), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(785), - [anon_sym_SLASH_SLASH2] = ACTIONS(785), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(785), - [anon_sym_bit_DASHshr2] = ACTIONS(785), - [anon_sym_bit_DASHand2] = ACTIONS(785), - [anon_sym_bit_DASHxor2] = ACTIONS(785), - [anon_sym_bit_DASHor2] = ACTIONS(785), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(1279), - [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2832), - [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(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [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(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [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(1209)] = { - [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [sym__newline] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_err_GT_PIPE] = ACTIONS(2340), - [anon_sym_out_GT_PIPE] = ACTIONS(2340), - [anon_sym_e_GT_PIPE] = ACTIONS(2340), - [anon_sym_o_GT_PIPE] = ACTIONS(2340), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), - [anon_sym_GT2] = ACTIONS(2342), - [anon_sym_DASH2] = ACTIONS(2340), - [anon_sym_STAR2] = ACTIONS(2342), - [anon_sym_and2] = ACTIONS(2340), - [anon_sym_xor2] = ACTIONS(2340), - [anon_sym_or2] = ACTIONS(2340), - [anon_sym_not_DASHin2] = ACTIONS(2340), - [anon_sym_has2] = ACTIONS(2340), - [anon_sym_not_DASHhas2] = ACTIONS(2340), - [anon_sym_starts_DASHwith2] = ACTIONS(2340), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), - [anon_sym_ends_DASHwith2] = ACTIONS(2340), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), - [anon_sym_EQ_EQ2] = ACTIONS(2340), - [anon_sym_BANG_EQ2] = ACTIONS(2340), - [anon_sym_LT2] = ACTIONS(2342), - [anon_sym_LT_EQ2] = ACTIONS(2340), - [anon_sym_GT_EQ2] = ACTIONS(2340), - [anon_sym_EQ_TILDE2] = ACTIONS(2340), - [anon_sym_BANG_TILDE2] = ACTIONS(2340), - [anon_sym_like2] = ACTIONS(2340), - [anon_sym_not_DASHlike2] = ACTIONS(2340), - [anon_sym_STAR_STAR2] = ACTIONS(2340), - [anon_sym_PLUS_PLUS2] = ACTIONS(2340), - [anon_sym_SLASH2] = ACTIONS(2342), - [anon_sym_mod2] = ACTIONS(2340), - [anon_sym_SLASH_SLASH2] = ACTIONS(2340), - [anon_sym_PLUS2] = ACTIONS(2342), - [anon_sym_bit_DASHshl2] = ACTIONS(2340), - [anon_sym_bit_DASHshr2] = ACTIONS(2340), - [anon_sym_bit_DASHand2] = ACTIONS(2340), - [anon_sym_bit_DASHxor2] = ACTIONS(2340), - [anon_sym_bit_DASHor2] = ACTIONS(2340), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_err_GT] = ACTIONS(2342), - [anon_sym_out_GT] = ACTIONS(2342), - [anon_sym_e_GT] = ACTIONS(2342), - [anon_sym_o_GT] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT] = ACTIONS(2342), - [anon_sym_err_GT_GT] = ACTIONS(2340), - [anon_sym_out_GT_GT] = ACTIONS(2340), - [anon_sym_e_GT_GT] = ACTIONS(2340), - [anon_sym_o_GT_GT] = ACTIONS(2340), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(1282), - [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [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(1211)] = { - [aux_sym__repeat_newline] = STATE(1285), - [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [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(1212)] = { - [aux_sym__repeat_newline] = STATE(1220), - [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2832), - [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(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [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(1213)] = { - [aux_sym__repeat_newline] = STATE(1161), - [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1214)] = { - [sym_comment] = STATE(1214), - [ts_builtin_sym_end] = ACTIONS(2426), - [anon_sym_finally] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(2426), - [sym__newline] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_err_GT_PIPE] = ACTIONS(2426), - [anon_sym_out_GT_PIPE] = ACTIONS(2426), - [anon_sym_e_GT_PIPE] = ACTIONS(2426), - [anon_sym_o_GT_PIPE] = ACTIONS(2426), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2426), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2426), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2426), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2426), - [anon_sym_GT2] = ACTIONS(2428), - [anon_sym_DASH2] = ACTIONS(2426), - [anon_sym_STAR2] = ACTIONS(2428), - [anon_sym_and2] = ACTIONS(2426), - [anon_sym_xor2] = ACTIONS(2426), - [anon_sym_or2] = ACTIONS(2426), - [anon_sym_not_DASHin2] = ACTIONS(2426), - [anon_sym_has2] = ACTIONS(2426), - [anon_sym_not_DASHhas2] = ACTIONS(2426), - [anon_sym_starts_DASHwith2] = ACTIONS(2426), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2426), - [anon_sym_ends_DASHwith2] = ACTIONS(2426), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2426), - [anon_sym_EQ_EQ2] = ACTIONS(2426), - [anon_sym_BANG_EQ2] = ACTIONS(2426), - [anon_sym_LT2] = ACTIONS(2428), - [anon_sym_LT_EQ2] = ACTIONS(2426), - [anon_sym_GT_EQ2] = ACTIONS(2426), - [anon_sym_EQ_TILDE2] = ACTIONS(2426), - [anon_sym_BANG_TILDE2] = ACTIONS(2426), - [anon_sym_like2] = ACTIONS(2426), - [anon_sym_not_DASHlike2] = ACTIONS(2426), - [anon_sym_STAR_STAR2] = ACTIONS(2426), - [anon_sym_PLUS_PLUS2] = ACTIONS(2426), - [anon_sym_SLASH2] = ACTIONS(2428), - [anon_sym_mod2] = ACTIONS(2426), - [anon_sym_SLASH_SLASH2] = ACTIONS(2426), - [anon_sym_PLUS2] = ACTIONS(2428), - [anon_sym_bit_DASHshl2] = ACTIONS(2426), - [anon_sym_bit_DASHshr2] = ACTIONS(2426), - [anon_sym_bit_DASHand2] = ACTIONS(2426), - [anon_sym_bit_DASHxor2] = ACTIONS(2426), - [anon_sym_bit_DASHor2] = ACTIONS(2426), - [anon_sym_err_GT] = ACTIONS(2428), - [anon_sym_out_GT] = ACTIONS(2428), - [anon_sym_e_GT] = ACTIONS(2428), - [anon_sym_o_GT] = ACTIONS(2428), - [anon_sym_err_PLUSout_GT] = ACTIONS(2428), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2428), - [anon_sym_o_PLUSe_GT] = ACTIONS(2428), - [anon_sym_e_PLUSo_GT] = ACTIONS(2428), - [anon_sym_err_GT_GT] = ACTIONS(2426), - [anon_sym_out_GT_GT] = ACTIONS(2426), - [anon_sym_e_GT_GT] = ACTIONS(2426), - [anon_sym_o_GT_GT] = ACTIONS(2426), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2426), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2426), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2426), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1215)] = { - [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(2554), - [anon_sym_finally] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [sym__newline] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_err_GT_PIPE] = ACTIONS(2554), - [anon_sym_out_GT_PIPE] = ACTIONS(2554), - [anon_sym_e_GT_PIPE] = ACTIONS(2554), - [anon_sym_o_GT_PIPE] = ACTIONS(2554), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2554), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2554), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2554), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2554), - [anon_sym_GT2] = ACTIONS(2556), - [anon_sym_DASH2] = ACTIONS(2554), - [anon_sym_STAR2] = ACTIONS(2556), - [anon_sym_and2] = ACTIONS(2554), - [anon_sym_xor2] = ACTIONS(2554), - [anon_sym_or2] = ACTIONS(2554), - [anon_sym_not_DASHin2] = ACTIONS(2554), - [anon_sym_has2] = ACTIONS(2554), - [anon_sym_not_DASHhas2] = ACTIONS(2554), - [anon_sym_starts_DASHwith2] = ACTIONS(2554), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2554), - [anon_sym_ends_DASHwith2] = ACTIONS(2554), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2554), - [anon_sym_EQ_EQ2] = ACTIONS(2554), - [anon_sym_BANG_EQ2] = ACTIONS(2554), - [anon_sym_LT2] = ACTIONS(2556), - [anon_sym_LT_EQ2] = ACTIONS(2554), - [anon_sym_GT_EQ2] = ACTIONS(2554), - [anon_sym_EQ_TILDE2] = ACTIONS(2554), - [anon_sym_BANG_TILDE2] = ACTIONS(2554), - [anon_sym_like2] = ACTIONS(2554), - [anon_sym_not_DASHlike2] = ACTIONS(2554), - [anon_sym_STAR_STAR2] = ACTIONS(2554), - [anon_sym_PLUS_PLUS2] = ACTIONS(2554), - [anon_sym_SLASH2] = ACTIONS(2556), - [anon_sym_mod2] = ACTIONS(2554), - [anon_sym_SLASH_SLASH2] = ACTIONS(2554), - [anon_sym_PLUS2] = ACTIONS(2556), - [anon_sym_bit_DASHshl2] = ACTIONS(2554), - [anon_sym_bit_DASHshr2] = ACTIONS(2554), - [anon_sym_bit_DASHand2] = ACTIONS(2554), - [anon_sym_bit_DASHxor2] = ACTIONS(2554), - [anon_sym_bit_DASHor2] = ACTIONS(2554), - [anon_sym_err_GT] = ACTIONS(2556), - [anon_sym_out_GT] = ACTIONS(2556), - [anon_sym_e_GT] = ACTIONS(2556), - [anon_sym_o_GT] = ACTIONS(2556), - [anon_sym_err_PLUSout_GT] = ACTIONS(2556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2556), - [anon_sym_o_PLUSe_GT] = ACTIONS(2556), - [anon_sym_e_PLUSo_GT] = ACTIONS(2556), - [anon_sym_err_GT_GT] = ACTIONS(2554), - [anon_sym_out_GT_GT] = ACTIONS(2554), - [anon_sym_e_GT_GT] = ACTIONS(2554), - [anon_sym_o_GT_GT] = ACTIONS(2554), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2554), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2554), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2554), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2792), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2790), - [anon_sym_has2] = ACTIONS(2790), - [anon_sym_not_DASHhas2] = ACTIONS(2790), - [anon_sym_starts_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), - [anon_sym_ends_DASHwith2] = ACTIONS(2790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), - [anon_sym_EQ_EQ2] = ACTIONS(2790), - [anon_sym_BANG_EQ2] = ACTIONS(2790), - [anon_sym_LT2] = ACTIONS(2792), - [anon_sym_LT_EQ2] = ACTIONS(2790), - [anon_sym_GT_EQ2] = ACTIONS(2790), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2790), - [anon_sym_bit_DASHshr2] = ACTIONS(2790), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1273), - [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2790), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1219)] = { - [sym_comment] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(2382), - [anon_sym_finally] = ACTIONS(2382), - [anon_sym_in] = ACTIONS(2382), - [sym__newline] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2382), - [anon_sym_err_GT_PIPE] = ACTIONS(2382), - [anon_sym_out_GT_PIPE] = ACTIONS(2382), - [anon_sym_e_GT_PIPE] = ACTIONS(2382), - [anon_sym_o_GT_PIPE] = ACTIONS(2382), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2382), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2382), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2382), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2382), - [anon_sym_GT2] = ACTIONS(2384), - [anon_sym_DASH2] = ACTIONS(2382), - [anon_sym_STAR2] = ACTIONS(2384), - [anon_sym_and2] = ACTIONS(2382), - [anon_sym_xor2] = ACTIONS(2382), - [anon_sym_or2] = ACTIONS(2382), - [anon_sym_not_DASHin2] = ACTIONS(2382), - [anon_sym_has2] = ACTIONS(2382), - [anon_sym_not_DASHhas2] = ACTIONS(2382), - [anon_sym_starts_DASHwith2] = ACTIONS(2382), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2382), - [anon_sym_ends_DASHwith2] = ACTIONS(2382), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2382), - [anon_sym_EQ_EQ2] = ACTIONS(2382), - [anon_sym_BANG_EQ2] = ACTIONS(2382), - [anon_sym_LT2] = ACTIONS(2384), - [anon_sym_LT_EQ2] = ACTIONS(2382), - [anon_sym_GT_EQ2] = ACTIONS(2382), - [anon_sym_EQ_TILDE2] = ACTIONS(2382), - [anon_sym_BANG_TILDE2] = ACTIONS(2382), - [anon_sym_like2] = ACTIONS(2382), - [anon_sym_not_DASHlike2] = ACTIONS(2382), - [anon_sym_STAR_STAR2] = ACTIONS(2382), - [anon_sym_PLUS_PLUS2] = ACTIONS(2382), - [anon_sym_SLASH2] = ACTIONS(2384), - [anon_sym_mod2] = ACTIONS(2382), - [anon_sym_SLASH_SLASH2] = ACTIONS(2382), - [anon_sym_PLUS2] = ACTIONS(2384), - [anon_sym_bit_DASHshl2] = ACTIONS(2382), - [anon_sym_bit_DASHshr2] = ACTIONS(2382), - [anon_sym_bit_DASHand2] = ACTIONS(2382), - [anon_sym_bit_DASHxor2] = ACTIONS(2382), - [anon_sym_bit_DASHor2] = ACTIONS(2382), - [anon_sym_err_GT] = ACTIONS(2384), - [anon_sym_out_GT] = ACTIONS(2384), - [anon_sym_e_GT] = ACTIONS(2384), - [anon_sym_o_GT] = ACTIONS(2384), - [anon_sym_err_PLUSout_GT] = ACTIONS(2384), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2384), - [anon_sym_o_PLUSe_GT] = ACTIONS(2384), - [anon_sym_e_PLUSo_GT] = ACTIONS(2384), - [anon_sym_err_GT_GT] = ACTIONS(2382), - [anon_sym_out_GT_GT] = ACTIONS(2382), - [anon_sym_e_GT_GT] = ACTIONS(2382), - [anon_sym_o_GT_GT] = ACTIONS(2382), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2382), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2382), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2382), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2382), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1220)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1220), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1221)] = { [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(2386), - [anon_sym_finally] = ACTIONS(2386), - [anon_sym_in] = ACTIONS(2386), - [sym__newline] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2386), - [anon_sym_err_GT_PIPE] = ACTIONS(2386), - [anon_sym_out_GT_PIPE] = ACTIONS(2386), - [anon_sym_e_GT_PIPE] = ACTIONS(2386), - [anon_sym_o_GT_PIPE] = ACTIONS(2386), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2386), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2386), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2386), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2386), - [anon_sym_GT2] = ACTIONS(2388), - [anon_sym_DASH2] = ACTIONS(2386), - [anon_sym_STAR2] = ACTIONS(2388), - [anon_sym_and2] = ACTIONS(2386), - [anon_sym_xor2] = ACTIONS(2386), - [anon_sym_or2] = ACTIONS(2386), - [anon_sym_not_DASHin2] = ACTIONS(2386), - [anon_sym_has2] = ACTIONS(2386), - [anon_sym_not_DASHhas2] = ACTIONS(2386), - [anon_sym_starts_DASHwith2] = ACTIONS(2386), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2386), - [anon_sym_ends_DASHwith2] = ACTIONS(2386), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2386), - [anon_sym_EQ_EQ2] = ACTIONS(2386), - [anon_sym_BANG_EQ2] = ACTIONS(2386), - [anon_sym_LT2] = ACTIONS(2388), - [anon_sym_LT_EQ2] = ACTIONS(2386), - [anon_sym_GT_EQ2] = ACTIONS(2386), - [anon_sym_EQ_TILDE2] = ACTIONS(2386), - [anon_sym_BANG_TILDE2] = ACTIONS(2386), - [anon_sym_like2] = ACTIONS(2386), - [anon_sym_not_DASHlike2] = ACTIONS(2386), - [anon_sym_STAR_STAR2] = ACTIONS(2386), - [anon_sym_PLUS_PLUS2] = ACTIONS(2386), - [anon_sym_SLASH2] = ACTIONS(2388), - [anon_sym_mod2] = ACTIONS(2386), - [anon_sym_SLASH_SLASH2] = ACTIONS(2386), - [anon_sym_PLUS2] = ACTIONS(2388), - [anon_sym_bit_DASHshl2] = ACTIONS(2386), - [anon_sym_bit_DASHshr2] = ACTIONS(2386), - [anon_sym_bit_DASHand2] = ACTIONS(2386), - [anon_sym_bit_DASHxor2] = ACTIONS(2386), - [anon_sym_bit_DASHor2] = ACTIONS(2386), - [anon_sym_err_GT] = ACTIONS(2388), - [anon_sym_out_GT] = ACTIONS(2388), - [anon_sym_e_GT] = ACTIONS(2388), - [anon_sym_o_GT] = ACTIONS(2388), - [anon_sym_err_PLUSout_GT] = ACTIONS(2388), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2388), - [anon_sym_o_PLUSe_GT] = ACTIONS(2388), - [anon_sym_e_PLUSo_GT] = ACTIONS(2388), - [anon_sym_err_GT_GT] = ACTIONS(2386), - [anon_sym_out_GT_GT] = ACTIONS(2386), - [anon_sym_e_GT_GT] = ACTIONS(2386), - [anon_sym_o_GT_GT] = ACTIONS(2386), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2386), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2386), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2386), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2700), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2702), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2700), + [anon_sym_has2] = ACTIONS(2700), + [anon_sym_not_DASHhas2] = ACTIONS(2700), + [anon_sym_starts_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), + [anon_sym_ends_DASHwith2] = ACTIONS(2700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), + [anon_sym_EQ_EQ2] = ACTIONS(2700), + [anon_sym_BANG_EQ2] = ACTIONS(2700), + [anon_sym_LT2] = ACTIONS(2702), + [anon_sym_LT_EQ2] = ACTIONS(2700), + [anon_sym_GT_EQ2] = ACTIONS(2700), + [anon_sym_EQ_TILDE2] = ACTIONS(2700), + [anon_sym_BANG_TILDE2] = ACTIONS(2700), + [anon_sym_like2] = ACTIONS(2700), + [anon_sym_not_DASHlike2] = ACTIONS(2700), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2700), + [anon_sym_bit_DASHshr2] = ACTIONS(2700), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2790), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), + [ts_builtin_sym_end] = ACTIONS(2584), + [anon_sym_finally] = ACTIONS(2584), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1223)] = { [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2390), - [anon_sym_finally] = ACTIONS(2390), - [anon_sym_in] = ACTIONS(2390), - [sym__newline] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(2390), - [anon_sym_err_GT_PIPE] = ACTIONS(2390), - [anon_sym_out_GT_PIPE] = ACTIONS(2390), - [anon_sym_e_GT_PIPE] = ACTIONS(2390), - [anon_sym_o_GT_PIPE] = ACTIONS(2390), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2390), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2390), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2390), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2390), - [anon_sym_GT2] = ACTIONS(2392), - [anon_sym_DASH2] = ACTIONS(2390), - [anon_sym_STAR2] = ACTIONS(2392), - [anon_sym_and2] = ACTIONS(2390), - [anon_sym_xor2] = ACTIONS(2390), - [anon_sym_or2] = ACTIONS(2390), - [anon_sym_not_DASHin2] = ACTIONS(2390), - [anon_sym_has2] = ACTIONS(2390), - [anon_sym_not_DASHhas2] = ACTIONS(2390), - [anon_sym_starts_DASHwith2] = ACTIONS(2390), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2390), - [anon_sym_ends_DASHwith2] = ACTIONS(2390), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2390), - [anon_sym_EQ_EQ2] = ACTIONS(2390), - [anon_sym_BANG_EQ2] = ACTIONS(2390), - [anon_sym_LT2] = ACTIONS(2392), - [anon_sym_LT_EQ2] = ACTIONS(2390), - [anon_sym_GT_EQ2] = ACTIONS(2390), - [anon_sym_EQ_TILDE2] = ACTIONS(2390), - [anon_sym_BANG_TILDE2] = ACTIONS(2390), - [anon_sym_like2] = ACTIONS(2390), - [anon_sym_not_DASHlike2] = ACTIONS(2390), - [anon_sym_STAR_STAR2] = ACTIONS(2390), - [anon_sym_PLUS_PLUS2] = ACTIONS(2390), - [anon_sym_SLASH2] = ACTIONS(2392), - [anon_sym_mod2] = ACTIONS(2390), - [anon_sym_SLASH_SLASH2] = ACTIONS(2390), - [anon_sym_PLUS2] = ACTIONS(2392), - [anon_sym_bit_DASHshl2] = ACTIONS(2390), - [anon_sym_bit_DASHshr2] = ACTIONS(2390), - [anon_sym_bit_DASHand2] = ACTIONS(2390), - [anon_sym_bit_DASHxor2] = ACTIONS(2390), - [anon_sym_bit_DASHor2] = ACTIONS(2390), - [anon_sym_err_GT] = ACTIONS(2392), - [anon_sym_out_GT] = ACTIONS(2392), - [anon_sym_e_GT] = ACTIONS(2392), - [anon_sym_o_GT] = ACTIONS(2392), - [anon_sym_err_PLUSout_GT] = ACTIONS(2392), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2392), - [anon_sym_o_PLUSe_GT] = ACTIONS(2392), - [anon_sym_e_PLUSo_GT] = ACTIONS(2392), - [anon_sym_err_GT_GT] = ACTIONS(2390), - [anon_sym_out_GT_GT] = ACTIONS(2390), - [anon_sym_e_GT_GT] = ACTIONS(2390), - [anon_sym_o_GT_GT] = ACTIONS(2390), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2390), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2390), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2390), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2972), + [anon_sym_BANG_TILDE2] = ACTIONS(2972), + [anon_sym_like2] = ACTIONS(2972), + [anon_sym_not_DASHlike2] = ACTIONS(2972), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2700), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1210), [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2790), - [anon_sym_xor2] = ACTIONS(2790), - [anon_sym_or2] = ACTIONS(2790), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2790), - [anon_sym_err_GT] = ACTIONS(2792), - [anon_sym_out_GT] = ACTIONS(2792), - [anon_sym_e_GT] = ACTIONS(2792), - [anon_sym_o_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT] = ACTIONS(2792), - [anon_sym_err_GT_GT] = ACTIONS(2790), - [anon_sym_out_GT_GT] = ACTIONS(2790), - [anon_sym_e_GT_GT] = ACTIONS(2790), - [anon_sym_o_GT_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2836), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [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(2836), + [anon_sym_BANG_EQ2] = ACTIONS(2836), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2836), + [anon_sym_GT_EQ2] = ACTIONS(2836), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2838), + [anon_sym_bit_DASHshl2] = ACTIONS(2836), + [anon_sym_bit_DASHshr2] = ACTIONS(2836), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1225)] = { [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(1714), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_err_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_GT_PIPE] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), - [anon_sym_GT2] = ACTIONS(1588), - [anon_sym_DASH2] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_STAR2] = ACTIONS(1588), - [anon_sym_and2] = ACTIONS(1714), - [anon_sym_xor2] = ACTIONS(1714), - [anon_sym_or2] = ACTIONS(1714), - [anon_sym_not_DASHin2] = ACTIONS(1714), - [anon_sym_has2] = ACTIONS(1714), - [anon_sym_not_DASHhas2] = ACTIONS(1714), - [anon_sym_starts_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), - [anon_sym_ends_DASHwith2] = ACTIONS(1714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), - [anon_sym_EQ_EQ2] = ACTIONS(1714), - [anon_sym_BANG_EQ2] = ACTIONS(1714), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ2] = ACTIONS(1714), - [anon_sym_GT_EQ2] = ACTIONS(1714), - [anon_sym_EQ_TILDE2] = ACTIONS(1714), - [anon_sym_BANG_TILDE2] = ACTIONS(1714), - [anon_sym_like2] = ACTIONS(1714), - [anon_sym_not_DASHlike2] = ACTIONS(1714), - [anon_sym_STAR_STAR2] = ACTIONS(1714), - [anon_sym_PLUS_PLUS2] = ACTIONS(1714), - [anon_sym_SLASH2] = ACTIONS(1588), - [anon_sym_mod2] = ACTIONS(1714), - [anon_sym_SLASH_SLASH2] = ACTIONS(1714), - [anon_sym_PLUS2] = ACTIONS(1588), - [anon_sym_bit_DASHshl2] = ACTIONS(1714), - [anon_sym_bit_DASHshr2] = ACTIONS(1714), - [anon_sym_bit_DASHand2] = ACTIONS(1714), - [anon_sym_bit_DASHxor2] = ACTIONS(1714), - [anon_sym_bit_DASHor2] = ACTIONS(1714), - [anon_sym_COLON2] = ACTIONS(1716), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [anon_sym_err_GT_GT] = ACTIONS(1714), - [anon_sym_out_GT_GT] = ACTIONS(1714), - [anon_sym_e_GT_GT] = ACTIONS(1714), - [anon_sym_o_GT_GT] = ACTIONS(1714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2972), + [anon_sym_BANG_TILDE2] = ACTIONS(2972), + [anon_sym_like2] = ACTIONS(2972), + [anon_sym_not_DASHlike2] = ACTIONS(2972), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2974), + [anon_sym_bit_DASHxor2] = ACTIONS(2700), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1163), [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2970), + [sym__newline] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_err_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_GT_PIPE] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR2] = ACTIONS(2923), + [anon_sym_and2] = ACTIONS(2700), + [anon_sym_xor2] = ACTIONS(2700), + [anon_sym_or2] = ACTIONS(2700), + [anon_sym_not_DASHin2] = ACTIONS(2970), + [anon_sym_has2] = ACTIONS(2970), + [anon_sym_not_DASHhas2] = ACTIONS(2970), + [anon_sym_starts_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), + [anon_sym_ends_DASHwith2] = ACTIONS(2970), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), + [anon_sym_EQ_EQ2] = ACTIONS(2925), + [anon_sym_BANG_EQ2] = ACTIONS(2925), + [anon_sym_LT2] = ACTIONS(2919), + [anon_sym_LT_EQ2] = ACTIONS(2925), + [anon_sym_GT_EQ2] = ACTIONS(2925), + [anon_sym_EQ_TILDE2] = ACTIONS(2972), + [anon_sym_BANG_TILDE2] = ACTIONS(2972), + [anon_sym_like2] = ACTIONS(2972), + [anon_sym_not_DASHlike2] = ACTIONS(2972), + [anon_sym_STAR_STAR2] = ACTIONS(2927), + [anon_sym_PLUS_PLUS2] = ACTIONS(2927), + [anon_sym_SLASH2] = ACTIONS(2923), + [anon_sym_mod2] = ACTIONS(2929), + [anon_sym_SLASH_SLASH2] = ACTIONS(2929), + [anon_sym_PLUS2] = ACTIONS(2931), + [anon_sym_bit_DASHshl2] = ACTIONS(2933), + [anon_sym_bit_DASHshr2] = ACTIONS(2933), + [anon_sym_bit_DASHand2] = ACTIONS(2974), + [anon_sym_bit_DASHxor2] = ACTIONS(2976), + [anon_sym_bit_DASHor2] = ACTIONS(2700), + [anon_sym_err_GT] = ACTIONS(2702), + [anon_sym_out_GT] = ACTIONS(2702), + [anon_sym_e_GT] = ACTIONS(2702), + [anon_sym_o_GT] = ACTIONS(2702), + [anon_sym_err_PLUSout_GT] = ACTIONS(2702), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), + [anon_sym_o_PLUSe_GT] = ACTIONS(2702), + [anon_sym_e_PLUSo_GT] = ACTIONS(2702), + [anon_sym_err_GT_GT] = ACTIONS(2700), + [anon_sym_out_GT_GT] = ACTIONS(2700), + [anon_sym_e_GT_GT] = ACTIONS(2700), + [anon_sym_o_GT_GT] = ACTIONS(2700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(1167), + [sym__ctrl_match_body] = STATE(5382), + [sym_match_arm] = STATE(4897), + [sym_default_arm] = STATE(4897), + [sym_match_pattern] = STATE(5399), + [sym__match_pattern] = STATE(4099), + [sym__match_pattern_expression] = STATE(4655), + [sym__match_pattern_value] = STATE(4656), + [sym__match_pattern_list] = STATE(4659), + [sym__match_pattern_record] = STATE(4663), + [sym_expr_parenthesized] = STATE(3961), + [sym_val_range] = STATE(4656), + [sym__val_range] = STATE(5303), + [sym_val_nothing] = STATE(4663), + [sym_val_bool] = STATE(4358), + [sym_val_variable] = STATE(3966), + [sym_val_number] = STATE(4663), + [sym__val_number_decimal] = STATE(3674), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(4663), + [sym_val_filesize] = STATE(4663), + [sym_val_binary] = STATE(4663), + [sym_val_string] = STATE(4663), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_table] = STATE(4663), + [sym_unquoted] = STATE(4665), + [sym__unquoted_anonymous_prefix] = STATE(5303), [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1373), + [aux_sym__ctrl_match_body_repeat1] = STATE(1407), + [anon_sym_true] = ACTIONS(2935), + [anon_sym_false] = ACTIONS(2935), + [anon_sym_null] = ACTIONS(2937), + [aux_sym_cmd_identifier_token3] = ACTIONS(2939), + [aux_sym_cmd_identifier_token4] = ACTIONS(2939), + [aux_sym_cmd_identifier_token5] = ACTIONS(2939), + [sym__newline] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym__] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_decimal_token2] = ACTIONS(2959), + [aux_sym__val_number_decimal_token3] = ACTIONS(2961), + [aux_sym__val_number_decimal_token4] = ACTIONS(2961), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(1228)] = { - [sym__expression] = STATE(5053), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1228), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2911), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(1231), + [aux_sym__repeat_newline] = STATE(1263), [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1230)] = { - [aux_sym__repeat_newline] = STATE(1168), + [aux_sym__repeat_newline] = STATE(1270), [sym_comment] = STATE(1230), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2696), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2698), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2696), - [anon_sym_has2] = ACTIONS(2696), - [anon_sym_not_DASHhas2] = ACTIONS(2696), - [anon_sym_starts_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), - [anon_sym_ends_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), - [anon_sym_EQ_EQ2] = ACTIONS(2696), - [anon_sym_BANG_EQ2] = ACTIONS(2696), - [anon_sym_LT2] = ACTIONS(2698), - [anon_sym_LT_EQ2] = ACTIONS(2696), - [anon_sym_GT_EQ2] = ACTIONS(2696), - [anon_sym_EQ_TILDE2] = ACTIONS(2696), - [anon_sym_BANG_TILDE2] = ACTIONS(2696), - [anon_sym_like2] = ACTIONS(2696), - [anon_sym_not_DASHlike2] = ACTIONS(2696), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1232)] = { - [sym__expression] = STATE(4997), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), - [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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(1233)] = { - [aux_sym__repeat_newline] = STATE(1169), - [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1276), - [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2937), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1179), - [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2822), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2822), - [anon_sym_has2] = ACTIONS(2822), - [anon_sym_not_DASHhas2] = ACTIONS(2822), - [anon_sym_starts_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), - [anon_sym_ends_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2696), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2698), - [anon_sym_DASH2] = ACTIONS(2696), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2696), - [anon_sym_has2] = ACTIONS(2696), - [anon_sym_not_DASHhas2] = ACTIONS(2696), - [anon_sym_starts_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), - [anon_sym_ends_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), - [anon_sym_EQ_EQ2] = ACTIONS(2696), - [anon_sym_BANG_EQ2] = ACTIONS(2696), - [anon_sym_LT2] = ACTIONS(2698), - [anon_sym_LT_EQ2] = ACTIONS(2696), - [anon_sym_GT_EQ2] = ACTIONS(2696), - [anon_sym_EQ_TILDE2] = ACTIONS(2696), - [anon_sym_BANG_TILDE2] = ACTIONS(2696), - [anon_sym_like2] = ACTIONS(2696), - [anon_sym_not_DASHlike2] = ACTIONS(2696), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2698), - [anon_sym_bit_DASHshl2] = ACTIONS(2696), - [anon_sym_bit_DASHshr2] = ACTIONS(2696), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1232)] = { + [aux_sym__repeat_newline] = STATE(1239), + [sym_comment] = STATE(1232), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_STAR2] = ACTIONS(2842), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2842), + [anon_sym_mod2] = ACTIONS(2840), + [anon_sym_SLASH_SLASH2] = ACTIONS(2840), + [anon_sym_PLUS2] = ACTIONS(2842), + [anon_sym_bit_DASHshl2] = ACTIONS(2840), + [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1233)] = { + [aux_sym__repeat_newline] = STATE(501), + [sym_comment] = STATE(1233), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2844), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1234)] = { + [aux_sym__repeat_newline] = STATE(1246), + [sym_comment] = STATE(1234), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1235)] = { + [sym__expression] = STATE(5045), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_comment] = STATE(1235), + [aux_sym_cmd_identifier_token2] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [STATE(1236)] = { + [aux_sym__repeat_newline] = STATE(1212), + [sym_comment] = STATE(1236), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2836), + [anon_sym_STAR2] = ACTIONS(2838), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [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(2836), + [anon_sym_BANG_EQ2] = ACTIONS(2836), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2836), + [anon_sym_GT_EQ2] = ACTIONS(2836), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2838), + [anon_sym_mod2] = ACTIONS(2836), + [anon_sym_SLASH_SLASH2] = ACTIONS(2836), + [anon_sym_PLUS2] = ACTIONS(2838), + [anon_sym_bit_DASHshl2] = ACTIONS(2836), + [anon_sym_bit_DASHshr2] = ACTIONS(2836), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1237)] = { + [sym__ctrl_match_body] = STATE(5297), + [sym_match_arm] = STATE(4897), + [sym_default_arm] = STATE(4897), + [sym_match_pattern] = STATE(5399), + [sym__match_pattern] = STATE(4099), + [sym__match_pattern_expression] = STATE(4655), + [sym__match_pattern_value] = STATE(4656), + [sym__match_pattern_list] = STATE(4659), + [sym__match_pattern_record] = STATE(4663), + [sym_expr_parenthesized] = STATE(3961), + [sym_val_range] = STATE(4656), + [sym__val_range] = STATE(5303), + [sym_val_nothing] = STATE(4663), + [sym_val_bool] = STATE(4358), + [sym_val_variable] = STATE(3966), + [sym_val_number] = STATE(4663), + [sym__val_number_decimal] = STATE(3674), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(4663), + [sym_val_filesize] = STATE(4663), + [sym_val_binary] = STATE(4663), + [sym_val_string] = STATE(4663), + [sym__raw_str] = STATE(2276), + [sym__str_double_quotes] = STATE(2276), + [sym__str_single_quotes] = STATE(2276), + [sym__str_back_ticks] = STATE(2276), + [sym_val_table] = STATE(4663), + [sym_unquoted] = STATE(4665), + [sym__unquoted_anonymous_prefix] = STATE(5303), [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(785), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(785), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(785), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(785), - [anon_sym_out_GT] = ACTIONS(785), - [anon_sym_e_GT] = ACTIONS(785), - [anon_sym_o_GT] = ACTIONS(785), - [anon_sym_err_PLUSout_GT] = ACTIONS(785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(785), - [anon_sym_o_PLUSe_GT] = ACTIONS(785), - [anon_sym_e_PLUSo_GT] = ACTIONS(785), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1373), + [aux_sym__ctrl_match_body_repeat1] = STATE(1407), + [anon_sym_true] = ACTIONS(2935), + [anon_sym_false] = ACTIONS(2935), + [anon_sym_null] = ACTIONS(2937), + [aux_sym_cmd_identifier_token3] = ACTIONS(2939), + [aux_sym_cmd_identifier_token4] = ACTIONS(2939), + [aux_sym_cmd_identifier_token5] = ACTIONS(2939), + [sym__newline] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym__] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_decimal_token2] = ACTIONS(2959), + [aux_sym__val_number_decimal_token3] = ACTIONS(2961), + [aux_sym__val_number_decimal_token4] = ACTIONS(2961), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1772), }, [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2826), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2826), - [anon_sym_has2] = ACTIONS(2826), - [anon_sym_not_DASHhas2] = ACTIONS(2826), - [anon_sym_starts_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), - [anon_sym_ends_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1239)] = { - [aux_sym__repeat_newline] = STATE(1185), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1239), - [anon_sym_in] = ACTIONS(2822), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2824), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2822), - [anon_sym_has2] = ACTIONS(2822), - [anon_sym_not_DASHhas2] = ACTIONS(2822), - [anon_sym_starts_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), - [anon_sym_ends_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), - [anon_sym_EQ_EQ2] = ACTIONS(2822), - [anon_sym_BANG_EQ2] = ACTIONS(2822), - [anon_sym_LT2] = ACTIONS(2824), - [anon_sym_LT_EQ2] = ACTIONS(2822), - [anon_sym_GT_EQ2] = ACTIONS(2822), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2844), + [anon_sym_STAR2] = ACTIONS(2846), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2846), + [anon_sym_mod2] = ACTIONS(2844), + [anon_sym_SLASH_SLASH2] = ACTIONS(2844), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1240)] = { - [aux_sym__repeat_newline] = STATE(1170), + [aux_sym__repeat_newline] = STATE(1268), [sym_comment] = STATE(1240), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2694), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2694), - [anon_sym_mod2] = ACTIONS(2692), - [anon_sym_SLASH_SLASH2] = ACTIONS(2692), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2826), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2828), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2826), - [anon_sym_has2] = ACTIONS(2826), - [anon_sym_not_DASHhas2] = ACTIONS(2826), - [anon_sym_starts_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), - [anon_sym_ends_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), - [anon_sym_EQ_EQ2] = ACTIONS(2826), - [anon_sym_BANG_EQ2] = ACTIONS(2826), - [anon_sym_LT2] = ACTIONS(2828), - [anon_sym_LT_EQ2] = ACTIONS(2826), - [anon_sym_GT_EQ2] = ACTIONS(2826), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [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(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [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_POUND] = ACTIONS(3), }, [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(1168), [sym_comment] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(2116), - [anon_sym_in] = ACTIONS(2116), - [sym__newline] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_err_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_GT_PIPE] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), - [anon_sym_GT2] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_STAR2] = ACTIONS(2118), - [anon_sym_and2] = ACTIONS(2116), - [anon_sym_xor2] = ACTIONS(2116), - [anon_sym_or2] = ACTIONS(2116), - [anon_sym_not_DASHin2] = ACTIONS(2116), - [anon_sym_has2] = ACTIONS(2116), - [anon_sym_not_DASHhas2] = ACTIONS(2116), - [anon_sym_starts_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), - [anon_sym_ends_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), - [anon_sym_EQ_EQ2] = ACTIONS(2116), - [anon_sym_BANG_EQ2] = ACTIONS(2116), - [anon_sym_LT2] = ACTIONS(2118), - [anon_sym_LT_EQ2] = ACTIONS(2116), - [anon_sym_GT_EQ2] = ACTIONS(2116), - [anon_sym_EQ_TILDE2] = ACTIONS(2116), - [anon_sym_BANG_TILDE2] = ACTIONS(2116), - [anon_sym_like2] = ACTIONS(2116), - [anon_sym_not_DASHlike2] = ACTIONS(2116), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_STAR_STAR2] = ACTIONS(2116), - [anon_sym_PLUS_PLUS2] = ACTIONS(2116), - [anon_sym_SLASH2] = ACTIONS(2118), - [anon_sym_mod2] = ACTIONS(2116), - [anon_sym_SLASH_SLASH2] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_bit_DASHshl2] = ACTIONS(2116), - [anon_sym_bit_DASHshr2] = ACTIONS(2116), - [anon_sym_bit_DASHand2] = ACTIONS(2116), - [anon_sym_bit_DASHxor2] = ACTIONS(2116), - [anon_sym_bit_DASHor2] = ACTIONS(2116), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2116), - [anon_sym_out_GT_GT] = ACTIONS(2116), - [anon_sym_e_GT_GT] = ACTIONS(2116), - [anon_sym_o_GT_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(1186), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2822), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2824), - [anon_sym_DASH2] = ACTIONS(2822), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2822), - [anon_sym_has2] = ACTIONS(2822), - [anon_sym_not_DASHhas2] = ACTIONS(2822), - [anon_sym_starts_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), - [anon_sym_ends_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), - [anon_sym_EQ_EQ2] = ACTIONS(2822), - [anon_sym_BANG_EQ2] = ACTIONS(2822), - [anon_sym_LT2] = ACTIONS(2824), - [anon_sym_LT_EQ2] = ACTIONS(2822), - [anon_sym_GT_EQ2] = ACTIONS(2822), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2824), - [anon_sym_bit_DASHshl2] = ACTIONS(2822), - [anon_sym_bit_DASHshr2] = ACTIONS(2822), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2696), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2698), - [anon_sym_DASH2] = ACTIONS(2696), - [anon_sym_STAR2] = ACTIONS(2698), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2696), - [anon_sym_has2] = ACTIONS(2696), - [anon_sym_not_DASHhas2] = ACTIONS(2696), - [anon_sym_starts_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), - [anon_sym_ends_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), - [anon_sym_EQ_EQ2] = ACTIONS(2696), - [anon_sym_BANG_EQ2] = ACTIONS(2696), - [anon_sym_LT2] = ACTIONS(2698), - [anon_sym_LT_EQ2] = ACTIONS(2696), - [anon_sym_GT_EQ2] = ACTIONS(2696), - [anon_sym_EQ_TILDE2] = ACTIONS(2696), - [anon_sym_BANG_TILDE2] = ACTIONS(2696), - [anon_sym_like2] = ACTIONS(2696), - [anon_sym_not_DASHlike2] = ACTIONS(2696), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2698), - [anon_sym_mod2] = ACTIONS(2696), - [anon_sym_SLASH_SLASH2] = ACTIONS(2696), - [anon_sym_PLUS2] = ACTIONS(2698), - [anon_sym_bit_DASHshl2] = ACTIONS(2696), - [anon_sym_bit_DASHshr2] = ACTIONS(2696), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [ts_builtin_sym_end] = ACTIONS(2375), + [anon_sym_in] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_err_GT_PIPE] = ACTIONS(2375), + [anon_sym_out_GT_PIPE] = ACTIONS(2375), + [anon_sym_e_GT_PIPE] = ACTIONS(2375), + [anon_sym_o_GT_PIPE] = ACTIONS(2375), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2375), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2375), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2375), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2375), + [anon_sym_GT2] = ACTIONS(2377), + [anon_sym_DASH2] = ACTIONS(2375), + [anon_sym_STAR2] = ACTIONS(2377), + [anon_sym_and2] = ACTIONS(2375), + [anon_sym_xor2] = ACTIONS(2375), + [anon_sym_or2] = ACTIONS(2375), + [anon_sym_not_DASHin2] = ACTIONS(2375), + [anon_sym_has2] = ACTIONS(2375), + [anon_sym_not_DASHhas2] = ACTIONS(2375), + [anon_sym_starts_DASHwith2] = ACTIONS(2375), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2375), + [anon_sym_ends_DASHwith2] = ACTIONS(2375), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2375), + [anon_sym_EQ_EQ2] = ACTIONS(2375), + [anon_sym_BANG_EQ2] = ACTIONS(2375), + [anon_sym_LT2] = ACTIONS(2377), + [anon_sym_LT_EQ2] = ACTIONS(2375), + [anon_sym_GT_EQ2] = ACTIONS(2375), + [anon_sym_EQ_TILDE2] = ACTIONS(2375), + [anon_sym_BANG_TILDE2] = ACTIONS(2375), + [anon_sym_like2] = ACTIONS(2375), + [anon_sym_not_DASHlike2] = ACTIONS(2375), + [anon_sym_STAR_STAR2] = ACTIONS(2375), + [anon_sym_PLUS_PLUS2] = ACTIONS(2375), + [anon_sym_SLASH2] = ACTIONS(2377), + [anon_sym_mod2] = ACTIONS(2375), + [anon_sym_SLASH_SLASH2] = ACTIONS(2375), + [anon_sym_PLUS2] = ACTIONS(2377), + [anon_sym_bit_DASHshl2] = ACTIONS(2375), + [anon_sym_bit_DASHshr2] = ACTIONS(2375), + [anon_sym_bit_DASHand2] = ACTIONS(2375), + [anon_sym_bit_DASHxor2] = ACTIONS(2375), + [anon_sym_bit_DASHor2] = ACTIONS(2375), + [anon_sym_LBRACK2] = ACTIONS(2990), + [anon_sym_err_GT] = ACTIONS(2377), + [anon_sym_out_GT] = ACTIONS(2377), + [anon_sym_e_GT] = ACTIONS(2377), + [anon_sym_o_GT] = ACTIONS(2377), + [anon_sym_err_PLUSout_GT] = ACTIONS(2377), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2377), + [anon_sym_o_PLUSe_GT] = ACTIONS(2377), + [anon_sym_e_PLUSo_GT] = ACTIONS(2377), + [anon_sym_err_GT_GT] = ACTIONS(2375), + [anon_sym_out_GT_GT] = ACTIONS(2375), + [anon_sym_e_GT_GT] = ACTIONS(2375), + [anon_sym_o_GT_GT] = ACTIONS(2375), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2375), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2375), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2375), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2375), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1216), [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2826), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2828), - [anon_sym_DASH2] = ACTIONS(2826), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2826), - [anon_sym_has2] = ACTIONS(2826), - [anon_sym_not_DASHhas2] = ACTIONS(2826), - [anon_sym_starts_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), - [anon_sym_ends_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), - [anon_sym_EQ_EQ2] = ACTIONS(2826), - [anon_sym_BANG_EQ2] = ACTIONS(2826), - [anon_sym_LT2] = ACTIONS(2828), - [anon_sym_LT_EQ2] = ACTIONS(2826), - [anon_sym_GT_EQ2] = ACTIONS(2826), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2828), - [anon_sym_bit_DASHshl2] = ACTIONS(2826), - [anon_sym_bit_DASHshr2] = ACTIONS(2826), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(1281), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1247)] = { - [aux_sym__repeat_newline] = STATE(1188), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2822), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2824), - [anon_sym_DASH2] = ACTIONS(2822), - [anon_sym_STAR2] = ACTIONS(2824), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2822), - [anon_sym_has2] = ACTIONS(2822), - [anon_sym_not_DASHhas2] = ACTIONS(2822), - [anon_sym_starts_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), - [anon_sym_ends_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), - [anon_sym_EQ_EQ2] = ACTIONS(2822), - [anon_sym_BANG_EQ2] = ACTIONS(2822), - [anon_sym_LT2] = ACTIONS(2824), - [anon_sym_LT_EQ2] = ACTIONS(2822), - [anon_sym_GT_EQ2] = ACTIONS(2822), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2824), - [anon_sym_mod2] = ACTIONS(2822), - [anon_sym_SLASH_SLASH2] = ACTIONS(2822), - [anon_sym_PLUS2] = ACTIONS(2824), - [anon_sym_bit_DASHshl2] = ACTIONS(2822), - [anon_sym_bit_DASHshr2] = ACTIONS(2822), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(1171), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2826), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2828), - [anon_sym_DASH2] = ACTIONS(2826), - [anon_sym_STAR2] = ACTIONS(2828), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2826), - [anon_sym_has2] = ACTIONS(2826), - [anon_sym_not_DASHhas2] = ACTIONS(2826), - [anon_sym_starts_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), - [anon_sym_ends_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), - [anon_sym_EQ_EQ2] = ACTIONS(2826), - [anon_sym_BANG_EQ2] = ACTIONS(2826), - [anon_sym_LT2] = ACTIONS(2828), - [anon_sym_LT_EQ2] = ACTIONS(2826), - [anon_sym_GT_EQ2] = ACTIONS(2826), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2828), - [anon_sym_mod2] = ACTIONS(2826), - [anon_sym_SLASH_SLASH2] = ACTIONS(2826), - [anon_sym_PLUS2] = ACTIONS(2828), - [anon_sym_bit_DASHshl2] = ACTIONS(2826), - [anon_sym_bit_DASHshr2] = ACTIONS(2826), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1190), - [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1251)] = { - [aux_sym__repeat_newline] = STATE(503), - [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1252)] = { - [aux_sym__repeat_newline] = STATE(1193), - [sym_comment] = STATE(1252), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1253)] = { - [sym_comment] = STATE(1253), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [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(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [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(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [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(1254)] = { - [sym_comment] = STATE(1254), - [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(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [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(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [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(1255)] = { - [sym_comment] = STATE(1255), - [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_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [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(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [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(1256)] = { - [sym_comment] = STATE(1256), - [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_RBRACE] = 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(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [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_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1250)] = { + [aux_sym__repeat_newline] = STATE(1220), + [sym_comment] = STATE(1250), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(1274), + [sym_comment] = STATE(1251), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1252)] = { + [aux_sym__repeat_newline] = STATE(1182), + [sym_comment] = STATE(1252), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1253)] = { + [sym_comment] = STATE(1253), + [ts_builtin_sym_end] = ACTIONS(2576), + [aux_sym_cmd_identifier_token2] = ACTIONS(2986), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2578), + [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(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [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(2578), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2578), + [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(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(1254)] = { + [sym_comment] = STATE(1254), + [ts_builtin_sym_end] = ACTIONS(2604), + [aux_sym_cmd_identifier_token2] = ACTIONS(2986), + [anon_sym_in] = ACTIONS(2606), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2606), + [anon_sym_xor2] = ACTIONS(2606), + [anon_sym_or2] = ACTIONS(2606), + [anon_sym_not_DASHin2] = ACTIONS(2606), + [anon_sym_has2] = ACTIONS(2606), + [anon_sym_not_DASHhas2] = ACTIONS(2606), + [anon_sym_starts_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), + [anon_sym_ends_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2606), + [anon_sym_like2] = ACTIONS(2606), + [anon_sym_not_DASHlike2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(2606), + [anon_sym_PLUS_PLUS2] = ACTIONS(2606), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2606), + [anon_sym_SLASH_SLASH2] = ACTIONS(2606), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2606), + [anon_sym_bit_DASHshr2] = ACTIONS(2606), + [anon_sym_bit_DASHand2] = ACTIONS(2606), + [anon_sym_bit_DASHxor2] = ACTIONS(2606), + [anon_sym_bit_DASHor2] = ACTIONS(2606), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(105), + }, + [STATE(1255)] = { + [sym_comment] = STATE(1255), + [ts_builtin_sym_end] = ACTIONS(2397), + [anon_sym_finally] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [sym__newline] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_err_GT_PIPE] = ACTIONS(2397), + [anon_sym_out_GT_PIPE] = ACTIONS(2397), + [anon_sym_e_GT_PIPE] = ACTIONS(2397), + [anon_sym_o_GT_PIPE] = ACTIONS(2397), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2397), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2397), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2397), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2397), + [anon_sym_GT2] = ACTIONS(2399), + [anon_sym_DASH2] = ACTIONS(2397), + [anon_sym_STAR2] = ACTIONS(2399), + [anon_sym_and2] = ACTIONS(2397), + [anon_sym_xor2] = ACTIONS(2397), + [anon_sym_or2] = ACTIONS(2397), + [anon_sym_not_DASHin2] = ACTIONS(2397), + [anon_sym_has2] = ACTIONS(2397), + [anon_sym_not_DASHhas2] = ACTIONS(2397), + [anon_sym_starts_DASHwith2] = ACTIONS(2397), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2397), + [anon_sym_ends_DASHwith2] = ACTIONS(2397), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2397), + [anon_sym_EQ_EQ2] = ACTIONS(2397), + [anon_sym_BANG_EQ2] = ACTIONS(2397), + [anon_sym_LT2] = ACTIONS(2399), + [anon_sym_LT_EQ2] = ACTIONS(2397), + [anon_sym_GT_EQ2] = ACTIONS(2397), + [anon_sym_EQ_TILDE2] = ACTIONS(2397), + [anon_sym_BANG_TILDE2] = ACTIONS(2397), + [anon_sym_like2] = ACTIONS(2397), + [anon_sym_not_DASHlike2] = ACTIONS(2397), + [anon_sym_STAR_STAR2] = ACTIONS(2397), + [anon_sym_PLUS_PLUS2] = ACTIONS(2397), + [anon_sym_SLASH2] = ACTIONS(2399), + [anon_sym_mod2] = ACTIONS(2397), + [anon_sym_SLASH_SLASH2] = ACTIONS(2397), + [anon_sym_PLUS2] = ACTIONS(2399), + [anon_sym_bit_DASHshl2] = ACTIONS(2397), + [anon_sym_bit_DASHshr2] = ACTIONS(2397), + [anon_sym_bit_DASHand2] = ACTIONS(2397), + [anon_sym_bit_DASHxor2] = ACTIONS(2397), + [anon_sym_bit_DASHor2] = ACTIONS(2397), + [anon_sym_err_GT] = ACTIONS(2399), + [anon_sym_out_GT] = ACTIONS(2399), + [anon_sym_e_GT] = ACTIONS(2399), + [anon_sym_o_GT] = ACTIONS(2399), + [anon_sym_err_PLUSout_GT] = ACTIONS(2399), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2399), + [anon_sym_o_PLUSe_GT] = ACTIONS(2399), + [anon_sym_e_PLUSo_GT] = ACTIONS(2399), + [anon_sym_err_GT_GT] = ACTIONS(2397), + [anon_sym_out_GT_GT] = ACTIONS(2397), + [anon_sym_e_GT_GT] = ACTIONS(2397), + [anon_sym_o_GT_GT] = ACTIONS(2397), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2397), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2397), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2397), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2397), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1256)] = { + [sym__expression] = STATE(5001), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), + [sym_comment] = STATE(1256), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, [STATE(1257)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1257), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [anon_sym_EQ_TILDE2] = ACTIONS(2962), - [anon_sym_BANG_TILDE2] = ACTIONS(2962), - [anon_sym_like2] = ACTIONS(2962), - [anon_sym_not_DASHlike2] = ACTIONS(2962), - [anon_sym_STAR_STAR2] = ACTIONS(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [anon_sym_bit_DASHand2] = ACTIONS(2964), - [anon_sym_bit_DASHxor2] = ACTIONS(2966), - [anon_sym_bit_DASHor2] = ACTIONS(2968), - [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_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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [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(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [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(1258)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1258), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2970), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [anon_sym_EQ_TILDE2] = ACTIONS(2962), - [anon_sym_BANG_TILDE2] = ACTIONS(2962), - [anon_sym_like2] = ACTIONS(2962), - [anon_sym_not_DASHlike2] = ACTIONS(2962), - [anon_sym_STAR_STAR2] = ACTIONS(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [anon_sym_bit_DASHand2] = ACTIONS(2964), - [anon_sym_bit_DASHxor2] = ACTIONS(2966), - [anon_sym_bit_DASHor2] = ACTIONS(2968), - [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_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1259)] = { + [sym__expression] = STATE(5002), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1259), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2970), - [anon_sym_xor2] = ACTIONS(2972), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [anon_sym_EQ_TILDE2] = ACTIONS(2962), - [anon_sym_BANG_TILDE2] = ACTIONS(2962), - [anon_sym_like2] = ACTIONS(2962), - [anon_sym_not_DASHlike2] = ACTIONS(2962), - [anon_sym_STAR_STAR2] = ACTIONS(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [anon_sym_bit_DASHand2] = ACTIONS(2964), - [anon_sym_bit_DASHxor2] = ACTIONS(2966), - [anon_sym_bit_DASHor2] = ACTIONS(2968), - [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1260)] = { [sym_comment] = STATE(1260), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [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(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [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), + [ts_builtin_sym_end] = ACTIONS(914), + [aux_sym_cmd_identifier_token2] = ACTIONS(2986), + [anon_sym_in] = ACTIONS(811), + [sym__newline] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_err_GT_PIPE] = ACTIONS(914), + [anon_sym_out_GT_PIPE] = ACTIONS(914), + [anon_sym_e_GT_PIPE] = ACTIONS(914), + [anon_sym_o_GT_PIPE] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(914), + [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(914), + [anon_sym_GT_EQ2] = ACTIONS(914), + [anon_sym_EQ_TILDE2] = ACTIONS(914), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(914), + [anon_sym_out_GT_GT] = ACTIONS(914), + [anon_sym_e_GT_GT] = ACTIONS(914), + [anon_sym_o_GT_GT] = ACTIONS(914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(105), }, [STATE(1261)] = { + [aux_sym__repeat_newline] = STATE(1183), [sym_comment] = STATE(1261), - [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(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [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(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [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_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1262)] = { + [aux_sym__repeat_newline] = STATE(1228), [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [anon_sym_EQ_TILDE2] = ACTIONS(2962), - [anon_sym_BANG_TILDE2] = ACTIONS(2962), - [anon_sym_like2] = ACTIONS(2962), - [anon_sym_not_DASHlike2] = ACTIONS(2962), - [anon_sym_STAR_STAR2] = ACTIONS(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [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_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1263)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1263), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [anon_sym_EQ_TILDE2] = ACTIONS(2962), - [anon_sym_BANG_TILDE2] = ACTIONS(2962), - [anon_sym_like2] = ACTIONS(2962), - [anon_sym_not_DASHlike2] = ACTIONS(2962), - [anon_sym_STAR_STAR2] = ACTIONS(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [anon_sym_bit_DASHand2] = ACTIONS(2964), - [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_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2862), + [anon_sym_xor2] = ACTIONS(2911), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1264)] = { + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1264), - [anon_sym_in] = ACTIONS(2960), - [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(2944), - [anon_sym_DASH2] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2948), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2960), - [anon_sym_has2] = ACTIONS(2960), - [anon_sym_not_DASHhas2] = ACTIONS(2960), - [anon_sym_starts_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), - [anon_sym_ends_DASHwith2] = ACTIONS(2960), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), - [anon_sym_EQ_EQ2] = ACTIONS(2950), - [anon_sym_BANG_EQ2] = ACTIONS(2950), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LT_EQ2] = ACTIONS(2950), - [anon_sym_GT_EQ2] = ACTIONS(2950), - [anon_sym_EQ_TILDE2] = ACTIONS(2962), - [anon_sym_BANG_TILDE2] = ACTIONS(2962), - [anon_sym_like2] = ACTIONS(2962), - [anon_sym_not_DASHlike2] = ACTIONS(2962), - [anon_sym_STAR_STAR2] = ACTIONS(2952), - [anon_sym_PLUS_PLUS2] = ACTIONS(2952), - [anon_sym_SLASH2] = ACTIONS(2948), - [anon_sym_mod2] = ACTIONS(2954), - [anon_sym_SLASH_SLASH2] = ACTIONS(2954), - [anon_sym_PLUS2] = ACTIONS(2956), - [anon_sym_bit_DASHshl2] = ACTIONS(2958), - [anon_sym_bit_DASHshr2] = ACTIONS(2958), - [anon_sym_bit_DASHand2] = ACTIONS(2964), - [anon_sym_bit_DASHxor2] = ACTIONS(2966), - [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_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(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [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(1265)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1231), [sym_comment] = STATE(1265), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1266)] = { - [aux_sym__repeat_newline] = STATE(1224), + [aux_sym__repeat_newline] = STATE(1173), [sym_comment] = STATE(1266), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1267)] = { - [aux_sym__repeat_newline] = STATE(1195), + [aux_sym__repeat_newline] = STATE(1185), [sym_comment] = STATE(1267), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2937), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2782), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2784), + [anon_sym_bit_DASHshl2] = ACTIONS(2782), + [anon_sym_bit_DASHshr2] = ACTIONS(2782), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1268)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1268), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2926), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1269)] = { - [aux_sym__repeat_newline] = STATE(1198), + [aux_sym__repeat_newline] = STATE(1248), [sym_comment] = STATE(1269), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1270)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1270), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [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_STAR2] = ACTIONS(2850), + [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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [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(1271)] = { - [aux_sym__repeat_newline] = STATE(1172), + [aux_sym__repeat_newline] = STATE(1187), [sym_comment] = STATE(1271), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2782), + [anon_sym_STAR2] = ACTIONS(2784), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2784), + [anon_sym_mod2] = ACTIONS(2782), + [anon_sym_SLASH_SLASH2] = ACTIONS(2782), + [anon_sym_PLUS2] = ACTIONS(2784), + [anon_sym_bit_DASHshl2] = ACTIONS(2782), + [anon_sym_bit_DASHshr2] = ACTIONS(2782), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1272)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expression] = STATE(5061), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1272), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1273)] = { - [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1273), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [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(2484), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_STAR2] = ACTIONS(2484), + [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(2484), + [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(2484), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2477), + [anon_sym_bit_DASHshr2] = ACTIONS(2477), + [anon_sym_bit_DASHand2] = ACTIONS(2477), + [anon_sym_bit_DASHxor2] = ACTIONS(2477), + [anon_sym_bit_DASHor2] = ACTIONS(2477), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [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(1274)] = { - [aux_sym__repeat_newline] = STATE(1173), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1274), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2841), - [anon_sym_xor2] = ACTIONS(2937), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2857), - [anon_sym_bit_DASHor2] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [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_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(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [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(1275)] = { + [aux_sym__repeat_newline] = STATE(1176), [sym_comment] = STATE(1275), - [ts_builtin_sym_end] = ACTIONS(2402), - [anon_sym_finally] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2402), - [sym__newline] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2402), - [anon_sym_err_GT_PIPE] = ACTIONS(2402), - [anon_sym_out_GT_PIPE] = ACTIONS(2402), - [anon_sym_e_GT_PIPE] = ACTIONS(2402), - [anon_sym_o_GT_PIPE] = ACTIONS(2402), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2402), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2402), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2402), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2402), - [anon_sym_GT2] = ACTIONS(2404), - [anon_sym_DASH2] = ACTIONS(2402), - [anon_sym_STAR2] = ACTIONS(2404), - [anon_sym_and2] = ACTIONS(2402), - [anon_sym_xor2] = ACTIONS(2402), - [anon_sym_or2] = ACTIONS(2402), - [anon_sym_not_DASHin2] = ACTIONS(2402), - [anon_sym_has2] = ACTIONS(2402), - [anon_sym_not_DASHhas2] = ACTIONS(2402), - [anon_sym_starts_DASHwith2] = ACTIONS(2402), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2402), - [anon_sym_ends_DASHwith2] = ACTIONS(2402), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2402), - [anon_sym_EQ_EQ2] = ACTIONS(2402), - [anon_sym_BANG_EQ2] = ACTIONS(2402), - [anon_sym_LT2] = ACTIONS(2404), - [anon_sym_LT_EQ2] = ACTIONS(2402), - [anon_sym_GT_EQ2] = ACTIONS(2402), - [anon_sym_EQ_TILDE2] = ACTIONS(2402), - [anon_sym_BANG_TILDE2] = ACTIONS(2402), - [anon_sym_like2] = ACTIONS(2402), - [anon_sym_not_DASHlike2] = ACTIONS(2402), - [anon_sym_STAR_STAR2] = ACTIONS(2402), - [anon_sym_PLUS_PLUS2] = ACTIONS(2402), - [anon_sym_SLASH2] = ACTIONS(2404), - [anon_sym_mod2] = ACTIONS(2402), - [anon_sym_SLASH_SLASH2] = ACTIONS(2402), - [anon_sym_PLUS2] = ACTIONS(2404), - [anon_sym_bit_DASHshl2] = ACTIONS(2402), - [anon_sym_bit_DASHshr2] = ACTIONS(2402), - [anon_sym_bit_DASHand2] = ACTIONS(2402), - [anon_sym_bit_DASHxor2] = ACTIONS(2402), - [anon_sym_bit_DASHor2] = ACTIONS(2402), - [anon_sym_err_GT] = ACTIONS(2404), - [anon_sym_out_GT] = ACTIONS(2404), - [anon_sym_e_GT] = ACTIONS(2404), - [anon_sym_o_GT] = ACTIONS(2404), - [anon_sym_err_PLUSout_GT] = ACTIONS(2404), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2404), - [anon_sym_o_PLUSe_GT] = ACTIONS(2404), - [anon_sym_e_PLUSo_GT] = ACTIONS(2404), - [anon_sym_err_GT_GT] = ACTIONS(2402), - [anon_sym_out_GT_GT] = ACTIONS(2402), - [anon_sym_e_GT_GT] = ACTIONS(2402), - [anon_sym_o_GT_GT] = ACTIONS(2402), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2402), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2402), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2402), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1276)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1208), [sym_comment] = STATE(1276), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2924), - [anon_sym_xor2] = ACTIONS(2926), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2886), - [anon_sym_bit_DASHor2] = ACTIONS(2922), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1277)] = { - [aux_sym__repeat_newline] = STATE(1216), + [aux_sym__repeat_newline] = STATE(1241), [sym_comment] = STATE(1277), - [anon_sym_in] = ACTIONS(2822), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2824), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2822), - [anon_sym_has2] = ACTIONS(2822), - [anon_sym_not_DASHhas2] = ACTIONS(2822), - [anon_sym_starts_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), - [anon_sym_ends_DASHwith2] = ACTIONS(2822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), - [anon_sym_EQ_EQ2] = ACTIONS(2822), - [anon_sym_BANG_EQ2] = ACTIONS(2822), - [anon_sym_LT2] = ACTIONS(2824), - [anon_sym_LT_EQ2] = ACTIONS(2822), - [anon_sym_GT_EQ2] = ACTIONS(2822), - [anon_sym_EQ_TILDE2] = ACTIONS(2822), - [anon_sym_BANG_TILDE2] = ACTIONS(2822), - [anon_sym_like2] = ACTIONS(2822), - [anon_sym_not_DASHlike2] = ACTIONS(2822), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2822), - [anon_sym_bit_DASHshr2] = ACTIONS(2822), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [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(2836), + [anon_sym_BANG_EQ2] = ACTIONS(2836), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2836), + [anon_sym_GT_EQ2] = ACTIONS(2836), + [anon_sym_EQ_TILDE2] = ACTIONS(2836), + [anon_sym_BANG_TILDE2] = ACTIONS(2836), + [anon_sym_like2] = ACTIONS(2836), + [anon_sym_not_DASHlike2] = ACTIONS(2836), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2836), + [anon_sym_bit_DASHshr2] = ACTIONS(2836), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1278)] = { - [aux_sym__repeat_newline] = STATE(1174), + [aux_sym__repeat_newline] = STATE(1189), [sym_comment] = STATE(1278), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1279)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1279), - [anon_sym_in] = ACTIONS(2826), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2828), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2826), - [anon_sym_has2] = ACTIONS(2826), - [anon_sym_not_DASHhas2] = ACTIONS(2826), - [anon_sym_starts_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), - [anon_sym_ends_DASHwith2] = ACTIONS(2826), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), - [anon_sym_EQ_EQ2] = ACTIONS(2826), - [anon_sym_BANG_EQ2] = ACTIONS(2826), - [anon_sym_LT2] = ACTIONS(2828), - [anon_sym_LT_EQ2] = ACTIONS(2826), - [anon_sym_GT_EQ2] = ACTIONS(2826), - [anon_sym_EQ_TILDE2] = ACTIONS(2826), - [anon_sym_BANG_TILDE2] = ACTIONS(2826), - [anon_sym_like2] = ACTIONS(2826), - [anon_sym_not_DASHlike2] = ACTIONS(2826), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2826), - [anon_sym_bit_DASHshr2] = ACTIONS(2826), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2858), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1280)] = { - [aux_sym__repeat_newline] = STATE(1218), + [aux_sym__repeat_newline] = STATE(501), [sym_comment] = STATE(1280), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2822), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2858), + [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(2860), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2858), + [anon_sym_has2] = ACTIONS(2858), + [anon_sym_not_DASHhas2] = ACTIONS(2858), + [anon_sym_starts_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), + [anon_sym_ends_DASHwith2] = ACTIONS(2858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), + [anon_sym_EQ_EQ2] = ACTIONS(2864), + [anon_sym_BANG_EQ2] = ACTIONS(2864), + [anon_sym_LT2] = ACTIONS(2860), + [anon_sym_LT_EQ2] = ACTIONS(2864), + [anon_sym_GT_EQ2] = ACTIONS(2864), + [anon_sym_EQ_TILDE2] = ACTIONS(2866), + [anon_sym_BANG_TILDE2] = ACTIONS(2866), + [anon_sym_like2] = ACTIONS(2866), + [anon_sym_not_DASHlike2] = ACTIONS(2866), + [anon_sym_STAR_STAR2] = ACTIONS(2852), + [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2854), + [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_PLUS2] = ACTIONS(2856), + [anon_sym_bit_DASHshl2] = ACTIONS(2868), + [anon_sym_bit_DASHshr2] = ACTIONS(2868), + [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2874), + [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(1281)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1247), [sym_comment] = STATE(1281), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2696), - [anon_sym_BANG_TILDE2] = ACTIONS(2696), - [anon_sym_like2] = ACTIONS(2696), - [anon_sym_not_DASHlike2] = ACTIONS(2696), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1282)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1243), [sym_comment] = STATE(1282), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_err_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_GT_PIPE] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2836), + [anon_sym_xor2] = ACTIONS(2836), + [anon_sym_or2] = ACTIONS(2836), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2836), + [anon_sym_bit_DASHxor2] = ACTIONS(2836), + [anon_sym_bit_DASHor2] = ACTIONS(2836), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2836), + [anon_sym_out_GT_GT] = ACTIONS(2836), + [anon_sym_e_GT_GT] = ACTIONS(2836), + [anon_sym_o_GT_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1283)] = { - [aux_sym__repeat_newline] = STATE(1222), + [aux_sym__repeat_newline] = STATE(1190), [sym_comment] = STATE(1283), - [anon_sym_in] = ACTIONS(2830), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_err_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_GT_PIPE] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), - [anon_sym_RPAREN] = ACTIONS(2822), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2822), - [anon_sym_xor2] = ACTIONS(2822), - [anon_sym_or2] = ACTIONS(2822), - [anon_sym_not_DASHin2] = ACTIONS(2830), - [anon_sym_has2] = ACTIONS(2830), - [anon_sym_not_DASHhas2] = ACTIONS(2830), - [anon_sym_starts_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), - [anon_sym_ends_DASHwith2] = ACTIONS(2830), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), - [anon_sym_EQ_EQ2] = ACTIONS(2843), - [anon_sym_BANG_EQ2] = ACTIONS(2843), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2843), - [anon_sym_GT_EQ2] = ACTIONS(2843), - [anon_sym_EQ_TILDE2] = ACTIONS(2845), - [anon_sym_BANG_TILDE2] = ACTIONS(2845), - [anon_sym_like2] = ACTIONS(2845), - [anon_sym_not_DASHlike2] = ACTIONS(2845), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2851), - [anon_sym_bit_DASHshl2] = ACTIONS(2853), - [anon_sym_bit_DASHshr2] = ACTIONS(2853), - [anon_sym_bit_DASHand2] = ACTIONS(2855), - [anon_sym_bit_DASHxor2] = ACTIONS(2822), - [anon_sym_bit_DASHor2] = ACTIONS(2822), - [anon_sym_err_GT] = ACTIONS(2824), - [anon_sym_out_GT] = ACTIONS(2824), - [anon_sym_e_GT] = ACTIONS(2824), - [anon_sym_o_GT] = ACTIONS(2824), - [anon_sym_err_PLUSout_GT] = ACTIONS(2824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), - [anon_sym_o_PLUSe_GT] = ACTIONS(2824), - [anon_sym_e_PLUSo_GT] = ACTIONS(2824), - [anon_sym_err_GT_GT] = ACTIONS(2822), - [anon_sym_out_GT_GT] = ACTIONS(2822), - [anon_sym_e_GT_GT] = ACTIONS(2822), - [anon_sym_o_GT_GT] = ACTIONS(2822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2887), + [anon_sym_BANG_EQ2] = ACTIONS(2887), + [anon_sym_LT2] = ACTIONS(2881), + [anon_sym_LT_EQ2] = ACTIONS(2887), + [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_TILDE2] = ACTIONS(2889), + [anon_sym_BANG_TILDE2] = ACTIONS(2889), + [anon_sym_like2] = ACTIONS(2889), + [anon_sym_not_DASHlike2] = ACTIONS(2889), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1284)] = { - [aux_sym__repeat_newline] = STATE(1236), + [aux_sym__repeat_newline] = STATE(1219), [sym_comment] = STATE(1284), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2847), - [anon_sym_PLUS_PLUS2] = ACTIONS(2847), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2849), - [anon_sym_SLASH_SLASH2] = ACTIONS(2849), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2897), + [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1285)] = { - [aux_sym__repeat_newline] = STATE(503), + [sym__expression] = STATE(5027), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1285), - [anon_sym_in] = ACTIONS(2874), - [sym__newline] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2826), - [anon_sym_xor2] = ACTIONS(2826), - [anon_sym_or2] = ACTIONS(2826), - [anon_sym_not_DASHin2] = ACTIONS(2874), - [anon_sym_has2] = ACTIONS(2874), - [anon_sym_not_DASHhas2] = ACTIONS(2874), - [anon_sym_starts_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), - [anon_sym_ends_DASHwith2] = ACTIONS(2874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2880), - [anon_sym_BANG_TILDE2] = ACTIONS(2880), - [anon_sym_like2] = ACTIONS(2880), - [anon_sym_not_DASHlike2] = ACTIONS(2880), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2884), - [anon_sym_bit_DASHxor2] = ACTIONS(2826), - [anon_sym_bit_DASHor2] = ACTIONS(2826), - [anon_sym_err_GT] = ACTIONS(2828), - [anon_sym_out_GT] = ACTIONS(2828), - [anon_sym_e_GT] = ACTIONS(2828), - [anon_sym_o_GT] = ACTIONS(2828), - [anon_sym_err_PLUSout_GT] = ACTIONS(2828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), - [anon_sym_o_PLUSe_GT] = ACTIONS(2828), - [anon_sym_e_PLUSo_GT] = ACTIONS(2828), - [anon_sym_err_GT_GT] = ACTIONS(2826), - [anon_sym_out_GT_GT] = ACTIONS(2826), - [anon_sym_e_GT_GT] = ACTIONS(2826), - [anon_sym_o_GT_GT] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1286)] = { - [sym__expression] = STATE(4929), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym__expression] = STATE(5053), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1287)] = { - [sym__expression] = STATE(5048), - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(947), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2259), - [sym_expr_parenthesized] = STATE(743), - [sym_val_range] = STATE(946), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(945), - [sym_val_bool] = STATE(945), + [sym__expression] = STATE(5058), + [sym_expr_unary] = STATE(979), + [sym__expr_unary_minus] = STATE(980), + [sym_expr_binary] = STATE(979), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(979), + [sym__value] = STATE(979), + [sym_val_nothing] = STATE(969), + [sym_val_bool] = STATE(969), [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(945), - [sym_val_number] = STATE(945), - [sym__val_number_decimal] = STATE(1885), - [sym__val_number] = STATE(744), - [sym_val_duration] = STATE(945), - [sym_val_filesize] = STATE(945), - [sym_val_binary] = STATE(945), - [sym_val_string] = STATE(945), - [sym__raw_str] = STATE(442), - [sym__str_double_quotes] = STATE(442), - [sym__str_single_quotes] = STATE(442), - [sym__str_back_ticks] = STATE(442), - [sym_val_interpolated] = STATE(945), - [sym__inter_single_quotes] = STATE(809), - [sym__inter_double_quotes] = STATE(810), - [sym_val_list] = STATE(945), - [sym_val_record] = STATE(945), - [sym_val_table] = STATE(945), - [sym_val_closure] = STATE(945), + [sym_val_cellpath] = STATE(969), + [sym_val_number] = STATE(969), + [sym__val_number_decimal] = STATE(1878), + [sym__val_number] = STATE(726), + [sym_val_duration] = STATE(969), + [sym_val_filesize] = STATE(969), + [sym_val_binary] = STATE(969), + [sym_val_string] = STATE(969), + [sym__raw_str] = STATE(436), + [sym__str_double_quotes] = STATE(436), + [sym__str_single_quotes] = STATE(436), + [sym__str_back_ticks] = STATE(436), + [sym_val_interpolated] = STATE(969), + [sym__inter_single_quotes] = STATE(766), + [sym__inter_double_quotes] = STATE(767), + [sym_val_list] = STATE(969), + [sym_val_record] = STATE(969), + [sym_val_table] = STATE(969), + [sym_val_closure] = STATE(969), [sym_comment] = STATE(1287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1270), - [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(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2652), - [aux_sym__val_number_decimal_token4] = ACTIONS(2652), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = 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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2638), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(2644), + [aux_sym__val_number_decimal_token4] = ACTIONS(2644), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, [STATE(1288)] = { - [aux_sym__repeat_newline] = STATE(503), + [aux_sym__repeat_newline] = STATE(1152), [sym_comment] = STATE(1288), - [anon_sym_in] = ACTIONS(2696), - [sym__newline] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_err_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_GT_PIPE] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_GT2] = ACTIONS(2876), - [anon_sym_DASH2] = ACTIONS(2864), - [anon_sym_STAR2] = ACTIONS(2866), - [anon_sym_and2] = ACTIONS(2696), - [anon_sym_xor2] = ACTIONS(2696), - [anon_sym_or2] = ACTIONS(2696), - [anon_sym_not_DASHin2] = ACTIONS(2696), - [anon_sym_has2] = ACTIONS(2696), - [anon_sym_not_DASHhas2] = ACTIONS(2696), - [anon_sym_starts_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), - [anon_sym_ends_DASHwith2] = ACTIONS(2696), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), - [anon_sym_EQ_EQ2] = ACTIONS(2878), - [anon_sym_BANG_EQ2] = ACTIONS(2878), - [anon_sym_LT2] = ACTIONS(2876), - [anon_sym_LT_EQ2] = ACTIONS(2878), - [anon_sym_GT_EQ2] = ACTIONS(2878), - [anon_sym_EQ_TILDE2] = ACTIONS(2696), - [anon_sym_BANG_TILDE2] = ACTIONS(2696), - [anon_sym_like2] = ACTIONS(2696), - [anon_sym_not_DASHlike2] = ACTIONS(2696), - [anon_sym_STAR_STAR2] = ACTIONS(2868), - [anon_sym_PLUS_PLUS2] = ACTIONS(2868), - [anon_sym_SLASH2] = ACTIONS(2866), - [anon_sym_mod2] = ACTIONS(2870), - [anon_sym_SLASH_SLASH2] = ACTIONS(2870), - [anon_sym_PLUS2] = ACTIONS(2872), - [anon_sym_bit_DASHshl2] = ACTIONS(2882), - [anon_sym_bit_DASHshr2] = ACTIONS(2882), - [anon_sym_bit_DASHand2] = ACTIONS(2696), - [anon_sym_bit_DASHxor2] = ACTIONS(2696), - [anon_sym_bit_DASHor2] = ACTIONS(2696), - [anon_sym_err_GT] = ACTIONS(2698), - [anon_sym_out_GT] = ACTIONS(2698), - [anon_sym_e_GT] = ACTIONS(2698), - [anon_sym_o_GT] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT] = ACTIONS(2698), - [anon_sym_err_GT_GT] = ACTIONS(2696), - [anon_sym_out_GT_GT] = ACTIONS(2696), - [anon_sym_e_GT_GT] = ACTIONS(2696), - [anon_sym_o_GT_GT] = ACTIONS(2696), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2883), + [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2891), + [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_SLASH2] = ACTIONS(2885), + [anon_sym_mod2] = ACTIONS(2893), + [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_PLUS2] = ACTIONS(2895), + [anon_sym_bit_DASHshl2] = ACTIONS(2840), + [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, + [0] = 17, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + ACTIONS(3012), 1, + anon_sym_bit_DASHand2, + ACTIONS(3014), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3016), 1, + anon_sym_bit_DASHor2, STATE(1289), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2994), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2998), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3010), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3000), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3002), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2702), 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(2992), 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(2700), 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, + [99] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1290), 1, + sym_comment, + ACTIONS(2461), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142963,7 +143277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2459), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143013,18 +143327,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73] = 6, + [172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1291), 1, + sym_comment, + ACTIONS(2465), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2463), 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, + [245] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(291), 1, + anon_sym_DASH2, + ACTIONS(1288), 1, + anon_sym_DOLLAR, + ACTIONS(2560), 1, + aux_sym_expr_unary_token1, + ACTIONS(2564), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2566), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2732), 1, + anon_sym_null, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + STATE(726), 1, + sym__val_number, + STATE(766), 1, + sym__inter_single_quotes, + STATE(767), 1, + sym__inter_double_quotes, + STATE(980), 1, + sym__expr_unary_minus, + STATE(1292), 1, + sym_comment, + STATE(1919), 1, + sym__val_number_decimal, + STATE(1975), 1, + sym_val_variable, + STATE(1982), 1, + sym_expr_parenthesized, + STATE(2260), 1, + sym__expr_binary_expression, + STATE(5327), 1, + sym__expression, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2552), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2568), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3020), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(979), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(191), 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(969), 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, + [384] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1293), 1, sym_comment, - ACTIONS(2229), 5, + ACTIONS(2706), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2348), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143033,8 +143517,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(2346), 20, + ACTIONS(2704), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143046,6 +143531,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, @@ -143054,8 +143567,39 @@ static const 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(2227), 29, + [457] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1294), 1, + sym_comment, + ACTIONS(1911), 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(1909), 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, @@ -143084,12 +143628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1291), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2628), 13, + ACTIONS(2407), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143103,7 +143655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2626), 49, + ACTIONS(2405), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143153,12 +143705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [223] = 4, + [603] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2666), 13, + ACTIONS(2433), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143172,7 +143724,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2664), 49, + ACTIONS(2431), 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, + [676] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3024), 1, + anon_sym_null, + ACTIONS(3028), 1, + sym__newline, + ACTIONS(3030), 1, + anon_sym_LBRACK, + ACTIONS(3032), 1, + anon_sym_LPAREN, + ACTIONS(3034), 1, + anon_sym_DOLLAR, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(3038), 1, + anon_sym_DOT_DOT, + ACTIONS(3042), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3044), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3050), 1, + anon_sym_0b, + ACTIONS(3054), 1, + sym_val_date, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3062), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3064), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3066), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3068), 1, + sym_raw_string_begin, + STATE(1297), 1, + sym_comment, + STATE(2273), 1, + aux_sym__repeat_newline, + STATE(2507), 1, + sym__val_number_decimal, + STATE(2941), 1, + sym_expr_parenthesized, + STATE(2976), 1, + sym_val_variable, + STATE(3099), 1, + sym_val_bool, + STATE(3103), 1, + sym__unquoted_in_record, + STATE(3177), 1, + sym__val_number, + STATE(3230), 1, + sym__inter_single_quotes, + STATE(3231), 1, + sym__inter_double_quotes, + ACTIONS(3022), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3040), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3046), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3052), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4778), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3026), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3048), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3490), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2599), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3176), 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, + [819] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1298), 1, + sym_comment, + ACTIONS(2437), 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(2435), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143222,98 +143947,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [296] = 39, + [892] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2976), 1, + ACTIONS(3024), 1, anon_sym_null, - ACTIONS(2980), 1, + ACTIONS(3028), 1, sym__newline, - ACTIONS(2982), 1, + ACTIONS(3030), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(3032), 1, anon_sym_LPAREN, - ACTIONS(2986), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(2988), 1, + ACTIONS(3036), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(3038), 1, anon_sym_DOT_DOT, - ACTIONS(2994), 1, + ACTIONS(3042), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2996), 1, + ACTIONS(3044), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3002), 1, + ACTIONS(3050), 1, anon_sym_0b, - ACTIONS(3006), 1, + ACTIONS(3054), 1, sym_val_date, - ACTIONS(3008), 1, + ACTIONS(3056), 1, anon_sym_DQUOTE, - ACTIONS(3010), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - ACTIONS(3012), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(3014), 1, + ACTIONS(3062), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3016), 1, + ACTIONS(3064), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3018), 1, + ACTIONS(3066), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3020), 1, + ACTIONS(3068), 1, sym_raw_string_begin, - STATE(1293), 1, + STATE(1299), 1, sym_comment, - STATE(1335), 1, + STATE(1351), 1, aux_sym__repeat_newline, - STATE(2475), 1, + STATE(2507), 1, sym__val_number_decimal, - STATE(2954), 1, + STATE(2941), 1, sym_expr_parenthesized, - STATE(2983), 1, + STATE(2976), 1, sym_val_variable, - STATE(3062), 1, + STATE(3099), 1, sym_val_bool, - STATE(3129), 1, + STATE(3103), 1, + sym__unquoted_in_record, + STATE(3177), 1, sym__val_number, - STATE(3214), 1, + STATE(3230), 1, sym__inter_single_quotes, - STATE(3215), 1, + STATE(3231), 1, sym__inter_double_quotes, - STATE(3234), 1, - sym__unquoted_in_record, - ACTIONS(2974), 2, + ACTIONS(3022), 2, anon_sym_true, anon_sym_false, - ACTIONS(2992), 2, + ACTIONS(3040), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2998), 2, + ACTIONS(3046), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3004), 2, + ACTIONS(3052), 2, anon_sym_0o, anon_sym_0x, - STATE(4910), 2, + STATE(4778), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2978), 3, + ACTIONS(3026), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3000), 3, + ACTIONS(3048), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3535), 3, + STATE(3490), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2607), 4, + STATE(2599), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3128), 12, + STATE(3176), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -143326,12 +144051,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [439] = 4, + [1035] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2110), 13, + ACTIONS(2441), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143345,7 +144070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2108), 49, + ACTIONS(2439), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143395,12 +144120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [512] = 4, + [1108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1301), 1, sym_comment, - ACTIONS(2092), 13, + ACTIONS(2445), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143414,7 +144139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2090), 49, + ACTIONS(2443), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143464,114 +144189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [585] = 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(1270), 1, - anon_sym_DOLLAR, - ACTIONS(2057), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2059), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2724), 1, - anon_sym_null, - STATE(730), 1, - sym_val_variable, - STATE(743), 1, - sym_expr_parenthesized, - STATE(744), 1, - sym__val_number, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(947), 1, - sym__expr_unary_minus, - STATE(1296), 1, - sym_comment, - STATE(1885), 1, - sym__val_number_decimal, - STATE(2259), 1, - sym__expr_binary_expression, - STATE(5015), 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(1931), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2061), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(946), 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(945), 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, - [724] = 4, + [1181] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2259), 13, + ACTIONS(2449), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143585,7 +144208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2257), 49, + ACTIONS(2447), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143635,36 +144258,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, - [797] = 13, + [1254] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, - anon_sym_DASH2, - ACTIONS(3036), 1, - anon_sym_PLUS2, - STATE(1298), 1, + STATE(1303), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2148), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3028), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2658), 8, + anon_sym_PLUS2, + ACTIONS(2267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143673,16 +144278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3022), 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(2656), 30, + ACTIONS(2265), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -143695,30 +144291,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(2146), 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [888] = 4, + [1331] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143732,7 +144348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2451), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143782,12 +144398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [961] = 4, + [1404] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1305), 1, sym_comment, - ACTIONS(2670), 13, + ACTIONS(2662), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143801,7 +144417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2668), 49, + ACTIONS(2660), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143851,12 +144467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1034] = 4, + [1477] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2662), 13, + ACTIONS(2383), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143870,7 +144486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2660), 49, + ACTIONS(2381), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143920,12 +144536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1107] = 4, + [1550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2396), 13, + ACTIONS(2678), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143939,7 +144555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2394), 49, + ACTIONS(2676), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143989,12 +144605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1180] = 4, + [1623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1308), 1, sym_comment, - ACTIONS(2416), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144008,7 +144624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2414), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144058,12 +144674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1253] = 4, + [1696] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1309), 1, sym_comment, - ACTIONS(2352), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144077,7 +144693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2350), 49, + ACTIONS(2423), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144127,12 +144743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1326] = 4, + [1769] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144146,7 +144762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2418), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144196,17 +144812,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, - [1399] = 4, + [1842] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + ACTIONS(3012), 1, + anon_sym_bit_DASHand2, + STATE(1311), 1, sym_comment, - ACTIONS(2586), 13, + ACTIONS(2994), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2998), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3010), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3000), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3002), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144215,9 +144857,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(2584), 49, - ts_builtin_sym_end, + ACTIONS(2992), 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(2700), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144229,32 +144879,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, @@ -144265,12 +144892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1472] = 4, + [1937] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1312), 1, sym_comment, - ACTIONS(2548), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144284,7 +144911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2546), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144334,17 +144961,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, - [1545] = 4, + [2010] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1308), 1, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + ACTIONS(3012), 1, + anon_sym_bit_DASHand2, + ACTIONS(3014), 1, + anon_sym_bit_DASHxor2, + STATE(1313), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2994), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2998), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3010), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3000), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3002), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144353,9 +145008,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(2100), 49, - ts_builtin_sym_end, + ACTIONS(2992), 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(2700), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144367,33 +145030,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, @@ -144403,27 +145042,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, - [1618] = 9, + [2107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, - anon_sym_DASH2, - ACTIONS(3036), 1, - anon_sym_PLUS2, - STATE(1309), 1, + STATE(1314), 1, sym_comment, - ACTIONS(3028), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2658), 10, + ACTIONS(2152), 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, @@ -144432,7 +145061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2656), 44, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144446,6 +145075,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, @@ -144464,6 +145094,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, @@ -144477,15 +145111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1701] = 5, + [2180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1315), 1, sym_comment, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2658), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144499,7 +145130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2656), 47, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144532,6 +145163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -144547,12 +145180,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1776] = 4, + [2253] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + ACTIONS(3074), 2, + sym__newline, + anon_sym_SEMI, + STATE(1316), 2, sym_comment, - ACTIONS(2460), 13, + aux_sym__block_body_repeat1, + ACTIONS(3070), 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(3072), 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_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, + anon_sym_PERCENT, + [2328] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1317), 1, + sym_comment, + ACTIONS(2598), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144566,7 +145269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2458), 49, + ACTIONS(2596), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144616,41 +145319,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1849] = 14, + [2401] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, + ACTIONS(2996), 1, anon_sym_DASH2, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_PLUS2, - STATE(1312), 1, + STATE(1318), 1, sym_comment, - ACTIONS(3024), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3028), 2, + ACTIONS(2998), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3032), 2, + ACTIONS(3004), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, + ACTIONS(3006), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, + ACTIONS(3010), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3040), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2658), 8, + ACTIONS(2702), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144659,17 +145351,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(3022), 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(2656), 26, + ACTIONS(2700), 42, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144684,6 +145368,21 @@ 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, @@ -144695,12 +145394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1942] = 4, + [2486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1319), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(2106), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144714,7 +145413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 49, + ACTIONS(2104), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144764,114 +145463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2015] = 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(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(1270), 1, - anon_sym_DOLLAR, - ACTIONS(2525), 1, - aux_sym_expr_unary_token1, - ACTIONS(2529), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2531), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2724), 1, - anon_sym_null, - ACTIONS(3042), 1, - anon_sym_DOT_DOT, - STATE(744), 1, - sym__val_number, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(947), 1, - sym__expr_unary_minus, - STATE(1314), 1, - sym_comment, - STATE(1944), 1, - sym__val_number_decimal, - STATE(2000), 1, - sym_val_variable, - STATE(2004), 1, - sym_expr_parenthesized, - STATE(2260), 1, - sym__expr_binary_expression, - STATE(5235), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2517), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2533), 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(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(946), 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(945), 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, - [2154] = 4, + [2559] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1315), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2412), 13, + ACTIONS(2168), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144885,7 +145482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2410), 49, + ACTIONS(2166), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144935,12 +145532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2227] = 4, + [2632] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1321), 1, sym_comment, - ACTIONS(2400), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144954,7 +145551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2398), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145004,12 +145601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2300] = 4, + [2705] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + STATE(1322), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2176), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145023,7 +145620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2174), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145073,12 +145670,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2373] = 4, + [2778] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1323), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(2698), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145092,7 +145689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2372), 49, + ACTIONS(2696), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145142,16 +145739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2446] = 4, + [2851] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1324), 1, sym_comment, - ACTIONS(2560), 13, - anon_sym_GT2, + ACTIONS(2998), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2702), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -145161,7 +145765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2558), 49, + ACTIONS(2700), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145194,10 +145798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -145211,12 +145811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2519] = 4, + [2930] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145230,7 +145830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2186), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145280,12 +145880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2592] = 4, + [3003] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145299,7 +145899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2462), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145349,170 +145949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2665] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3026), 1, - anon_sym_DASH2, - ACTIONS(3036), 1, - anon_sym_PLUS2, - STATE(1322), 1, - sym_comment, - ACTIONS(3028), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2658), 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(2656), 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, - [2750] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3026), 1, - anon_sym_DASH2, - ACTIONS(3036), 1, - anon_sym_PLUS2, - ACTIONS(3046), 1, - anon_sym_and2, - ACTIONS(3048), 1, - anon_sym_bit_DASHand2, - ACTIONS(3050), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3052), 1, - anon_sym_bit_DASHor2, - STATE(1323), 1, - sym_comment, - ACTIONS(3024), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3028), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3040), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2658), 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(3022), 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(2656), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2851] = 4, + [3076] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(1903), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145526,7 +145968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2466), 49, + ACTIONS(1901), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145576,12 +146018,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, - [2924] = 4, + [3149] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2702), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145595,7 +146040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2700), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145628,8 +146073,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, @@ -145645,12 +146088,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, - [2997] = 4, + [3224] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + ACTIONS(3024), 1, + anon_sym_null, + ACTIONS(3028), 1, + sym__newline, + ACTIONS(3030), 1, + anon_sym_LBRACK, + ACTIONS(3032), 1, + anon_sym_LPAREN, + ACTIONS(3034), 1, + anon_sym_DOLLAR, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(3038), 1, + anon_sym_DOT_DOT, + ACTIONS(3042), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3044), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3050), 1, + anon_sym_0b, + ACTIONS(3054), 1, + sym_val_date, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3062), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3064), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3066), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3068), 1, + sym_raw_string_begin, + STATE(1297), 1, + aux_sym__repeat_newline, + STATE(1329), 1, + sym_comment, + STATE(2507), 1, + sym__val_number_decimal, + STATE(2976), 1, + sym_val_variable, + STATE(2987), 1, + sym_expr_parenthesized, + STATE(3099), 1, + sym_val_bool, + STATE(3177), 1, + sym__val_number, + STATE(3227), 1, + sym__unquoted_in_record, + STATE(3230), 1, + sym__inter_single_quotes, + STATE(3231), 1, + sym__inter_double_quotes, + ACTIONS(3022), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3040), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3046), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3052), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4778), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3026), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3048), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3450), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2599), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3176), 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, + [3367] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1330), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2116), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145664,7 +146211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2114), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145714,12 +146261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3070] = 4, + [3440] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145733,7 +146280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145783,12 +146330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3143] = 4, + [3513] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1328), 1, + STATE(1332), 1, sym_comment, - ACTIONS(2452), 13, + ACTIONS(2594), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145802,7 +146349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2450), 49, + ACTIONS(2592), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145852,43 +146399,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, - [3216] = 15, + [3586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, - anon_sym_DASH2, - ACTIONS(3036), 1, - anon_sym_PLUS2, - ACTIONS(3048), 1, - anon_sym_bit_DASHand2, - STATE(1329), 1, + STATE(1333), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2415), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3028), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3040), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2658), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145897,17 +146418,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(3022), 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(2656), 25, + ACTIONS(2413), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -145919,9 +146432,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, @@ -145932,12 +146468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3311] = 4, + [3659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1330), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2476), 13, + ACTIONS(2670), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145951,7 +146487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2474), 49, + ACTIONS(2668), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146001,12 +146537,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, - [3384] = 4, + [3732] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1331), 1, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(171), 1, + anon_sym_DOT_DOT, + ACTIONS(175), 1, + aux_sym_expr_unary_token1, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(291), 1, + anon_sym_DASH2, + ACTIONS(1288), 1, + anon_sym_DOLLAR, + ACTIONS(1981), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1983), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2732), 1, + anon_sym_null, + STATE(722), 1, + sym_expr_parenthesized, + STATE(726), 1, + sym__val_number, + STATE(730), 1, + sym_val_variable, + STATE(766), 1, + sym__inter_single_quotes, + STATE(767), 1, + sym__inter_double_quotes, + STATE(980), 1, + sym__expr_unary_minus, + STATE(1335), 1, + sym_comment, + STATE(1878), 1, + sym__val_number_decimal, + STATE(2261), 1, + sym__expr_binary_expression, + STATE(4932), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1949), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1985), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(979), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(191), 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(969), 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, + [3871] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1336), 1, sym_comment, - ACTIONS(2356), 13, + ACTIONS(2582), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146020,7 +146658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2354), 49, + ACTIONS(2580), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146070,12 +146708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3457] = 4, + [3944] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1332), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2243), 13, + ACTIONS(2411), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146089,7 +146727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2241), 49, + ACTIONS(2409), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146139,12 +146777,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3530] = 4, + [4017] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + ACTIONS(3077), 1, + sym__newline, + STATE(1338), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2102), 13, + ACTIONS(1893), 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(1888), 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, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [4092] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1339), 1, + sym_comment, + ACTIONS(811), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146158,7 +146866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(914), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146208,12 +146916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3603] = 4, + [4165] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2552), 13, + ACTIONS(2658), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146227,7 +146935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2550), 49, + ACTIONS(2656), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146277,116 +146985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3676] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2976), 1, - anon_sym_null, - ACTIONS(2980), 1, - sym__newline, - ACTIONS(2982), 1, - anon_sym_LBRACK, - ACTIONS(2984), 1, - anon_sym_LPAREN, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(2988), 1, - anon_sym_LBRACE, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2994), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3002), 1, - anon_sym_0b, - ACTIONS(3006), 1, - sym_val_date, - ACTIONS(3008), 1, - anon_sym_DQUOTE, - ACTIONS(3010), 1, - anon_sym_SQUOTE, - ACTIONS(3012), 1, - anon_sym_BQUOTE, - ACTIONS(3014), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3018), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3020), 1, - sym_raw_string_begin, - STATE(1335), 1, - sym_comment, - STATE(2269), 1, - aux_sym__repeat_newline, - STATE(2475), 1, - sym__val_number_decimal, - STATE(2971), 1, - sym_expr_parenthesized, - STATE(2983), 1, - sym_val_variable, - STATE(3052), 1, - sym__unquoted_in_record, - STATE(3062), 1, - sym_val_bool, - STATE(3129), 1, - sym__val_number, - STATE(3214), 1, - sym__inter_single_quotes, - STATE(3215), 1, - sym__inter_double_quotes, - ACTIONS(2974), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2992), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2998), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4910), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2978), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3000), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3426), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2607), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3128), 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, - [3819] = 4, + [4238] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1341), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2666), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146400,7 +147004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 49, + ACTIONS(2664), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146450,12 +147054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3892] = 4, + [4311] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1342), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146469,7 +147073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146519,12 +147123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3965] = 4, + [4384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1338), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2592), 13, + ACTIONS(2387), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146538,7 +147142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2590), 49, + ACTIONS(2385), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146588,45 +147192,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, - [4038] = 16, + [4457] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, + ACTIONS(2996), 1, anon_sym_DASH2, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_PLUS2, - ACTIONS(3048), 1, + ACTIONS(3012), 1, anon_sym_bit_DASHand2, - ACTIONS(3050), 1, + ACTIONS(3014), 1, anon_sym_bit_DASHxor2, - STATE(1339), 1, + ACTIONS(3016), 1, + anon_sym_bit_DASHor2, + ACTIONS(3080), 1, + anon_sym_and2, + STATE(1344), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2994), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3028), 2, + ACTIONS(2998), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3032), 2, + ACTIONS(3004), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, + ACTIONS(3006), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, + ACTIONS(3010), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, + ACTIONS(3000), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3040), 4, + ACTIONS(3002), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2658), 8, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146635,7 +147243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3022), 8, + ACTIONS(2992), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -146644,7 +147252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 24, + ACTIONS(2700), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -146657,10 +147265,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -146669,12 +147275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4135] = 4, + [4558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1345), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2279), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146688,7 +147294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2277), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146738,116 +147344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4208] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2976), 1, - anon_sym_null, - ACTIONS(2980), 1, - sym__newline, - ACTIONS(2982), 1, - anon_sym_LBRACK, - ACTIONS(2984), 1, - anon_sym_LPAREN, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(2988), 1, - anon_sym_LBRACE, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2994), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3002), 1, - anon_sym_0b, - ACTIONS(3006), 1, - sym_val_date, - ACTIONS(3008), 1, - anon_sym_DQUOTE, - ACTIONS(3010), 1, - anon_sym_SQUOTE, - ACTIONS(3012), 1, - anon_sym_BQUOTE, - ACTIONS(3014), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3018), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3020), 1, - sym_raw_string_begin, - STATE(1341), 1, - sym_comment, - STATE(2269), 1, - aux_sym__repeat_newline, - STATE(2475), 1, - sym__val_number_decimal, - STATE(2953), 1, - sym_expr_parenthesized, - STATE(2983), 1, - sym_val_variable, - STATE(3062), 1, - sym_val_bool, - STATE(3122), 1, - sym__unquoted_in_record, - STATE(3129), 1, - sym__val_number, - STATE(3214), 1, - sym__inter_single_quotes, - STATE(3215), 1, - sym__inter_double_quotes, - ACTIONS(2974), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2992), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2998), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4910), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2978), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3000), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3419), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2607), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3128), 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, - [4351] = 4, + [4631] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1346), 1, sym_comment, - ACTIONS(2632), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146861,7 +147363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2630), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146911,86 +147413,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, - [4424] = 4, + [4704] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + ACTIONS(3012), 1, + anon_sym_bit_DASHand2, + ACTIONS(3014), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3016), 1, + anon_sym_bit_DASHor2, + ACTIONS(3080), 1, + anon_sym_and2, + ACTIONS(3082), 1, + anon_sym_xor2, + STATE(1347), 1, sym_comment, - ACTIONS(785), 13, + ACTIONS(2994), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2998), 2, + anon_sym_STAR2, 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(884), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3010), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3000), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3002), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4497] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1344), 1, - sym_comment, - ACTIONS(1955), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146999,9 +147466,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(1953), 49, - ts_builtin_sym_end, + ACTIONS(2992), 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(2700), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -147013,34 +147488,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, @@ -147049,12 +147497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4570] = 4, + [4807] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1348), 1, sym_comment, - ACTIONS(2380), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147068,7 +147516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2378), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147118,17 +147566,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4643] = 4, + [4880] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1346), 1, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + STATE(1349), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2994), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2998), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3010), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3000), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147137,9 +147604,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(2100), 49, - ts_builtin_sym_end, + ACTIONS(2992), 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(2700), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -147151,31 +147626,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_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, @@ -147187,12 +147644,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4716] = 4, + [4971] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1347), 1, + STATE(1316), 1, + aux_sym__block_body_repeat1, + STATE(1350), 1, + sym_comment, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3088), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + 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), 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_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, + anon_sym_PERCENT, + [5050] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3024), 1, + anon_sym_null, + ACTIONS(3028), 1, + sym__newline, + ACTIONS(3030), 1, + anon_sym_LBRACK, + ACTIONS(3032), 1, + anon_sym_LPAREN, + ACTIONS(3034), 1, + anon_sym_DOLLAR, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(3038), 1, + anon_sym_DOT_DOT, + ACTIONS(3042), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3044), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3050), 1, + anon_sym_0b, + ACTIONS(3054), 1, + sym_val_date, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(3060), 1, + anon_sym_BQUOTE, + ACTIONS(3062), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3064), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3066), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3068), 1, + sym_raw_string_begin, + STATE(1351), 1, + sym_comment, + STATE(2273), 1, + aux_sym__repeat_newline, + STATE(2507), 1, + sym__val_number_decimal, + STATE(2970), 1, + sym_expr_parenthesized, + STATE(2976), 1, + sym_val_variable, + STATE(3099), 1, + sym_val_bool, + STATE(3121), 1, + sym__unquoted_in_record, + STATE(3177), 1, + sym__val_number, + STATE(3230), 1, + sym__inter_single_quotes, + STATE(3231), 1, + sym__inter_double_quotes, + ACTIONS(3022), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3040), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3046), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3052), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4778), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3026), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3048), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3463), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2599), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3176), 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, + [5193] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1352), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147206,7 +147839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147256,12 +147889,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, - [4789] = 4, + [5266] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1348), 1, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(171), 1, + anon_sym_DOT_DOT, + ACTIONS(175), 1, + aux_sym_expr_unary_token1, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(291), 1, + anon_sym_DASH2, + ACTIONS(1288), 1, + anon_sym_DOLLAR, + ACTIONS(1981), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1983), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2732), 1, + anon_sym_null, + STATE(722), 1, + sym_expr_parenthesized, + STATE(726), 1, + sym__val_number, + STATE(730), 1, + sym_val_variable, + STATE(766), 1, + sym__inter_single_quotes, + STATE(767), 1, + sym__inter_double_quotes, + STATE(980), 1, + sym__expr_unary_minus, + STATE(1353), 1, + sym_comment, + STATE(1878), 1, + sym__val_number_decimal, + STATE(2261), 1, + sym__expr_binary_expression, + STATE(5085), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1949), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1985), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(979), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(191), 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(969), 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, + [5405] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1354), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2469), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147275,7 +148010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2467), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147325,12 +148060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4862] = 4, + [5478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1349), 1, + STATE(1355), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(2473), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147344,7 +148079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2454), 49, + ACTIONS(2471), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147394,12 +148129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4935] = 4, + [5551] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + STATE(1356), 1, sym_comment, - ACTIONS(2251), 13, + ACTIONS(2702), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147413,7 +148148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2249), 49, + ACTIONS(2700), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147463,23 +148198,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, - [5008] = 7, + [5624] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1351), 1, + STATE(1357), 1, sym_comment, - ACTIONS(3028), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2658), 11, + ACTIONS(2152), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -147489,7 +148217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2656), 45, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147522,6 +148250,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, @@ -147535,12 +148267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5087] = 4, + [5697] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1352), 1, + STATE(1358), 1, sym_comment, - ACTIONS(2658), 13, + ACTIONS(2716), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147554,7 +148286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2656), 49, + ACTIONS(2714), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147604,116 +148336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5160] = 39, + [5770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2976), 1, - anon_sym_null, - ACTIONS(2980), 1, - sym__newline, - ACTIONS(2982), 1, - anon_sym_LBRACK, - ACTIONS(2984), 1, - anon_sym_LPAREN, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(2988), 1, - anon_sym_LBRACE, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2994), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3002), 1, - anon_sym_0b, - ACTIONS(3006), 1, - sym_val_date, - ACTIONS(3008), 1, - anon_sym_DQUOTE, - ACTIONS(3010), 1, - anon_sym_SQUOTE, - ACTIONS(3012), 1, - anon_sym_BQUOTE, - ACTIONS(3014), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3018), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3020), 1, - sym_raw_string_begin, - STATE(1341), 1, - aux_sym__repeat_newline, - STATE(1353), 1, - sym_comment, - STATE(2475), 1, - sym__val_number_decimal, - STATE(2971), 1, - sym_expr_parenthesized, - STATE(2983), 1, - sym_val_variable, - STATE(3052), 1, - sym__unquoted_in_record, - STATE(3062), 1, - sym_val_bool, - STATE(3129), 1, - sym__val_number, - STATE(3214), 1, - sym__inter_single_quotes, - STATE(3215), 1, - sym__inter_double_quotes, - ACTIONS(2974), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2992), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2998), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4910), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2978), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3000), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3426), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2607), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3128), 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, - [5303] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1354), 1, + STATE(1359), 1, sym_comment, - ACTIONS(2576), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147727,7 +148355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2574), 49, + ACTIONS(2455), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147777,17 +148405,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5376] = 4, + [5843] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1355), 1, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + STATE(1360), 1, sym_comment, - ACTIONS(1887), 13, - anon_sym_GT2, + ACTIONS(2998), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3004), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3006), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2702), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147796,7 +148434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 49, + ACTIONS(2700), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147810,7 +148448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -147829,10 +148466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -147846,12 +148479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5449] = 4, + [5926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, + STATE(1361), 1, sym_comment, - ACTIONS(2636), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147865,7 +148498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2634), 49, + ACTIONS(2455), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147915,12 +148548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5522] = 4, + [5999] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, + STATE(1362), 1, sym_comment, - ACTIONS(2229), 13, + ACTIONS(2148), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147934,7 +148567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2227), 49, + ACTIONS(2146), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147984,51 +148617,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5595] = 19, + [6072] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, + STATE(1316), 1, + aux_sym__block_body_repeat1, + STATE(1363), 1, + sym_comment, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3090), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3084), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(3036), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3086), 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_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, + anon_sym_PERCENT, + [6151] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, anon_sym_PLUS2, - ACTIONS(3046), 1, - anon_sym_and2, - ACTIONS(3048), 1, - anon_sym_bit_DASHand2, - ACTIONS(3050), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3052), 1, - anon_sym_bit_DASHor2, - ACTIONS(3054), 1, - anon_sym_xor2, - STATE(1358), 1, + STATE(1364), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2994), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3028), 2, + ACTIONS(2998), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3032), 2, + ACTIONS(3004), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, + ACTIONS(3006), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, + ACTIONS(3010), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, + ACTIONS(3000), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3040), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2658), 8, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -148037,17 +148727,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(3022), 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(2656), 21, + ACTIONS(2700), 38, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -148059,7 +148741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_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, @@ -148068,47 +148766,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, - [5698] = 17, + [6240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, - anon_sym_DASH2, - ACTIONS(3036), 1, - anon_sym_PLUS2, - ACTIONS(3048), 1, - anon_sym_bit_DASHand2, - ACTIONS(3050), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3052), 1, - anon_sym_bit_DASHor2, - STATE(1359), 1, + STATE(1365), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2403), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3028), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3032), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3040), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2658), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -148117,17 +148785,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(3022), 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(2656), 23, + ACTIONS(2401), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -148139,9 +148799,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, @@ -148150,114 +148835,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, - [5797] = 37, + [6313] = 7, 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(1270), 1, + STATE(1316), 1, + aux_sym__block_body_repeat1, + STATE(1366), 1, + sym_comment, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3092), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3084), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2057), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(2059), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2724), 1, - anon_sym_null, - STATE(730), 1, - sym_val_variable, - STATE(743), 1, - sym_expr_parenthesized, - STATE(744), 1, - sym__val_number, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(947), 1, - sym__expr_unary_minus, - STATE(1360), 1, - sym_comment, - STATE(1885), 1, - sym__val_number_decimal, - STATE(2259), 1, - sym__expr_binary_expression, - STATE(4957), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1931), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2061), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(946), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, + ACTIONS(3086), 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_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, - STATE(945), 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, - [5936] = 4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [6392] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1361), 1, + STATE(1367), 1, sym_comment, - ACTIONS(1588), 13, + ACTIONS(2152), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148271,7 +148926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1714), 49, + ACTIONS(2150), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148321,36 +148976,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6009] = 12, + [6465] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, + ACTIONS(2996), 1, anon_sym_DASH2, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_PLUS2, - STATE(1362), 1, + STATE(1368), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2994), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3028), 2, + ACTIONS(2998), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3032), 2, + ACTIONS(3004), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, + ACTIONS(3006), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, + ACTIONS(3010), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, + ACTIONS(3000), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2658), 8, + ACTIONS(3002), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2702), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -148359,23 +149019,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(2656), 38, - ts_builtin_sym_end, + ACTIONS(2992), 8, 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, @@ -148383,43 +149028,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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6098] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1363), 1, - sym_comment, - ACTIONS(2408), 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(2406), 49, + ACTIONS(2700), 26, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -148431,31 +149041,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, @@ -148467,12 +149055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6171] = 4, + [6558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1364), 1, + STATE(1369), 1, sym_comment, - ACTIONS(1895), 13, + ACTIONS(1616), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148486,7 +149074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 49, + ACTIONS(1738), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148536,12 +149124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6244] = 4, + [6631] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1365), 1, + STATE(1370), 1, sym_comment, - ACTIONS(2480), 13, + ACTIONS(2712), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148555,7 +149143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2478), 49, + ACTIONS(2710), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148605,91 +149193,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, - [6317] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1366), 1, - sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3060), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3056), 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(3058), 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] = 7, + [6704] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1367), 1, + ACTIONS(3088), 1, + ts_builtin_sym_end, + STATE(1371), 1, sym_comment, - STATE(1370), 1, + STATE(1382), 1, aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3062), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3056), 10, + ACTIONS(3084), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148700,7 +149216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3058), 46, + ACTIONS(3086), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148747,20 +149263,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6473] = 7, + anon_sym_PERCENT, + [6782] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1368), 1, + ACTIONS(3092), 1, + ts_builtin_sym_end, + STATE(1372), 1, sym_comment, - STATE(1370), 1, + STATE(1382), 1, aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3064), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3056), 10, + ACTIONS(3084), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148771,7 +149287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3058), 46, + ACTIONS(3086), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148818,104 +149334,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6551] = 42, + anon_sym_PERCENT, + [6860] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(1951), 1, + ACTIONS(1969), 1, aux_sym_unquoted_token1, - ACTIONS(2766), 1, + ACTIONS(2810), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2937), 1, anon_sym_null, - ACTIONS(2894), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(2896), 1, + ACTIONS(2943), 1, anon_sym_LBRACK, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(2900), 1, + ACTIONS(2947), 1, anon_sym_LBRACE, - ACTIONS(2904), 1, + ACTIONS(2951), 1, anon_sym__, - ACTIONS(2906), 1, + ACTIONS(2953), 1, anon_sym_DOT_DOT, - ACTIONS(2910), 1, + ACTIONS(2957), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2912), 1, + ACTIONS(2959), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2916), 1, + ACTIONS(2963), 1, sym_val_date, - STATE(744), 1, + STATE(726), 1, sym__val_number, - STATE(1369), 1, + STATE(1373), 1, sym_comment, - STATE(1400), 1, + STATE(1405), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2279), 1, + STATE(2283), 1, aux_sym__types_body_repeat1, - STATE(3707), 1, + STATE(3674), 1, sym__val_number_decimal, - STATE(3880), 1, + STATE(3961), 1, sym_expr_parenthesized, - STATE(3881), 1, + STATE(3966), 1, sym_val_variable, - STATE(4120), 1, + STATE(4099), 1, sym__match_pattern, - STATE(4344), 1, + STATE(4358), 1, sym_val_bool, - STATE(4468), 1, + STATE(4655), 1, sym__match_pattern_expression, - STATE(4480), 1, + STATE(4659), 1, sym__match_pattern_list, - STATE(4507), 1, + STATE(4665), 1, sym_unquoted, - STATE(5108), 1, + STATE(5399), 1, sym_match_pattern, - ACTIONS(193), 2, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2888), 2, + ACTIONS(2935), 2, anon_sym_true, anon_sym_false, - ACTIONS(2908), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2914), 2, + ACTIONS(2961), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, + STATE(4656), 2, sym__match_pattern_value, sym_val_range, - STATE(4891), 2, + STATE(4737), 2, sym_match_arm, sym_default_arm, - STATE(5398), 2, + STATE(5303), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2892), 3, + ACTIONS(2939), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4490), 8, + STATE(4663), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -148924,16 +149441,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [6699] = 5, + [7008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 2, - sym__newline, - anon_sym_SEMI, - STATE(1370), 2, + STATE(1374), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3066), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148944,7 +149457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3068), 48, + ACTIONS(3096), 51, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148970,6 +149483,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, @@ -148993,117 +149508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6773] = 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(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(1951), 1, - aux_sym_unquoted_token1, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(2764), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2768), 1, - anon_sym_DOLLAR, - ACTIONS(2770), 1, - anon_sym_LBRACE, - ACTIONS(3075), 1, - anon_sym_null, - ACTIONS(3079), 1, - anon_sym_DOT_DOT, - ACTIONS(3087), 1, - sym_val_date, - STATE(744), 1, - sym__val_number, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(1371), 1, - sym_comment, - STATE(3895), 1, - sym__val_number_decimal, - STATE(4543), 1, - sym_expr_parenthesized, - STATE(4622), 1, - sym_val_variable, - STATE(5059), 1, - sym_val_bool, - STATE(5227), 1, - sym_unquoted, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3073), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3081), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3083), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3085), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5226), 2, - sym_val_range, - sym__value, - STATE(5398), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2648), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3077), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(945), 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, - [6913] = 5, + anon_sym_PERCENT, + [7080] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(2642), 1, sym__newline, - STATE(1372), 2, - aux_sym__repeat_newline, + ACTIONS(3102), 1, + anon_sym_SEMI, + STATE(1375), 1, sym_comment, - ACTIONS(1883), 10, + STATE(1377), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1392), 1, + aux_sym__repeat_newline, + ACTIONS(3098), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149114,7 +149533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1878), 49, + ACTIONS(3100), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149140,13 +149559,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -149164,19 +149580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6987] = 7, - ACTIONS(3), 1, + anon_sym_PERCENT, + [7160] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3060), 1, - ts_builtin_sym_end, - STATE(1373), 1, - sym_comment, - STATE(1382), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(2126), 1, + anon_sym_POUND_BANG, + ACTIONS(2620), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3056), 10, + STATE(1376), 1, + sym_comment, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149187,8 +149601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3058), 46, + ACTIONS(3096), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149213,240 +149628,42 @@ 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, - [7064] = 37, - ACTIONS(3), 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, - sym_raw_string_begin, - ACTIONS(1498), 1, - anon_sym_LBRACE, - ACTIONS(1616), 1, - anon_sym_LBRACK, - ACTIONS(3094), 1, - anon_sym_null, - ACTIONS(3098), 1, - anon_sym_DOT_DOT, - ACTIONS(3102), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3104), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3108), 1, - sym_val_date, - ACTIONS(3110), 1, - aux_sym__unquoted_in_record_token1, - STATE(1374), 1, - sym_comment, - STATE(3699), 1, - sym__val_number_decimal, - STATE(4025), 1, - sym_val_variable, - STATE(4210), 1, - sym_expr_parenthesized, - STATE(4442), 1, - sym_val_bool, - STATE(4444), 1, - sym__val_number, - STATE(4463), 1, - sym__unquoted_in_record, - STATE(4830), 1, - sym__inter_single_quotes, - STATE(4844), 1, - sym__inter_double_quotes, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3092), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3100), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3106), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4764), 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(3096), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(5029), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4772), 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, - [7201] = 37, - 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(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(1951), 1, - aux_sym_unquoted_token1, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2764), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2768), 1, - anon_sym_DOLLAR, - ACTIONS(2770), 1, - anon_sym_LBRACE, - ACTIONS(3075), 1, - anon_sym_null, - ACTIONS(3079), 1, - anon_sym_DOT_DOT, - ACTIONS(3087), 1, - sym_val_date, - STATE(744), 1, - sym__val_number, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(1375), 1, - sym_comment, - STATE(3895), 1, - sym__val_number_decimal, - STATE(4543), 1, - sym_expr_parenthesized, - STATE(4622), 1, - sym_val_variable, - STATE(5059), 1, - sym_val_bool, - STATE(5227), 1, - sym_unquoted, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3073), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3081), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3083), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3085), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5226), 2, - sym_val_range, - sym__value, - STATE(5398), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2648), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3077), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(945), 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, - [7338] = 7, + 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, + anon_sym_PERCENT, + [7236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3116), 1, + ACTIONS(3108), 1, sym__newline, - ACTIONS(3119), 1, + ACTIONS(3111), 1, anon_sym_SEMI, - STATE(4838), 1, + STATE(4679), 1, aux_sym__repeat_newline, - STATE(1376), 2, + STATE(1377), 2, sym_comment, aux_sym__parenthesized_body_repeat1, - ACTIONS(3112), 10, + ACTIONS(3104), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149457,7 +149674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3114), 46, + ACTIONS(3106), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149504,14 +149721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7415] = 5, + anon_sym_PERCENT, + [7314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_PIPE, - STATE(1377), 1, + STATE(1378), 1, sym_comment, - ACTIONS(2751), 10, + ACTIONS(2128), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149522,7 +149738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2748), 49, + ACTIONS(2126), 51, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149550,6 +149766,7 @@ 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, @@ -149572,20 +149789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7488] = 8, + anon_sym_PERCENT, + [7386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2650), 1, - sym__newline, - ACTIONS(3126), 1, - anon_sym_SEMI, - STATE(1376), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1378), 1, + ACTIONS(2126), 1, + anon_sym_PIPE, + STATE(1379), 1, sym_comment, - STATE(1396), 1, - aux_sym__repeat_newline, - ACTIONS(3122), 10, + ACTIONS(2623), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149596,7 +149808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3124), 46, + ACTIONS(2620), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149622,10 +149834,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, @@ -149643,94 +149858,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7567] = 37, - ACTIONS(3), 1, + anon_sym_PERCENT, + [7460] = 38, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1422), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(1498), 1, - anon_sym_LBRACE, - ACTIONS(1616), 1, + ACTIONS(1969), 1, + aux_sym_unquoted_token1, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(3094), 1, + ACTIONS(2810), 1, + anon_sym_LPAREN, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3116), 1, anon_sym_null, - ACTIONS(3098), 1, + ACTIONS(3120), 1, anon_sym_DOT_DOT, - ACTIONS(3102), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3104), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3108), 1, + ACTIONS(3128), 1, sym_val_date, - ACTIONS(3110), 1, - aux_sym__unquoted_in_record_token1, - STATE(1379), 1, + STATE(726), 1, + sym__val_number, + STATE(766), 1, + sym__inter_single_quotes, + STATE(767), 1, + sym__inter_double_quotes, + STATE(1380), 1, sym_comment, - STATE(3699), 1, + STATE(3927), 1, sym__val_number_decimal, - STATE(4025), 1, - sym_val_variable, - STATE(4214), 1, + STATE(4586), 1, sym_expr_parenthesized, - STATE(4442), 1, + STATE(4626), 1, + sym_val_variable, + STATE(4933), 1, sym_val_bool, - STATE(4444), 1, - sym__val_number, - STATE(4484), 1, - sym__unquoted_in_record, - STATE(4830), 1, - sym__inter_single_quotes, - STATE(4844), 1, - sym__inter_double_quotes, - ACTIONS(1418), 2, + STATE(5231), 1, + sym_unquoted, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3092), 2, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - ACTIONS(3100), 2, + ACTIONS(3122), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3106), 2, + ACTIONS(3124), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3126), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4764), 2, + STATE(5230), 2, + sym_val_range, + sym__value, + STATE(5303), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1414), 3, + ACTIONS(2640), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3096), 3, + ACTIONS(3118), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4946), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3780), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4772), 12, + STATE(969), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -149743,19 +149961,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7704] = 7, + [7600] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3062), 1, + ACTIONS(3090), 1, ts_builtin_sym_end, - STATE(1380), 1, + STATE(1381), 1, sym_comment, STATE(1382), 1, aux_sym__block_body_repeat1, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3056), 10, + ACTIONS(3084), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149766,7 +149984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3058), 46, + ACTIONS(3086), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149813,94 +150031,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7781] = 37, - ACTIONS(103), 1, + anon_sym_PERCENT, + [7678] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3130), 2, + sym__newline, + anon_sym_SEMI, + STATE(1382), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3070), 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(203), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3072), 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_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, - ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1758), 1, + anon_sym_CARET, + anon_sym_PERCENT, + [7752] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1418), 1, + anon_sym_DOLLAR, + ACTIONS(1434), 1, + anon_sym_0b, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1446), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1448), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(1951), 1, - aux_sym_unquoted_token1, - ACTIONS(2764), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2768), 1, - anon_sym_DOLLAR, - ACTIONS(2770), 1, + ACTIONS(1511), 1, anon_sym_LBRACE, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3075), 1, + ACTIONS(1606), 1, + anon_sym_LBRACK, + ACTIONS(3135), 1, anon_sym_null, - ACTIONS(3079), 1, + ACTIONS(3139), 1, anon_sym_DOT_DOT, - ACTIONS(3087), 1, + ACTIONS(3143), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3145), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3149), 1, sym_val_date, - STATE(744), 1, - sym__val_number, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(1381), 1, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + STATE(1383), 1, sym_comment, - STATE(3895), 1, + STATE(3746), 1, sym__val_number_decimal, - STATE(4571), 1, - sym_expr_parenthesized, - STATE(4622), 1, + STATE(4196), 1, sym_val_variable, - STATE(5059), 1, + STATE(4271), 1, + sym_expr_parenthesized, + STATE(4440), 1, + sym__unquoted_in_record, + STATE(4498), 1, sym_val_bool, - STATE(5325), 1, - sym_unquoted, - ACTIONS(193), 2, + STATE(4612), 1, + sym__val_number, + STATE(4926), 1, + sym__inter_single_quotes, + STATE(4927), 1, + sym__inter_double_quotes, + ACTIONS(1436), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3073), 2, + ACTIONS(3133), 2, anon_sym_true, anon_sym_false, - ACTIONS(3081), 2, + ACTIONS(3141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3083), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3085), 2, + ACTIONS(3147), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5122), 2, - sym_val_range, - sym__value, - STATE(5398), 2, + STATE(4812), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2648), 3, + ACTIONS(1432), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3077), 3, + ACTIONS(3137), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2288), 4, + STATE(5016), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(945), 12, + STATE(4854), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -149913,16 +150201,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7918] = 5, + [7889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3128), 2, - sym__newline, - anon_sym_SEMI, - STATE(1382), 2, + STATE(1384), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3066), 10, + ACTIONS(3153), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149933,9 +150217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3068), 47, + ACTIONS(3155), 50, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149960,10 +150243,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, @@ -149981,16 +150267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7991] = 6, - ACTIONS(103), 1, + anon_sym_PERCENT, + [7960] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_POUND_BANG, - ACTIONS(2748), 1, - sym__newline, - STATE(1383), 1, + STATE(1385), 1, sym_comment, - ACTIONS(3133), 10, + ACTIONS(3157), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150001,9 +150284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3131), 48, + ACTIONS(3159), 50, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150028,11 +150310,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, @@ -150050,12 +150334,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8066] = 4, + anon_sym_PERCENT, + [8031] = 37, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(1969), 1, + aux_sym_unquoted_token1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2808), 1, + anon_sym_LBRACK, + ACTIONS(2810), 1, + anon_sym_LPAREN, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, + anon_sym_LBRACE, + ACTIONS(3116), 1, + anon_sym_null, + ACTIONS(3120), 1, + anon_sym_DOT_DOT, + ACTIONS(3128), 1, + sym_val_date, + STATE(726), 1, + sym__val_number, + STATE(766), 1, + sym__inter_single_quotes, + STATE(767), 1, + sym__inter_double_quotes, + STATE(1386), 1, + sym_comment, + STATE(3927), 1, + sym__val_number_decimal, + STATE(4586), 1, + sym_expr_parenthesized, + STATE(4626), 1, + sym_val_variable, + STATE(4933), 1, + sym_val_bool, + STATE(5231), 1, + sym_unquoted, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3122), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3124), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3126), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5230), 2, + sym_val_range, + sym__value, + STATE(5303), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2640), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3118), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(969), 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, + [8168] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + STATE(1387), 1, sym_comment, - ACTIONS(1967), 10, + ACTIONS(3163), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150066,8 +150451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1965), 50, + ACTIONS(3161), 50, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150094,12 +150480,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, @@ -150117,12 +150501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8137] = 4, + anon_sym_PERCENT, + [8239] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, + STATE(1316), 1, + aux_sym__block_body_repeat1, + STATE(1388), 1, sym_comment, - ACTIONS(3133), 10, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3084), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150133,7 +150523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3131), 50, + ACTIONS(3086), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150159,14 +150549,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -150184,119 +150570,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8208] = 37, + anon_sym_PERCENT, + [8314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + STATE(1389), 1, + sym_comment, + ACTIONS(3094), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, 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, - sym_raw_string_begin, - ACTIONS(1498), 1, - anon_sym_LBRACE, - ACTIONS(1616), 1, - anon_sym_LBRACK, - ACTIONS(3094), 1, - anon_sym_null, - ACTIONS(3098), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3102), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3104), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3108), 1, - sym_val_date, - ACTIONS(3110), 1, - aux_sym__unquoted_in_record_token1, - STATE(1386), 1, - sym_comment, - STATE(3699), 1, - sym__val_number_decimal, - STATE(4025), 1, - sym_val_variable, - STATE(4336), 1, - sym_expr_parenthesized, - STATE(4442), 1, - sym_val_bool, - STATE(4444), 1, - sym__val_number, - STATE(4449), 1, - sym__unquoted_in_record, - STATE(4830), 1, - sym__inter_single_quotes, - STATE(4844), 1, - sym__inter_double_quotes, - ACTIONS(1418), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3092), 2, + ACTIONS(3096), 50, + 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(3100), 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_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3106), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4764), 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(3096), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(5006), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4772), 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, - [8345] = 7, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [8385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3064), 1, - ts_builtin_sym_end, - STATE(1382), 1, - aux_sym__block_body_repeat1, - STATE(1387), 1, + ACTIONS(3096), 1, + anon_sym_RPAREN, + STATE(1390), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(3169), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3056), 10, + ACTIONS(3165), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150307,7 +150659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3058), 46, + ACTIONS(3167), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150354,93 +150706,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8422] = 36, - ACTIONS(3), 1, + anon_sym_PERCENT, + [8460] = 37, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(815), 1, - anon_sym_DOLLAR, - ACTIONS(837), 1, + ACTIONS(193), 1, anon_sym_0b, - ACTIONS(857), 1, - aux_sym_unquoted_token1, - ACTIONS(859), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(1256), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3137), 1, - anon_sym_null, - ACTIONS(3141), 1, + ACTIONS(1969), 1, + aux_sym_unquoted_token1, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(3143), 1, + ACTIONS(2810), 1, anon_sym_LPAREN, - ACTIONS(3145), 1, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, anon_sym_LBRACE, - ACTIONS(3147), 1, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3116), 1, + anon_sym_null, + ACTIONS(3120), 1, anon_sym_DOT_DOT, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3153), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3159), 1, + ACTIONS(3128), 1, sym_val_date, - ACTIONS(3161), 1, - anon_sym_DQUOTE, - ACTIONS(3163), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_BQUOTE, - ACTIONS(3167), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3169), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1388), 1, - sym_comment, - STATE(3098), 1, + STATE(726), 1, sym__val_number, - STATE(3135), 1, + STATE(766), 1, sym__inter_single_quotes, - STATE(3139), 1, + STATE(767), 1, sym__inter_double_quotes, - STATE(3184), 1, - sym_unquoted, - STATE(3822), 1, + STATE(1391), 1, + sym_comment, + STATE(3927), 1, sym__val_number_decimal, - STATE(4321), 1, + STATE(4447), 1, + sym_expr_parenthesized, + STATE(4626), 1, + sym_val_variable, + STATE(4933), 1, sym_val_bool, - ACTIONS(839), 2, + STATE(5209), 1, + sym_unquoted, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3135), 2, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - ACTIONS(3151), 2, + ACTIONS(3122), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3155), 2, + ACTIONS(3124), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3126), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3177), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5337), 2, + STATE(5303), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3139), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3157), 3, + STATE(5330), 2, + sym_val_range, + sym__value, + ACTIONS(2640), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2476), 4, + ACTIONS(3118), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3097), 13, + STATE(969), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -150452,12 +150807,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8556] = 4, + [8597] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1389), 1, + ACTIONS(2642), 1, + sym__newline, + ACTIONS(3176), 1, + anon_sym_SEMI, + STATE(1338), 1, + aux_sym__repeat_newline, + STATE(1392), 1, sym_comment, - ACTIONS(3133), 10, + ACTIONS(3172), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150468,9 +150829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3131), 49, + ACTIONS(3174), 47, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150495,8 +150855,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -150518,12 +150876,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8626] = 4, + anon_sym_PERCENT, + [8674] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1390), 1, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1418), 1, + anon_sym_DOLLAR, + ACTIONS(1434), 1, + anon_sym_0b, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1446), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1448), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(1511), 1, + anon_sym_LBRACE, + ACTIONS(1606), 1, + anon_sym_LBRACK, + ACTIONS(3135), 1, + anon_sym_null, + ACTIONS(3139), 1, + anon_sym_DOT_DOT, + ACTIONS(3143), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3145), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3149), 1, + sym_val_date, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + STATE(1393), 1, + sym_comment, + STATE(3746), 1, + sym__val_number_decimal, + STATE(4196), 1, + sym_val_variable, + STATE(4264), 1, + sym_expr_parenthesized, + STATE(4415), 1, + sym__unquoted_in_record, + STATE(4498), 1, + sym_val_bool, + STATE(4612), 1, + sym__val_number, + STATE(4926), 1, + sym__inter_single_quotes, + STATE(4927), 1, + sym__inter_double_quotes, + ACTIONS(1436), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3133), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3141), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3147), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4812), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1432), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3137), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(4965), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4854), 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, + [8811] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1418), 1, + anon_sym_DOLLAR, + ACTIONS(1434), 1, + anon_sym_0b, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1446), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1448), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(1511), 1, + anon_sym_LBRACE, + ACTIONS(1606), 1, + anon_sym_LBRACK, + ACTIONS(3135), 1, + anon_sym_null, + ACTIONS(3139), 1, + anon_sym_DOT_DOT, + ACTIONS(3143), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3145), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3149), 1, + sym_val_date, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + STATE(1394), 1, + sym_comment, + STATE(3746), 1, + sym__val_number_decimal, + STATE(4196), 1, + sym_val_variable, + STATE(4263), 1, + sym_expr_parenthesized, + STATE(4403), 1, + sym__unquoted_in_record, + STATE(4498), 1, + sym_val_bool, + STATE(4612), 1, + sym__val_number, + STATE(4926), 1, + sym__inter_single_quotes, + STATE(4927), 1, + sym__inter_double_quotes, + ACTIONS(1436), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3133), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3141), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3147), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4812), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1432), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3137), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(5094), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4854), 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, + [8948] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1395), 1, sym_comment, - ACTIONS(3171), 10, + ACTIONS(3178), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150534,7 +151093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3173), 49, + ACTIONS(3180), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150584,110 +151143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8696] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3177), 1, - anon_sym_null, - ACTIONS(3181), 1, - anon_sym_LBRACK, - ACTIONS(3183), 1, - anon_sym_LPAREN, - ACTIONS(3185), 1, - anon_sym_DOLLAR, - ACTIONS(3187), 1, - anon_sym_LBRACE, - ACTIONS(3189), 1, - anon_sym_DOT_DOT, - ACTIONS(3191), 1, - anon_sym_LPAREN2, - ACTIONS(3195), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3197), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3203), 1, - anon_sym_0b, - ACTIONS(3207), 1, - sym_val_date, - ACTIONS(3209), 1, - anon_sym_DQUOTE, - ACTIONS(3211), 1, - anon_sym_SQUOTE, - ACTIONS(3213), 1, - anon_sym_BQUOTE, - ACTIONS(3215), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3217), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3221), 1, - sym_raw_string_begin, - STATE(1391), 1, - sym_comment, - STATE(1834), 1, - sym__val_number_decimal, - STATE(2040), 1, - sym_val_bool, - STATE(2178), 1, - sym__inter_double_quotes, - STATE(2184), 1, - sym__val_number, - STATE(2190), 1, - sym__inter_single_quotes, - STATE(2215), 1, - sym_unquoted, - ACTIONS(3175), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3199), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3205), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2180), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5188), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3179), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3201), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2175), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2182), 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, - [8830] = 4, + anon_sym_PERCENT, + [9019] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1392), 1, + STATE(1396), 1, sym_comment, - ACTIONS(3225), 10, + ACTIONS(3184), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150698,7 +151160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3223), 49, + ACTIONS(3182), 50, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -150748,91 +151210,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8900] = 36, + anon_sym_PERCENT, + [9090] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(815), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(831), 1, + ACTIONS(857), 1, aux_sym__val_number_decimal_token1, - ACTIONS(837), 1, + ACTIONS(863), 1, anon_sym_0b, - ACTIONS(857), 1, + ACTIONS(883), 1, aux_sym_unquoted_token1, - ACTIONS(859), 1, + ACTIONS(885), 1, sym_raw_string_begin, - ACTIONS(3141), 1, + ACTIONS(3188), 1, + anon_sym_null, + ACTIONS(3192), 1, anon_sym_LBRACK, - ACTIONS(3143), 1, + ACTIONS(3194), 1, anon_sym_LPAREN, - ACTIONS(3145), 1, + ACTIONS(3196), 1, anon_sym_LBRACE, - ACTIONS(3147), 1, + ACTIONS(3198), 1, anon_sym_DOT_DOT, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3161), 1, + ACTIONS(3204), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3210), 1, + sym_val_date, + ACTIONS(3212), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(3214), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(3218), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3169), 1, + ACTIONS(3220), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3229), 1, - anon_sym_null, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3237), 1, - sym_val_date, - STATE(1393), 1, + STATE(1397), 1, sym_comment, - STATE(2480), 1, + STATE(2511), 1, sym__val_number_decimal, - STATE(2788), 1, + STATE(2899), 1, sym_val_bool, - STATE(3098), 1, + STATE(3060), 1, + sym_unquoted, + STATE(3139), 1, sym__val_number, - STATE(3135), 1, + STATE(3179), 1, sym__inter_single_quotes, - STATE(3139), 1, + STATE(3180), 1, sym__inter_double_quotes, - STATE(3184), 1, - sym_unquoted, - ACTIONS(839), 2, + ACTIONS(865), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3227), 2, + ACTIONS(3186), 2, anon_sym_true, anon_sym_false, - ACTIONS(3235), 2, + ACTIONS(3202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3206), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3177), 2, + STATE(3059), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5337), 2, + STATE(5531), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3157), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3231), 3, + ACTIONS(3190), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2476), 4, + ACTIONS(3208), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2503), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3097), 13, + STATE(3138), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -150846,110 +151309,113 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9034] = 36, + [9224] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3002), 1, - anon_sym_0b, - ACTIONS(3014), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3241), 1, + ACTIONS(3225), 1, anon_sym_null, - ACTIONS(3245), 1, + ACTIONS(3231), 1, anon_sym_LBRACK, - ACTIONS(3247), 1, + ACTIONS(3234), 1, anon_sym_LPAREN, - ACTIONS(3249), 1, + ACTIONS(3237), 1, anon_sym_DOLLAR, - ACTIONS(3251), 1, + ACTIONS(3240), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3243), 1, + anon_sym__, + ACTIONS(3246), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, - anon_sym_LPAREN2, - ACTIONS(3259), 1, + ACTIONS(3252), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3261), 1, + ACTIONS(3255), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3265), 1, + ACTIONS(3264), 1, + anon_sym_0b, + ACTIONS(3270), 1, sym_val_date, - ACTIONS(3267), 1, + ACTIONS(3273), 1, + anon_sym_DQUOTE, + ACTIONS(3276), 1, + anon_sym_SQUOTE, + ACTIONS(3279), 1, + anon_sym_BQUOTE, + ACTIONS(3282), 1, aux_sym_unquoted_token1, - STATE(1394), 1, - sym_comment, - STATE(3129), 1, + ACTIONS(3285), 1, + sym_raw_string_begin, + STATE(726), 1, sym__val_number, - STATE(3214), 1, - sym__inter_single_quotes, - STATE(3215), 1, - sym__inter_double_quotes, - STATE(3796), 1, + STATE(3674), 1, sym__val_number_decimal, - STATE(4501), 1, + STATE(3961), 1, + sym_expr_parenthesized, + STATE(3966), 1, + sym_val_variable, + STATE(4099), 1, + sym__match_pattern, + STATE(4358), 1, sym_val_bool, - STATE(4898), 1, + STATE(4655), 1, + sym__match_pattern_expression, + STATE(4659), 1, + sym__match_pattern_list, + STATE(4665), 1, sym_unquoted, - ACTIONS(3004), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3239), 2, + STATE(5399), 1, + sym_match_pattern, + ACTIONS(3222), 2, anon_sym_true, anon_sym_false, - ACTIONS(3257), 2, + ACTIONS(3249), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3263), 2, + ACTIONS(3258), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4896), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5106), 2, + ACTIONS(3267), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1398), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4656), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5033), 2, + sym_match_arm, + sym_default_arm, + STATE(5303), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3000), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3243), 3, + ACTIONS(3228), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2288), 4, + ACTIONS(3261), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3128), 13, + STATE(4663), 8, + sym__match_pattern_record, 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, - [9168] = 4, + [9364] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1395), 1, + STATE(1399), 1, sym_comment, - ACTIONS(3271), 10, + ACTIONS(3104), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150960,9 +151426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3269), 49, + ACTIONS(3106), 49, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -151010,18 +151475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9238] = 7, + anon_sym_PERCENT, + [9434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2650), 1, - sym__newline, - ACTIONS(3277), 1, - anon_sym_SEMI, - STATE(1372), 1, - aux_sym__repeat_newline, - STATE(1396), 1, + STATE(1400), 1, sym_comment, - ACTIONS(3273), 10, + ACTIONS(3165), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -151032,7 +151492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3275), 46, + ACTIONS(3167), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -151058,6 +151518,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, @@ -151079,29 +151541,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9314] = 6, + anon_sym_PERCENT, + [9504] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_RPAREN, - STATE(1397), 1, - sym_comment, - ACTIONS(3283), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3279), 10, - anon_sym_export, + ACTIONS(3294), 1, aux_sym_cmd_identifier_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3304), 1, + aux_sym__val_number_decimal_token2, + STATE(2130), 1, + sym__val_number_decimal, + STATE(4695), 1, + sym_env_var, + STATE(5211), 1, + sym_cmd_identifier, + ACTIONS(3288), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3307), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1401), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3299), 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(3281), 46, + ACTIONS(3297), 18, 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, + anon_sym_PERCENT, + ACTIONS(3291), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -151126,17 +151617,45 @@ 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, + [9592] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3316), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3326), 1, + aux_sym__val_number_decimal_token2, + STATE(2130), 1, + sym__val_number_decimal, + STATE(4949), 1, + sym_env_var, + STATE(5211), 1, + sym_cmd_identifier, + ACTIONS(3310), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3329), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1402), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3321), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3319), 18, + sym_raw_string_begin, 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, @@ -151147,303 +151666,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9388] = 39, + anon_sym_PERCENT, + ACTIONS(3313), 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, + [9680] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3289), 1, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3050), 1, + anon_sym_0b, + ACTIONS(3062), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3064), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3334), 1, anon_sym_null, - ACTIONS(3295), 1, + ACTIONS(3338), 1, anon_sym_LBRACK, - ACTIONS(3298), 1, + ACTIONS(3340), 1, anon_sym_LPAREN, - ACTIONS(3301), 1, + ACTIONS(3342), 1, anon_sym_DOLLAR, - ACTIONS(3304), 1, + ACTIONS(3344), 1, anon_sym_LBRACE, - ACTIONS(3307), 1, - anon_sym__, - ACTIONS(3310), 1, + ACTIONS(3346), 1, anon_sym_DOT_DOT, - ACTIONS(3316), 1, + ACTIONS(3348), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, + ACTIONS(3354), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3328), 1, - anon_sym_0b, - ACTIONS(3334), 1, + ACTIONS(3358), 1, sym_val_date, - ACTIONS(3337), 1, - anon_sym_DQUOTE, - ACTIONS(3340), 1, - anon_sym_SQUOTE, - ACTIONS(3343), 1, - anon_sym_BQUOTE, - ACTIONS(3346), 1, + ACTIONS(3360), 1, aux_sym_unquoted_token1, - ACTIONS(3349), 1, - sym_raw_string_begin, - STATE(744), 1, + STATE(1403), 1, + sym_comment, + STATE(3177), 1, sym__val_number, - STATE(3707), 1, + STATE(3230), 1, + sym__inter_single_quotes, + STATE(3231), 1, + sym__inter_double_quotes, + STATE(3749), 1, sym__val_number_decimal, - STATE(3880), 1, - sym_expr_parenthesized, - STATE(3881), 1, - sym_val_variable, - STATE(4120), 1, - sym__match_pattern, - STATE(4344), 1, + STATE(4458), 1, sym_val_bool, - STATE(4468), 1, - sym__match_pattern_expression, - STATE(4480), 1, - sym__match_pattern_list, - STATE(4507), 1, + STATE(4704), 1, sym_unquoted, - STATE(5108), 1, - sym_match_pattern, - ACTIONS(3286), 2, + ACTIONS(3052), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3332), 2, anon_sym_true, anon_sym_false, - ACTIONS(3313), 2, + ACTIONS(3350), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3322), 2, + ACTIONS(3356), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3331), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1398), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4475), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4974), 2, - sym_match_arm, - sym_default_arm, - STATE(5398), 2, + STATE(4702), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5120), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3292), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3325), 3, + ACTIONS(3048), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2288), 4, + ACTIONS(3336), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4490), 8, - sym__match_pattern_record, + STATE(3176), 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, - [9528] = 40, + sym_val_closure, + [9814] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(1951), 1, - aux_sym_unquoted_token1, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(3364), 1, anon_sym_null, - ACTIONS(2896), 1, + ACTIONS(3368), 1, anon_sym_LBRACK, - ACTIONS(2898), 1, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3372), 1, anon_sym_DOLLAR, - ACTIONS(2900), 1, + ACTIONS(3374), 1, anon_sym_LBRACE, - ACTIONS(2904), 1, - anon_sym__, - ACTIONS(2906), 1, + ACTIONS(3376), 1, anon_sym_DOT_DOT, - ACTIONS(2910), 1, + ACTIONS(3378), 1, + anon_sym_LPAREN2, + ACTIONS(3382), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2912), 1, + ACTIONS(3384), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2916), 1, + ACTIONS(3390), 1, + anon_sym_0b, + ACTIONS(3394), 1, sym_val_date, - STATE(744), 1, - sym__val_number, - STATE(1398), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1399), 1, + ACTIONS(3396), 1, + anon_sym_DQUOTE, + ACTIONS(3398), 1, + anon_sym_SQUOTE, + ACTIONS(3400), 1, + anon_sym_BQUOTE, + ACTIONS(3402), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3404), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3406), 1, + aux_sym_unquoted_token1, + ACTIONS(3408), 1, + sym_raw_string_begin, + STATE(1404), 1, sym_comment, - STATE(3707), 1, + STATE(1863), 1, sym__val_number_decimal, - STATE(3880), 1, - sym_expr_parenthesized, - STATE(3881), 1, - sym_val_variable, - STATE(4120), 1, - sym__match_pattern, - STATE(4344), 1, + STATE(2083), 1, sym_val_bool, - STATE(4468), 1, - sym__match_pattern_expression, - STATE(4480), 1, - sym__match_pattern_list, - STATE(4507), 1, + STATE(2199), 1, sym_unquoted, - STATE(5108), 1, - sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2888), 2, + STATE(2203), 1, + sym__inter_single_quotes, + STATE(2205), 1, + sym__inter_double_quotes, + STATE(2210), 1, + sym__val_number, + ACTIONS(3362), 2, anon_sym_true, anon_sym_false, - ACTIONS(2908), 2, + ACTIONS(3380), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2914), 2, + ACTIONS(3386), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4891), 2, - sym_match_arm, - sym_default_arm, - STATE(5398), 2, + ACTIONS(3392), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2197), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5254), 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(2892), 3, + ACTIONS(3366), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2288), 4, + ACTIONS(3388), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2172), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4490), 8, - sym__match_pattern_record, + STATE(2209), 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, - [9670] = 40, + sym_val_closure, + [9948] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(1951), 1, + ACTIONS(1969), 1, aux_sym_unquoted_token1, - ACTIONS(2766), 1, + ACTIONS(2810), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2937), 1, anon_sym_null, - ACTIONS(2896), 1, + ACTIONS(2943), 1, anon_sym_LBRACK, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(2900), 1, + ACTIONS(2947), 1, anon_sym_LBRACE, - ACTIONS(2904), 1, + ACTIONS(2951), 1, anon_sym__, - ACTIONS(2906), 1, + ACTIONS(2953), 1, anon_sym_DOT_DOT, - ACTIONS(2910), 1, + ACTIONS(2957), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2912), 1, + ACTIONS(2959), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2916), 1, + ACTIONS(2963), 1, sym_val_date, - STATE(744), 1, + STATE(726), 1, sym__val_number, STATE(1398), 1, aux_sym__ctrl_match_body_repeat1, - STATE(1400), 1, + STATE(1405), 1, sym_comment, - STATE(3707), 1, + STATE(3674), 1, sym__val_number_decimal, - STATE(3880), 1, + STATE(3961), 1, sym_expr_parenthesized, - STATE(3881), 1, + STATE(3966), 1, sym_val_variable, - STATE(4120), 1, + STATE(4099), 1, sym__match_pattern, - STATE(4344), 1, + STATE(4358), 1, sym_val_bool, - STATE(4468), 1, + STATE(4655), 1, sym__match_pattern_expression, - STATE(4480), 1, + STATE(4659), 1, sym__match_pattern_list, - STATE(4507), 1, + STATE(4665), 1, sym_unquoted, - STATE(5108), 1, + STATE(5399), 1, sym_match_pattern, - ACTIONS(193), 2, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2888), 2, + ACTIONS(2935), 2, anon_sym_true, anon_sym_false, - ACTIONS(2908), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2914), 2, + ACTIONS(2961), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, + STATE(4656), 2, sym__match_pattern_value, sym_val_range, - STATE(4742), 2, + STATE(4885), 2, sym_match_arm, sym_default_arm, - STATE(5398), 2, + STATE(5303), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2892), 3, + ACTIONS(2939), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4490), 8, + STATE(4663), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151452,91 +151990,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [9812] = 36, + [10090] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(920), 1, + ACTIONS(940), 1, anon_sym_DOLLAR, - ACTIONS(936), 1, + ACTIONS(956), 1, aux_sym__val_number_decimal_token1, - ACTIONS(942), 1, - anon_sym_0b, ACTIONS(962), 1, + anon_sym_0b, + ACTIONS(982), 1, aux_sym_unquoted_token1, - ACTIONS(964), 1, + ACTIONS(984), 1, sym_raw_string_begin, - ACTIONS(3354), 1, + ACTIONS(3412), 1, anon_sym_null, - ACTIONS(3358), 1, + ACTIONS(3416), 1, anon_sym_LBRACK, - ACTIONS(3360), 1, + ACTIONS(3418), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3420), 1, anon_sym_LBRACE, - ACTIONS(3364), 1, + ACTIONS(3422), 1, anon_sym_DOT_DOT, - ACTIONS(3366), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3370), 1, + ACTIONS(3428), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3376), 1, + ACTIONS(3434), 1, sym_val_date, - ACTIONS(3378), 1, + ACTIONS(3436), 1, anon_sym_DQUOTE, - ACTIONS(3380), 1, + ACTIONS(3438), 1, anon_sym_SQUOTE, - ACTIONS(3382), 1, + ACTIONS(3440), 1, anon_sym_BQUOTE, - ACTIONS(3384), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3386), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1401), 1, + STATE(1406), 1, sym_comment, - STATE(2530), 1, + STATE(2563), 1, sym__val_number_decimal, - STATE(3000), 1, + STATE(3030), 1, sym_val_bool, - STATE(3322), 1, - sym_unquoted, - STATE(3366), 1, + STATE(3317), 1, sym__inter_single_quotes, - STATE(3367), 1, + STATE(3318), 1, sym__inter_double_quotes, - STATE(3368), 1, + STATE(3341), 1, sym__val_number, - ACTIONS(944), 2, + STATE(3397), 1, + sym_unquoted, + ACTIONS(964), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3352), 2, + ACTIONS(3410), 2, anon_sym_true, anon_sym_false, - ACTIONS(3368), 2, + ACTIONS(3426), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3372), 2, + ACTIONS(3430), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3371), 2, + STATE(3396), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5239), 2, + STATE(5266), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3356), 3, + ACTIONS(3414), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3374), 3, + ACTIONS(3432), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2564), 4, + STATE(2543), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3356), 13, + STATE(3333), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -151550,375 +152088,225 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9946] = 6, + [10224] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(1370), 1, - aux_sym__block_body_repeat1, - STATE(1402), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3056), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(193), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3058), 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, + ACTIONS(1766), 1, anon_sym_DQUOTE, + ACTIONS(1768), 1, anon_sym_SQUOTE, + ACTIONS(1770), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10020] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1403), 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(3390), 49, + ACTIONS(1772), 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_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(1969), 1, + aux_sym_unquoted_token1, + ACTIONS(2810), 1, + anon_sym_LPAREN, + ACTIONS(2937), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, + ACTIONS(2943), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + ACTIONS(2947), 1, 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(2951), 1, + anon_sym__, + ACTIONS(2953), 1, + anon_sym_DOT_DOT, + ACTIONS(2957), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2959), 1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(2963), 1, sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10090] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1404), 1, + STATE(726), 1, + sym__val_number, + STATE(1398), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(1407), 1, sym_comment, - ACTIONS(3392), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(3674), 1, + sym__val_number_decimal, + STATE(3961), 1, + sym_expr_parenthesized, + STATE(3966), 1, + sym_val_variable, + STATE(4099), 1, + sym__match_pattern, + STATE(4358), 1, + sym_val_bool, + STATE(4655), 1, + sym__match_pattern_expression, + STATE(4659), 1, + sym__match_pattern_list, + STATE(4665), 1, + sym_unquoted, + STATE(5399), 1, + sym_match_pattern, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3394), 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, + ACTIONS(2935), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(2955), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(2961), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4656), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4737), 2, + sym_match_arm, + sym_default_arm, + STATE(5303), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(191), 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, - [10160] = 13, + ACTIONS(2939), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4663), 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, + [10366] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3402), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3409), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token2, - STATE(2117), 1, - sym__val_number_decimal, - STATE(5018), 1, - sym_env_var, - STATE(5397), 1, - sym_cmd_identifier, - ACTIONS(3396), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3415), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1405), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3407), 6, + ACTIONS(841), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(863), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 17, + ACTIONS(883), 1, + aux_sym_unquoted_token1, + ACTIONS(885), 1, sym_raw_string_begin, + ACTIONS(1274), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3192), 1, anon_sym_LBRACK, + ACTIONS(3194), 1, anon_sym_LPAREN, + ACTIONS(3196), 1, 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, + ACTIONS(3198), 1, + anon_sym_DOT_DOT, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3212), 1, anon_sym_DQUOTE, + ACTIONS(3214), 1, anon_sym_SQUOTE, + ACTIONS(3216), 1, anon_sym_BQUOTE, + ACTIONS(3218), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3220), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3399), 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, + ACTIONS(3448), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [10247] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3418), 1, - anon_sym_DOT, - STATE(1406), 1, - sym_comment, - STATE(1456), 1, - sym__immediate_decimal, - ACTIONS(3420), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3422), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(727), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1620), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10332] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1407), 1, + ACTIONS(3452), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3456), 1, + sym_val_date, + STATE(1408), 1, sym_comment, - ACTIONS(3279), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(3060), 1, + sym_unquoted, + STATE(3139), 1, + sym__val_number, + STATE(3179), 1, + sym__inter_single_quotes, + STATE(3180), 1, + sym__inter_double_quotes, + STATE(3817), 1, + sym__val_number_decimal, + STATE(4311), 1, + sym_val_bool, + ACTIONS(865), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3281), 48, + ACTIONS(3202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3454), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3059), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5531), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3208), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3450), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2503), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3138), 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, + [10500] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3460), 1, + sym__newline, + ACTIONS(3463), 1, + sym__space, + ACTIONS(3466), 1, sym_raw_string_begin, + STATE(1409), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3458), 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, @@ -151933,77 +152321,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [10401] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3437), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3440), 1, - aux_sym__val_number_decimal_token2, - STATE(2117), 1, - sym__val_number_decimal, - STATE(4687), 1, - sym_env_var, - STATE(5397), 1, - sym_cmd_identifier, - ACTIONS(3424), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3443), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1408), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3435), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 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, @@ -152011,53 +152354,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3427), 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, - [10488] = 4, - ACTIONS(3), 1, + anon_sym_PERCENT, + [10573] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(3297), 1, + sym_raw_string_begin, + ACTIONS(3468), 1, + sym__newline, + ACTIONS(3470), 1, + sym__space, STATE(1409), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(1410), 1, sym_comment, - ACTIONS(3112), 10, + ACTIONS(3299), 54, 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(3114), 48, - 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, @@ -152072,28 +152389,32 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -152101,39 +152422,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10557] = 12, + anon_sym_PERCENT, + [10648] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(1655), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1657), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(3446), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3472), 1, anon_sym_DOT, - STATE(1410), 1, + STATE(1411), 1, sym_comment, - STATE(1466), 1, + STATE(1456), 1, sym__immediate_decimal, - ACTIONS(3448), 2, + ACTIONS(3474), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3450), 2, + ACTIONS(3476), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(943), 2, + STATE(718), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 6, + ACTIONS(1644), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1620), 40, - ts_builtin_sym_end, + ACTIONS(1642), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152146,6 +152467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152173,36 +152496,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10641] = 11, + [10733] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1412), 1, + sym_comment, + ACTIONS(3478), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(890), 55, + 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, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [10801] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1653), 1, + ACTIONS(1711), 1, sym__unquoted_pattern, - STATE(1411), 1, + STATE(1413), 1, sym_comment, - STATE(1502), 1, + STATE(1495), 1, sym__immediate_decimal, - ACTIONS(3452), 2, + ACTIONS(3480), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3454), 2, + ACTIONS(3482), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(805), 2, + STATE(747), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1647), 6, + ACTIONS(1691), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1645), 41, + ACTIONS(1689), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152244,19 +152631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10723] = 6, - ACTIONS(103), 1, + [10883] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3458), 1, - sym__newline, - ACTIONS(3461), 1, - sym__space, - ACTIONS(3464), 1, + ACTIONS(3319), 1, sym_raw_string_begin, - STATE(1412), 2, + ACTIONS(3484), 1, + sym__space, + STATE(1414), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3456), 53, + STATE(1417), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3321), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -152310,36 +152696,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10795] = 11, + anon_sym_PERCENT, + [10955] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(1413), 1, + ACTIONS(3486), 1, + anon_sym_DOT, + STATE(1415), 1, sym_comment, - STATE(1499), 1, + STATE(1463), 1, sym__immediate_decimal, - ACTIONS(3452), 2, + ACTIONS(3488), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3454), 2, + ACTIONS(3490), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(768), 2, + STATE(957), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 6, + ACTIONS(1644), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1620), 41, + ACTIONS(1642), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152352,8 +152742,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, @@ -152381,26 +152769,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10877] = 7, - ACTIONS(103), 1, + [11039] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - sym_raw_string_begin, - ACTIONS(3466), 1, + ACTIONS(3492), 1, sym__newline, - ACTIONS(3468), 1, - sym__space, - STATE(1412), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1414), 1, + STATE(1416), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(3435), 53, + ACTIONS(1893), 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(1888), 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, @@ -152415,7 +152808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -152424,23 +152816,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, @@ -152448,209 +152833,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10951] = 37, - ACTIONS(3), 1, + anon_sym_PERCENT, + [11109] = 5, + ACTIONS(105), 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, + ACTIONS(3497), 1, + sym__space, + ACTIONS(3500), 1, sym_raw_string_begin, - ACTIONS(1570), 1, - anon_sym_DOT_DOT, - ACTIONS(2706), 1, - anon_sym_DOLLAR, - ACTIONS(2708), 1, - anon_sym_LBRACE, - ACTIONS(2712), 1, - sym_val_date, - ACTIONS(3470), 1, - sym__newline, - ACTIONS(3472), 1, - anon_sym_LBRACK, - STATE(1415), 1, + STATE(1417), 2, sym_comment, - STATE(1444), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2294), 1, - aux_sym__types_body_repeat1, - STATE(3770), 1, - sym__val_number_decimal, - STATE(4065), 1, - sym_expr_parenthesized, - STATE(4066), 1, - sym_val_variable, - STATE(4444), 1, - sym__val_number, - STATE(4509), 1, - sym_val_bool, - STATE(4912), 1, - sym__match_pattern_list, - ACTIONS(1384), 2, + aux_sym_pipe_element_repeat1, + ACTIONS(3495), 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, - ACTIONS(1406), 2, + 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, - ACTIONS(1412), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4456), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4911), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5274), 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(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4913), 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, - [11084] = 33, - ACTIONS(3), 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_0o, + anon_sym_0x, + sym_val_date, 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(1504), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1506), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1616), 1, - anon_sym_LBRACK, - ACTIONS(3474), 1, - anon_sym_null, - ACTIONS(3476), 1, - anon_sym_LBRACE, - ACTIONS(3478), 1, - anon_sym_DOT_DOT, - ACTIONS(3482), 1, - sym_val_date, - STATE(1416), 1, + anon_sym_CARET, + anon_sym_PERCENT, + [11179] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + STATE(1418), 1, sym_comment, - STATE(3893), 1, - sym__val_number_decimal, - STATE(4025), 1, - sym_val_variable, - STATE(4317), 1, - sym_expr_parenthesized, - STATE(4444), 1, - sym__val_number, - STATE(4830), 1, - sym__inter_single_quotes, - STATE(4844), 1, - sym__inter_double_quotes, - STATE(5040), 1, - sym_block, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1484), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1508), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__immediate_decimal, ACTIONS(3480), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4973), 2, - sym_val_range, - sym__value, - STATE(3780), 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(4772), 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, - [11209] = 4, - ACTIONS(103), 1, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3482), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1642), 41, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11261] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1417), 1, + STATE(1419), 1, sym_comment, - ACTIONS(3484), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(864), 54, + ACTIONS(2128), 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(2126), 46, + 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, @@ -152665,7 +153006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -152675,23 +153015,16 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -152699,31 +153032,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11276] = 5, - ACTIONS(3), 1, + anon_sym_PERCENT, + [11328] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3486), 1, - sym__newline, - STATE(1418), 2, - aux_sym__repeat_newline, + STATE(1420), 1, sym_comment, - ACTIONS(1883), 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(1878), 44, + ACTIONS(3504), 2, sym_raw_string_begin, + sym__space, + ACTIONS(3502), 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, @@ -152738,6 +153062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -152746,16 +153071,23 @@ 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, @@ -152763,16 +153095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11345] = 6, + anon_sym_PERCENT, + [11395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3491), 1, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3508), 1, aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1421), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(751), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152781,7 +153114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(753), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152828,37 +153161,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [11416] = 11, + [11466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - STATE(1420), 1, - sym_comment, - STATE(1540), 1, - sym__immediate_decimal, - ACTIONS(3493), 2, + ACTIONS(3510), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3495), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1324), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1647), 6, + ACTIONS(3512), 1, + aux_sym__immediate_decimal_token5, + STATE(1422), 1, + sym_comment, + ACTIONS(759), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1645), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152871,6 +153192,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, @@ -152889,6 +153213,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, @@ -152898,193 +153223,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11497] = 33, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11537] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1396), 1, + ACTIONS(1404), 1, + anon_sym_null, + ACTIONS(1414), 1, anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1426), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1428), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1434), 1, anon_sym_0b, - ACTIONS(1422), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, + ACTIONS(1452), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(1504), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1506), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1616), 1, - anon_sym_LBRACK, - ACTIONS(3474), 1, - anon_sym_null, - ACTIONS(3476), 1, - anon_sym_LBRACE, - ACTIONS(3478), 1, + ACTIONS(1590), 1, anon_sym_DOT_DOT, - ACTIONS(3482), 1, + ACTIONS(2768), 1, + anon_sym_DOLLAR, + ACTIONS(2770), 1, + anon_sym_LBRACE, + ACTIONS(2772), 1, sym_val_date, - STATE(1421), 1, + ACTIONS(3514), 1, + sym__newline, + ACTIONS(3516), 1, + anon_sym_LBRACK, + STATE(1423), 1, sym_comment, - STATE(3893), 1, + STATE(1443), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2295), 1, + aux_sym__types_body_repeat1, + STATE(3789), 1, sym__val_number_decimal, - STATE(4025), 1, - sym_val_variable, - STATE(4308), 1, + STATE(4000), 1, sym_expr_parenthesized, - STATE(4444), 1, + STATE(4001), 1, + sym_val_variable, + STATE(4442), 1, + sym_val_bool, + STATE(4612), 1, sym__val_number, - STATE(4830), 1, - sym__inter_single_quotes, - STATE(4844), 1, - sym__inter_double_quotes, - STATE(5014), 1, - sym_block, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1484), 2, + STATE(4713), 1, + sym__match_pattern_list, + ACTIONS(1402), 2, anon_sym_true, anon_sym_false, - ACTIONS(1508), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3480), 2, + ACTIONS(1424), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5037), 2, + ACTIONS(1430), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1436), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4615), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4712), 2, + sym__match_pattern_value, sym_val_range, - sym__value, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1414), 6, + STATE(5257), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1406), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + ACTIONS(1432), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4772), 13, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4714), 8, + sym__match_pattern_record, 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, - [11622] = 6, - ACTIONS(103), 1, + [11670] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3405), 1, - sym_raw_string_begin, - ACTIONS(3497), 1, - sym__space, - STATE(1422), 1, - sym_comment, - STATE(1424), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3407), 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, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(1693), 1, anon_sym_DOLLAR, + ACTIONS(1695), 1, + anon_sym_LPAREN2, + STATE(1424), 1, + sym_comment, + STATE(1537), 1, + sym__immediate_decimal, + ACTIONS(3518), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3520), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1325), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, + anon_sym_GT2, 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, - [11693] = 11, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1642), 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, + [11751] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(1655), 1, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - STATE(1423), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + STATE(1425), 1, sym_comment, - STATE(1514), 1, + STATE(1513), 1, sym__immediate_decimal, - ACTIONS(3493), 2, + ACTIONS(3518), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3495), 2, + ACTIONS(3520), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1297), 2, + STATE(1306), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 6, + ACTIONS(1691), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1620), 40, + ACTIONS(1689), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153125,80 +153462,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11774] = 5, - ACTIONS(103), 1, + [11832] = 33, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - sym__space, - ACTIONS(3504), 1, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1418), 1, + anon_sym_DOLLAR, + ACTIONS(1434), 1, + anon_sym_0b, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1446), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1448), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1454), 1, sym_raw_string_begin, - STATE(1424), 2, + ACTIONS(1517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1606), 1, + anon_sym_LBRACK, + ACTIONS(3522), 1, + anon_sym_null, + ACTIONS(3524), 1, + anon_sym_LBRACE, + ACTIONS(3526), 1, + anon_sym_DOT_DOT, + ACTIONS(3530), 1, + sym_val_date, + STATE(1426), 1, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3499), 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, + STATE(3982), 1, + sym__val_number_decimal, + STATE(4196), 1, + sym_val_variable, + STATE(4355), 1, + sym_expr_parenthesized, + STATE(4612), 1, + sym__val_number, + STATE(4926), 1, + sym__inter_single_quotes, + STATE(4927), 1, + sym__inter_double_quotes, + STATE(5021), 1, + sym_block, + ACTIONS(1436), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1497), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(1521), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3528), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5023), 2, + sym_val_range, + sym__value, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1432), 6, 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(4854), 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, + [11957] = 33, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1418), 1, + anon_sym_DOLLAR, + ACTIONS(1434), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(1440), 1, anon_sym_DQUOTE, + ACTIONS(1442), 1, anon_sym_SQUOTE, + ACTIONS(1444), 1, anon_sym_BQUOTE, + ACTIONS(1446), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(1448), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11843] = 6, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(1517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1606), 1, + anon_sym_LBRACK, + ACTIONS(3522), 1, + anon_sym_null, + ACTIONS(3524), 1, + anon_sym_LBRACE, + ACTIONS(3526), 1, + anon_sym_DOT_DOT, + ACTIONS(3530), 1, + sym_val_date, + STATE(1427), 1, + sym_comment, + STATE(3982), 1, + sym__val_number_decimal, + STATE(4196), 1, + sym_val_variable, + STATE(4352), 1, + sym_expr_parenthesized, + STATE(4612), 1, + sym__val_number, + STATE(4926), 1, + sym__inter_single_quotes, + STATE(4927), 1, + sym__inter_double_quotes, + STATE(5012), 1, + sym_block, + ACTIONS(1436), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1497), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1521), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3528), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5017), 2, + sym_val_range, + sym__value, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1432), 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(4854), 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, + [12082] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3506), 1, - anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3534), 1, aux_sym__immediate_decimal_token5, - STATE(1425), 1, + STATE(1428), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153207,7 +153664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(761), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153220,9 +153678,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, @@ -153254,16 +153710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [11914] = 6, + [12152] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3510), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3512), 1, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3538), 1, aux_sym__immediate_decimal_token5, - STATE(1426), 1, + STATE(1429), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(751), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153272,7 +153728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(753), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153318,33 +153774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [11984] = 11, + [12222] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(3514), 1, - anon_sym_DOT_DOT2, - ACTIONS(3518), 1, - sym_filesize_unit, - ACTIONS(3520), 1, - sym_duration_unit, - STATE(1427), 1, + ACTIONS(3508), 1, + aux_sym__immediate_decimal_token5, + STATE(1430), 1, sym_comment, - STATE(5075), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3516), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 5, + ACTIONS(751), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(753), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153378,6 +153824,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, @@ -153387,26 +153834,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12064] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12290] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_DOT, - ACTIONS(3524), 1, - aux_sym__immediate_decimal_token5, - STATE(1428), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(3540), 1, + anon_sym_DOT_DOT2, + ACTIONS(3544), 1, + sym_filesize_unit, + ACTIONS(3546), 1, + sym_duration_unit, + STATE(1431), 1, sym_comment, - ACTIONS(739), 8, + STATE(5068), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, + ACTIONS(914), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153419,7 +153876,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, @@ -153438,7 +153897,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, @@ -153448,17 +153906,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, - [12134] = 5, + [12370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3508), 1, + ACTIONS(3548), 1, aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1432), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(791), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153467,7 +153922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(793), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153514,14 +153969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12202] = 5, + [12438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3526), 1, - aux_sym__immediate_decimal_token5, - STATE(1430), 1, + STATE(1433), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153530,7 +153983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 46, + ACTIONS(761), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153577,215 +154030,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12270] = 4, - ACTIONS(103), 1, + [12503] = 36, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1431), 1, - sym_comment, - ACTIONS(3530), 2, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, sym_raw_string_begin, - sym__space, - ACTIONS(3528), 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, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, + ACTIONS(1969), 1, + aux_sym_unquoted_token1, + ACTIONS(2810), 1, anon_sym_LPAREN, + ACTIONS(2943), 1, + anon_sym_LBRACK, + ACTIONS(2945), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2947), 1, anon_sym_LBRACE, + ACTIONS(3552), 1, + anon_sym_null, + ACTIONS(3556), 1, anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3560), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3562), 1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3566), 1, sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12336] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1432), 1, + STATE(726), 1, + sym__val_number, + STATE(1434), 1, sym_comment, - ACTIONS(1967), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(3769), 1, + sym__val_number_decimal, + STATE(3961), 1, + sym_expr_parenthesized, + STATE(3966), 1, + sym_val_variable, + STATE(4502), 1, + sym_val_bool, + STATE(4655), 1, + sym__match_pattern_expression, + STATE(4659), 1, + sym__match_pattern_list, + STATE(4665), 1, + sym_unquoted, + STATE(4914), 1, + sym__match_pattern, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1965), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, + ACTIONS(3550), 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_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + ACTIONS(3558), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3564), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4656), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5303), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(191), 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, - [12402] = 36, + ACTIONS(3554), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4663), 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, + [12632] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(1951), 1, + ACTIONS(1969), 1, aux_sym_unquoted_token1, - ACTIONS(2766), 1, + ACTIONS(2810), 1, anon_sym_LPAREN, - ACTIONS(2896), 1, + ACTIONS(2943), 1, anon_sym_LBRACK, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(2900), 1, + ACTIONS(2947), 1, anon_sym_LBRACE, - ACTIONS(3534), 1, + ACTIONS(3552), 1, anon_sym_null, - ACTIONS(3538), 1, + ACTIONS(3556), 1, anon_sym_DOT_DOT, - ACTIONS(3542), 1, + ACTIONS(3560), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3544), 1, + ACTIONS(3562), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3548), 1, + ACTIONS(3566), 1, sym_val_date, - STATE(744), 1, + STATE(726), 1, sym__val_number, - STATE(1433), 1, + STATE(1435), 1, sym_comment, - STATE(3764), 1, + STATE(3769), 1, sym__val_number_decimal, - STATE(3880), 1, + STATE(3961), 1, sym_expr_parenthesized, - STATE(3881), 1, + STATE(3966), 1, sym_val_variable, - STATE(4468), 1, + STATE(4502), 1, + sym_val_bool, + STATE(4655), 1, sym__match_pattern_expression, - STATE(4480), 1, + STATE(4659), 1, sym__match_pattern_list, - STATE(4507), 1, + STATE(4665), 1, sym_unquoted, - STATE(4569), 1, - sym_val_bool, - STATE(4727), 1, + STATE(4884), 1, sym__match_pattern, - ACTIONS(193), 2, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3532), 2, + ACTIONS(3550), 2, anon_sym_true, anon_sym_false, - ACTIONS(3540), 2, + ACTIONS(3558), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3546), 2, + ACTIONS(3564), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, + STATE(4656), 2, sym__match_pattern_value, sym_val_range, - STATE(5398), 2, + STATE(5303), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3536), 3, + ACTIONS(3554), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4490), 8, + STATE(4663), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -153794,77 +154216,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [12531] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3550), 1, - anon_sym_DOT, - ACTIONS(3552), 1, - aux_sym__immediate_decimal_token5, - STATE(1434), 1, - sym_comment, - ACTIONS(1786), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 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, - [12600] = 5, + [12761] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3554), 1, + ACTIONS(3568), 1, aux_sym__immediate_decimal_token5, - STATE(1435), 1, + STATE(1436), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(791), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153873,7 +154232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 45, + ACTIONS(793), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153919,23 +154278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12667] = 5, + [12828] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3524), 1, - aux_sym__immediate_decimal_token5, - STATE(1436), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1864), 1, + sym__unquoted_pattern, + ACTIONS(3570), 1, + anon_sym_DOT_DOT2, + ACTIONS(3574), 1, + sym_filesize_unit, + ACTIONS(3576), 1, + sym_duration_unit, + STATE(1437), 1, sym_comment, - ACTIONS(739), 8, + STATE(4987), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3572), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(914), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153968,7 +154337,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, @@ -153978,27 +154346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12734] = 6, + [12907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3556), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3558), 1, - aux_sym__immediate_decimal_token5, - STATE(1437), 1, + STATE(1438), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(791), 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(1730), 45, + ACTIONS(793), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154044,12 +154406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [12803] = 4, + sym_duration_unit, + [12972] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1438), 1, + STATE(1439), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(803), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154058,7 +154421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(805), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154105,89 +154468,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12868] = 34, + [13037] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3563), 1, + ACTIONS(1404), 1, anon_sym_null, - ACTIONS(3569), 1, - anon_sym_LBRACK, - ACTIONS(3572), 1, + ACTIONS(1414), 1, anon_sym_LPAREN, - ACTIONS(3575), 1, - anon_sym_DOLLAR, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_DOT_DOT, - ACTIONS(3587), 1, + ACTIONS(1426), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3590), 1, + ACTIONS(1428), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3599), 1, + ACTIONS(1434), 1, anon_sym_0b, - ACTIONS(3605), 1, - sym_val_date, - ACTIONS(3608), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(3611), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(3614), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(3617), 1, + ACTIONS(1452), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3620), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - STATE(3923), 1, + ACTIONS(1590), 1, + anon_sym_DOT_DOT, + ACTIONS(2768), 1, + anon_sym_DOLLAR, + ACTIONS(2770), 1, + anon_sym_LBRACE, + ACTIONS(2772), 1, + sym_val_date, + ACTIONS(3516), 1, + anon_sym_LBRACK, + STATE(1440), 1, + sym_comment, + STATE(1445), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3789), 1, sym__val_number_decimal, - STATE(4385), 1, + STATE(4000), 1, sym_expr_parenthesized, - STATE(4386), 1, + STATE(4001), 1, sym_val_variable, - STATE(4444), 1, + STATE(4442), 1, + sym_val_bool, + STATE(4612), 1, sym__val_number, - STATE(4912), 1, + STATE(4620), 1, + sym__match_pattern_expression, + STATE(4622), 1, + sym__unquoted_in_list, + STATE(4713), 1, sym__match_pattern_list, - STATE(4988), 1, - sym_val_bool, - ACTIONS(3560), 2, + ACTIONS(1402), 2, anon_sym_true, anon_sym_false, - ACTIONS(3584), 2, + ACTIONS(1424), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(1430), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3602), 2, + ACTIONS(1436), 2, anon_sym_0o, anon_sym_0x, - STATE(1439), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4911), 2, + STATE(4712), 2, sym__match_pattern_value, sym_val_range, - STATE(5034), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(5274), 2, + STATE(5257), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3566), 3, + ACTIONS(1406), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3596), 3, + ACTIONS(1432), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4913), 8, + STATE(4714), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -154196,21 +154561,24 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [12993] = 4, + [13166] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1440), 1, + ACTIONS(3578), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3580), 1, + aux_sym__immediate_decimal_token5, + STATE(1441), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(1776), 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(777), 46, + ACTIONS(1774), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154256,13 +154624,14 @@ 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, - [13058] = 4, + [13235] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1441), 1, + ACTIONS(3538), 1, + aux_sym__immediate_decimal_token5, + STATE(1442), 1, sym_comment, - ACTIONS(866), 8, + ACTIONS(751), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154271,7 +154640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(868), 46, + ACTIONS(753), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154284,9 +154654,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, @@ -154318,184 +154686,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13123] = 36, + [13302] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(1951), 1, - aux_sym_unquoted_token1, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2896), 1, - anon_sym_LBRACK, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(2900), 1, - anon_sym_LBRACE, - ACTIONS(3534), 1, + ACTIONS(1404), 1, anon_sym_null, - ACTIONS(3538), 1, - anon_sym_DOT_DOT, - ACTIONS(3542), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3544), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3548), 1, - sym_val_date, - STATE(744), 1, - sym__val_number, - STATE(1442), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(3880), 1, - sym_expr_parenthesized, - STATE(3881), 1, - sym_val_variable, - STATE(4468), 1, - sym__match_pattern_expression, - STATE(4480), 1, - sym__match_pattern_list, - STATE(4507), 1, - sym_unquoted, - STATE(4569), 1, - sym_val_bool, - STATE(4735), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3532), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3540), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3546), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4475), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5398), 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(3536), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4490), 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, - [13252] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_null, - ACTIONS(1396), 1, + ACTIONS(1414), 1, anon_sym_LPAREN, - ACTIONS(1408), 1, + ACTIONS(1426), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1410), 1, + ACTIONS(1428), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1416), 1, + ACTIONS(1434), 1, anon_sym_0b, - ACTIONS(1422), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1452), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1436), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(1570), 1, + ACTIONS(1590), 1, anon_sym_DOT_DOT, - ACTIONS(2706), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR, - ACTIONS(2708), 1, + ACTIONS(2770), 1, anon_sym_LBRACE, - ACTIONS(2712), 1, + ACTIONS(2772), 1, sym_val_date, - ACTIONS(3472), 1, + ACTIONS(3516), 1, anon_sym_LBRACK, - STATE(1439), 1, - aux_sym__match_pattern_list_body_repeat1, STATE(1443), 1, sym_comment, - STATE(3770), 1, + STATE(1445), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3789), 1, sym__val_number_decimal, - STATE(4065), 1, + STATE(4000), 1, sym_expr_parenthesized, - STATE(4066), 1, + STATE(4001), 1, sym_val_variable, - STATE(4444), 1, - sym__val_number, - STATE(4469), 1, + STATE(4384), 1, sym__match_pattern_expression, - STATE(4471), 1, + STATE(4385), 1, sym__unquoted_in_list, - STATE(4509), 1, + STATE(4442), 1, sym_val_bool, - STATE(4912), 1, + STATE(4612), 1, + sym__val_number, + STATE(4713), 1, sym__match_pattern_list, - ACTIONS(1384), 2, + ACTIONS(1402), 2, anon_sym_true, anon_sym_false, - ACTIONS(1406), 2, + ACTIONS(1424), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1412), 2, + ACTIONS(1430), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1418), 2, + ACTIONS(1436), 2, anon_sym_0o, anon_sym_0x, - STATE(4911), 2, + STATE(4712), 2, sym__match_pattern_value, sym_val_range, - STATE(5274), 2, + STATE(5257), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1388), 3, + ACTIONS(1406), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1414), 3, + ACTIONS(1432), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4913), 8, + STATE(4714), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -154504,91 +154779,152 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13381] = 36, + [13431] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3582), 1, + anon_sym_DOT, + ACTIONS(3584), 1, + aux_sym__immediate_decimal_token5, + STATE(1444), 1, + sym_comment, + ACTIONS(1790), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 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, + [13500] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(3589), 1, anon_sym_null, - ACTIONS(1396), 1, + ACTIONS(3595), 1, + anon_sym_LBRACK, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(1408), 1, + ACTIONS(3601), 1, + anon_sym_DOLLAR, + ACTIONS(3604), 1, + anon_sym_LBRACE, + ACTIONS(3607), 1, + anon_sym_DOT_DOT, + ACTIONS(3613), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1410), 1, + ACTIONS(3616), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1416), 1, + ACTIONS(3625), 1, anon_sym_0b, - ACTIONS(1422), 1, + ACTIONS(3631), 1, + sym_val_date, + ACTIONS(3634), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(3637), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(3640), 1, anon_sym_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(3643), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1436), 1, + ACTIONS(3646), 1, sym_raw_string_begin, - ACTIONS(1570), 1, - anon_sym_DOT_DOT, - ACTIONS(2706), 1, - anon_sym_DOLLAR, - ACTIONS(2708), 1, - anon_sym_LBRACE, - ACTIONS(2712), 1, - sym_val_date, - ACTIONS(3472), 1, - anon_sym_LBRACK, - STATE(1439), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1444), 1, - sym_comment, - STATE(3770), 1, + STATE(3901), 1, sym__val_number_decimal, - STATE(4065), 1, + STATE(4576), 1, sym_expr_parenthesized, - STATE(4066), 1, + STATE(4577), 1, sym_val_variable, - STATE(4444), 1, - sym__val_number, - STATE(4509), 1, - sym_val_bool, STATE(4612), 1, - sym__match_pattern_expression, - STATE(4613), 1, - sym__unquoted_in_list, - STATE(4912), 1, + sym__val_number, + STATE(4713), 1, sym__match_pattern_list, - ACTIONS(1384), 2, + STATE(5062), 1, + sym_val_bool, + ACTIONS(3586), 2, anon_sym_true, anon_sym_false, - ACTIONS(1406), 2, + ACTIONS(3610), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1412), 2, + ACTIONS(3619), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1418), 2, + ACTIONS(3628), 2, anon_sym_0o, anon_sym_0x, - STATE(4911), 2, + STATE(1445), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4712), 2, sym__match_pattern_value, sym_val_range, - STATE(5274), 2, + STATE(5043), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5257), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1388), 3, + ACTIONS(3592), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1414), 3, + ACTIONS(3622), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4913), 8, + STATE(4714), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -154597,33 +154933,21 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13510] = 11, + [13625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1846), 1, - sym__unquoted_pattern, - ACTIONS(3623), 1, - anon_sym_DOT_DOT2, - ACTIONS(3627), 1, - sym_filesize_unit, - ACTIONS(3629), 1, - sym_duration_unit, - STATE(1445), 1, + STATE(1446), 1, sym_comment, - STATE(5070), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3625), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 5, + ACTIONS(791), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(793), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154656,6 +154980,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, @@ -154665,14 +154990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13589] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [13689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3552), 1, + ACTIONS(3649), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3651), 1, aux_sym__immediate_decimal_token5, - STATE(1446), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1786), 7, + ACTIONS(1776), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154680,7 +155010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1784), 45, + ACTIONS(1774), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154693,9 +155024,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, @@ -154726,12 +155055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13655] = 4, + [13757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1447), 1, + STATE(1448), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154740,7 +155069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 45, + ACTIONS(761), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154786,24 +155115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13719] = 6, + [13821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3631), 1, - anon_sym_DOT, - ACTIONS(3633), 1, - aux_sym__immediate_decimal_token5, - STATE(1448), 1, + STATE(1449), 1, sym_comment, - ACTIONS(1786), 7, + ACTIONS(803), 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(1784), 44, + ACTIONS(805), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154848,21 +155174,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13787] = 4, + sym_duration_unit, + [13885] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + aux_sym__immediate_decimal_token5, + STATE(1450), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1790), 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, + ACTIONS(1788), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154907,23 +155237,22 @@ 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, - [13851] = 4, + [13953] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1450), 1, + ACTIONS(3584), 1, + aux_sym__immediate_decimal_token5, + STATE(1451), 1, sym_comment, - ACTIONS(866), 8, + ACTIONS(1790), 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(868), 45, - ts_builtin_sym_end, + ACTIONS(1788), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154936,7 +155265,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, @@ -154967,15 +155298,14 @@ 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, - [13915] = 5, + [14019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3635), 1, + ACTIONS(3657), 1, aux_sym__immediate_decimal_token5, - STATE(1451), 1, + STATE(1452), 1, sym_comment, - ACTIONS(1834), 7, + ACTIONS(1868), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154983,7 +155313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1832), 45, + ACTIONS(1866), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155029,16 +155359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13981] = 6, + [14085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3637), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3639), 1, - aux_sym__immediate_decimal_token5, - STATE(1452), 1, + STATE(1453), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(1776), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155046,8 +155372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 44, - ts_builtin_sym_end, + ACTIONS(1774), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155060,7 +155385,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, @@ -155091,59 +155418,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14049] = 22, + [14148] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3649), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3651), 1, + ACTIONS(3669), 1, anon_sym_STAR2, - STATE(1453), 1, + STATE(1454), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(4516), 1, - sym__command_name, - STATE(4522), 1, + STATE(4421), 1, sym_scope_pattern, - STATE(4524), 1, + STATE(4633), 1, + sym__command_name, + STATE(4636), 1, sym_wild_card, - STATE(4528), 1, + STATE(4642), 1, sym_command_list, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3647), 4, + ACTIONS(3665), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -155168,20 +155495,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14148] = 4, + [14247] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1454), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(3675), 1, + anon_sym_DOT_DOT2, + STATE(1455), 1, sym_comment, - ACTIONS(1921), 7, + ACTIONS(3677), 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, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1919), 45, + ACTIONS(2104), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155215,7 +155549,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, @@ -155225,22 +155558,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14211] = 4, + [14318] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1455), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(3679), 1, + anon_sym_DOT_DOT2, + STATE(1456), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(3681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 45, + ACTIONS(2114), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155274,7 +155612,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, @@ -155284,29 +155621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14274] = 8, + [14389] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(3657), 1, - anon_sym_DOT_DOT2, - STATE(1456), 1, + ACTIONS(3655), 1, + aux_sym__immediate_decimal_token5, + STATE(1457), 1, sym_comment, - ACTIONS(3659), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 5, + ACTIONS(1790), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155319,9 +155650,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, @@ -155340,6 +155669,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, @@ -155349,12 +155679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14345] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1457), 1, + STATE(1458), 1, sym_comment, - ACTIONS(1834), 7, + ACTIONS(1868), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155362,7 +155694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1832), 45, + ACTIONS(1866), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155408,27 +155740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14408] = 8, + [14517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(3661), 1, - anon_sym_DOT_DOT2, - STATE(1458), 1, + STATE(1459), 1, sym_comment, - ACTIONS(3663), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 5, + ACTIONS(1923), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2090), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1921), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155462,6 +155787,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, @@ -155471,14 +155797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14479] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3633), 1, + ACTIONS(3683), 1, aux_sym__immediate_decimal_token5, - STATE(1459), 1, + STATE(1460), 1, sym_comment, - ACTIONS(1786), 7, + ACTIONS(1868), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155486,7 +155814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1784), 44, + ACTIONS(1866), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155531,59 +155859,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14544] = 22, + [14645] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3649), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3651), 1, + ACTIONS(3669), 1, anon_sym_STAR2, - STATE(1460), 1, + STATE(1461), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(4477), 1, - sym_scope_pattern, - STATE(4516), 1, + STATE(4633), 1, sym__command_name, - STATE(4524), 1, + STATE(4635), 1, + sym_scope_pattern, + STATE(4636), 1, sym_wild_card, - STATE(4528), 1, + STATE(4642), 1, sym_command_list, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 4, + ACTIONS(3685), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -155608,67 +155936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14643] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3667), 1, - aux_sym__immediate_decimal_token5, - STATE(1461), 1, - sym_comment, - ACTIONS(1834), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14708] = 22, + [14744] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -155677,49 +155945,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(107), 1, sym_raw_string_begin, - ACTIONS(3673), 1, + ACTIONS(3691), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3675), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - ACTIONS(3677), 1, + ACTIONS(3695), 1, anon_sym_STAR2, STATE(1462), 1, sym_comment, - STATE(2023), 1, + STATE(2096), 1, sym__val_number_decimal, - STATE(4474), 1, + STATE(4427), 1, sym_cmd_identifier, - STATE(4478), 1, + STATE(4428), 1, sym_val_string, - STATE(4683), 1, + STATE(4705), 1, sym__command_name, - STATE(4692), 1, + STATE(4711), 1, sym_scope_pattern, - STATE(4696), 1, + STATE(4715), 1, sym_wild_card, - STATE(4697), 1, + STATE(4717), 1, sym_command_list, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, + ACTIONS(3687), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 3, + ACTIONS(3685), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(505), 4, + STATE(504), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3671), 24, + ACTIONS(3689), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -155744,100 +156012,204 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14806] = 20, + [14842] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(859), 1, - sym_raw_string_begin, - ACTIONS(3161), 1, - anon_sym_DQUOTE, - ACTIONS(3163), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_BQUOTE, - ACTIONS(3167), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3169), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(3697), 1, + anon_sym_DOT_DOT2, STATE(1463), 1, sym_comment, - STATE(2113), 1, - sym__val_number_decimal, - STATE(3135), 1, - sym__inter_single_quotes, - STATE(3139), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, + ACTIONS(3699), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2114), 41, + ts_builtin_sym_end, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2476), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3130), 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, - 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, - [14900] = 9, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [14912] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1464), 1, + sym_comment, + ACTIONS(1776), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14974] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3701), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3703), 1, + aux_sym__immediate_decimal_token5, + STATE(1465), 1, + sym_comment, + ACTIONS(1776), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1774), 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, + [15040] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, - anon_sym_DOT2, - STATE(430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(470), 1, - sym_path, - STATE(954), 1, - sym_cell_path, - STATE(1464), 1, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3707), 1, + aux_sym__immediate_decimal_token5, + STATE(1466), 1, sym_comment, - ACTIONS(1875), 5, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3683), 13, + sym__unquoted_pattern, + ACTIONS(1788), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155850,10 +156222,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, - ACTIONS(1872), 29, - anon_sym_in, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155872,6 +156242,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, @@ -155881,56 +156252,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14972] = 20, + [15106] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(964), 1, - sym_raw_string_begin, - ACTIONS(3378), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3380), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3382), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3384), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3386), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3687), 1, - anon_sym_LPAREN, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - STATE(1465), 1, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(3691), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3693), 1, + anon_sym_LBRACK, + ACTIONS(3695), 1, + anon_sym_STAR2, + STATE(1467), 1, sym_comment, - STATE(2143), 1, + STATE(2096), 1, sym__val_number_decimal, - STATE(3366), 1, - sym__inter_single_quotes, - STATE(3367), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3653), 2, + STATE(4427), 1, + sym_cmd_identifier, + STATE(4428), 1, + sym_val_string, + STATE(4689), 1, + sym_scope_pattern, + STATE(4705), 1, + sym__command_name, + STATE(4715), 1, + sym_wild_card, + STATE(4717), 1, + sym_command_list, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2564), 4, + ACTIONS(3687), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3665), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(504), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3229), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(39), 24, + ACTIONS(3689), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -155955,27 +156328,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15066] = 8, + [15204] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(3691), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(3709), 1, anon_sym_DOT_DOT2, - STATE(1466), 1, + STATE(1468), 1, sym_comment, - ACTIONS(3693), 2, + ACTIONS(3711), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 41, + ACTIONS(2104), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156017,24 +156390,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15136] = 6, + [15274] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3697), 1, - aux_sym__immediate_decimal_token5, - STATE(1467), 1, + ACTIONS(1886), 1, + anon_sym_DOT2, + STATE(438), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(472), 1, + sym_path, + STATE(959), 1, + sym_cell_path, + STATE(1469), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(1883), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1784), 43, - anon_sym_in, + ACTIONS(3713), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156047,63 +156422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_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, - [15202] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1468), 1, - sym_comment, - ACTIONS(1834), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 44, - ts_builtin_sym_end, + ACTIONS(1880), 29, 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, @@ -156123,7 +156444,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, @@ -156133,58 +156453,56 @@ 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, - [15264] = 20, + [15346] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(255), 1, aux_sym_cmd_identifier_token1, - ACTIONS(859), 1, + ACTIONS(885), 1, sym_raw_string_begin, - ACTIONS(3161), 1, + ACTIONS(3212), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(3214), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(3218), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3169), 1, + ACTIONS(3220), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, + ACTIONS(3717), 1, anon_sym_LPAREN, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - STATE(1469), 1, + STATE(1470), 1, sym_comment, - STATE(2113), 1, + STATE(2124), 1, sym__val_number_decimal, - STATE(3135), 1, + STATE(3179), 1, sym__inter_single_quotes, - STATE(3139), 1, + STATE(3180), 1, sym__inter_double_quotes, - ACTIONS(277), 2, + ACTIONS(281), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2476), 4, + STATE(2503), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3037), 5, + STATE(2988), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(271), 24, + ACTIONS(275), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156209,12 +156527,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15358] = 4, + [15440] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1470), 1, + STATE(1471), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(1868), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -156222,7 +156540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 44, + ACTIONS(1866), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156267,23 +156585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15420] = 6, + [15502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3699), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3701), 1, - aux_sym__immediate_decimal_token5, - STATE(1471), 1, + STATE(1472), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1923), 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), 43, + ACTIONS(1921), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156296,9 +156612,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, @@ -156327,124 +156641,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15486] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(3703), 1, - anon_sym_DOT_DOT2, - STATE(1472), 1, - sym_comment, - ACTIONS(3705), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2090), 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, - [15556] = 22, + [15564] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(984), 1, + sym_raw_string_begin, + ACTIONS(3436), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(3438), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(3440), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3673), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3677), 1, - anon_sym_STAR2, + ACTIONS(3442), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3444), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3721), 1, + anon_sym_LPAREN, + ACTIONS(3723), 1, + anon_sym_DOLLAR, STATE(1473), 1, sym_comment, - STATE(2023), 1, + STATE(2077), 1, sym__val_number_decimal, - STATE(4474), 1, - sym_cmd_identifier, - STATE(4478), 1, - sym_val_string, - STATE(4683), 1, - sym__command_name, - STATE(4696), 1, - sym_wild_card, - STATE(4697), 1, - sym_command_list, - STATE(4762), 1, - sym_scope_pattern, - ACTIONS(3653), 2, + STATE(3317), 1, + sym__inter_single_quotes, + STATE(3318), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, + STATE(2543), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3108), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 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, + [15658] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(255), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(885), 1, + sym_raw_string_begin, + ACTIONS(3212), 1, + anon_sym_DQUOTE, + ACTIONS(3214), 1, + anon_sym_SQUOTE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3218), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3220), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3717), 1, + anon_sym_LPAREN, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + STATE(1474), 1, + sym_comment, + STATE(2124), 1, + sym__val_number_decimal, + STATE(3179), 1, + sym__inter_single_quotes, + STATE(3180), 1, + sym__inter_double_quotes, + ACTIONS(281), 2, anon_sym_export, anon_sym_in, - ACTIONS(3665), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(505), 4, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2503), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3671), 24, + STATE(3125), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(275), 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, + [15752] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(3727), 1, + anon_sym_RBRACE, + ACTIONS(3729), 1, + sym_raw_string_begin, + STATE(1475), 1, + sym_comment, + STATE(1483), 1, + aux_sym__types_body_repeat2, + ACTIONS(3725), 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, @@ -156459,26 +156825,49 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15654] = 4, + 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, + [15819] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1474), 1, + ACTIONS(3731), 1, + anon_sym_DOT, + ACTIONS(3733), 1, + aux_sym__immediate_decimal_token5, + STATE(1476), 1, sym_comment, - ACTIONS(1921), 7, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1919), 44, + ACTIONS(1788), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156521,22 +156910,140 @@ 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, - [15716] = 7, - ACTIONS(103), 1, + [15884] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(3737), 1, + anon_sym_RBRACE, + ACTIONS(3739), 1, + sym_raw_string_begin, + STATE(1477), 1, + sym_comment, + STATE(1483), 1, + aux_sym__types_body_repeat2, + ACTIONS(3735), 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, + [15951] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(3729), 1, + sym_raw_string_begin, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(1478), 1, + sym_comment, + STATE(1483), 1, + aux_sym__types_body_repeat2, + ACTIONS(3725), 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, + [16018] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3709), 1, - anon_sym_RBRACE, - ACTIONS(3711), 1, + ACTIONS(3729), 1, sym_raw_string_begin, - STATE(1475), 1, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(1479), 1, sym_comment, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3707), 46, + ACTIONS(3725), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156583,20 +157090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15783] = 7, - ACTIONS(103), 1, + [16085] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3711), 1, + ACTIONS(3739), 1, sym_raw_string_begin, - ACTIONS(3713), 1, + ACTIONS(3743), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1480), 1, sym_comment, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3707), 46, + ACTIONS(3735), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156643,82 +157150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15850] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2362), 1, - anon_sym_DOT2, - STATE(669), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(703), 1, - sym_path, - STATE(1364), 1, - sym_cell_path, - STATE(1477), 1, - sym_comment, - ACTIONS(1875), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3683), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1872), 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, - [15921] = 7, - ACTIONS(103), 1, + [16152] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3718), 1, - anon_sym_RBRACE, - ACTIONS(3721), 1, + ACTIONS(3739), 1, sym_raw_string_begin, - STATE(1478), 1, + ACTIONS(3745), 1, + anon_sym_RBRACE, + STATE(1481), 1, sym_comment, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3715), 46, + ACTIONS(3735), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156765,20 +157210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15988] = 7, - ACTIONS(103), 1, + [16219] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3711), 1, - sym_raw_string_begin, - ACTIONS(3724), 1, + ACTIONS(3750), 1, anon_sym_RBRACE, - STATE(1479), 1, + ACTIONS(3753), 1, + sym_raw_string_begin, + STATE(1482), 1, sym_comment, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3707), 46, + ACTIONS(3747), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156825,79 +157270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16055] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3726), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3728), 1, - aux_sym__immediate_decimal_token5, - STATE(1480), 1, - sym_comment, - 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [16120] = 7, - ACTIONS(103), 1, + [16286] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(3758), 1, sym__entry_separator, - ACTIONS(3732), 1, - anon_sym_RBRACE, - ACTIONS(3734), 1, + ACTIONS(3761), 1, sym_raw_string_begin, - STATE(1481), 1, + STATE(1483), 2, sym_comment, - STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3730), 46, + ACTIONS(3756), 47, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156928,6 +157311,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, @@ -156944,79 +157328,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16187] = 6, - ACTIONS(3), 1, + [16349] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - aux_sym__immediate_decimal_token5, - STATE(1482), 1, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(3729), 1, + sym_raw_string_begin, + ACTIONS(3763), 1, + anon_sym_RBRACE, + STATE(1483), 1, + aux_sym__types_body_repeat2, + STATE(1484), 1, sym_comment, - ACTIONS(1786), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1784), 42, - ts_builtin_sym_end, + ACTIONS(3725), 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_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, - [16252] = 7, - ACTIONS(103), 1, + 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, + [16416] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3732), 1, - anon_sym_RBRACE, - ACTIONS(3734), 1, + ACTIONS(3753), 1, sym_raw_string_begin, + ACTIONS(3765), 1, + anon_sym_RBRACE, STATE(1483), 1, - sym_comment, - STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3730), 46, + STATE(1485), 1, + sym_comment, + ACTIONS(3747), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157063,17 +157448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16319] = 5, - ACTIONS(103), 1, + [16483] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3745), 1, + ACTIONS(3739), 1, sym_raw_string_begin, - STATE(1484), 2, - sym_comment, + ACTIONS(3768), 1, + anon_sym_RBRACE, + STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3740), 47, + STATE(1486), 1, + sym_comment, + ACTIONS(3735), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157104,7 +157492,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, @@ -157121,21 +157508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16382] = 5, + [16550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3747), 1, + ACTIONS(3707), 1, aux_sym__immediate_decimal_token5, - STATE(1485), 1, + STATE(1487), 1, sym_comment, - ACTIONS(1834), 6, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1832), 43, + ACTIONS(1788), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157179,80 +157566,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16445] = 7, - ACTIONS(103), 1, + [16613] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(3734), 1, - sym_raw_string_begin, - ACTIONS(3749), 1, + ACTIONS(3770), 1, + aux_sym__immediate_decimal_token5, + STATE(1488), 1, + sym_comment, + ACTIONS(1868), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1866), 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, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(1486), 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_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, + [16676] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2417), 1, + anon_sym_DOT2, + STATE(586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(737), 1, + sym_path, + STATE(1294), 1, + sym_cell_path, + STATE(1489), 1, sym_comment, - ACTIONS(3730), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, + ACTIONS(1883), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3713), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1880), 29, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_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, + [16747] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3774), 1, + aux_sym__immediate_decimal_token5, + STATE(1490), 1, + sym_comment, + ACTIONS(1776), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, 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, - [16512] = 7, - ACTIONS(103), 1, + sym__unquoted_pattern, + ACTIONS(1774), 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, + [16812] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3734), 1, + ACTIONS(3729), 1, sym_raw_string_begin, - ACTIONS(3751), 1, + ACTIONS(3776), 1, anon_sym_RBRACE, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - STATE(1487), 1, + STATE(1491), 1, sym_comment, - ACTIONS(3730), 46, + ACTIONS(3725), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157299,20 +157805,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16579] = 7, - ACTIONS(103), 1, + [16879] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3711), 1, + ACTIONS(3729), 1, sym_raw_string_begin, - ACTIONS(3753), 1, + ACTIONS(3763), 1, anon_sym_RBRACE, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - STATE(1488), 1, + STATE(1492), 1, sym_comment, - ACTIONS(3707), 46, + ACTIONS(3725), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157359,21 +157865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16646] = 5, + [16946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, - aux_sym__immediate_decimal_token5, - STATE(1489), 1, + STATE(1493), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(1923), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1784), 43, + ACTIONS(1921), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157417,20 +157921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16709] = 7, - ACTIONS(103), 1, + [17006] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3734), 1, + ACTIONS(3729), 1, sym_raw_string_begin, - ACTIONS(3749), 1, - anon_sym_RBRACE, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - STATE(1490), 1, + STATE(1494), 1, sym_comment, - ACTIONS(3730), 46, + ACTIONS(3725), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157477,80 +157979,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16776] = 7, - ACTIONS(103), 1, + [17070] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(3734), 1, - sym_raw_string_begin, - ACTIONS(3755), 1, - anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(1491), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, + STATE(1495), 1, sym_comment, - ACTIONS(3730), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, + ACTIONS(2678), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2676), 42, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_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, + [17134] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1496), 1, + sym_comment, + ACTIONS(2578), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, 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, - [16843] = 7, - ACTIONS(103), 1, + sym__unquoted_pattern, + ACTIONS(2576), 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, + [17194] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(3721), 1, + ACTIONS(3739), 1, sym_raw_string_begin, - ACTIONS(3757), 1, - anon_sym_RBRACE, - STATE(1484), 1, + STATE(1483), 1, aux_sym__types_body_repeat2, - STATE(1492), 1, + STATE(1497), 1, sym_comment, - ACTIONS(3715), 46, + ACTIONS(3735), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157597,22 +158151,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16910] = 6, + [17258] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, sym__unquoted_pattern, - STATE(1493), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(2606), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 42, + ACTIONS(2604), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157655,22 +158209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16974] = 6, + [17322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(2604), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, - STATE(1494), 1, + STATE(1499), 1, sym_comment, - ACTIONS(2600), 5, + ACTIONS(2116), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2598), 42, + ACTIONS(2114), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157713,22 +158267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17038] = 6, + [17386] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(1495), 1, + STATE(1500), 1, sym_comment, - ACTIONS(1218), 5, + ACTIONS(1242), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1216), 42, + ACTIONS(1258), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157771,22 +158325,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17102] = 6, + [17450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(1496), 1, + STATE(1501), 1, sym_comment, - ACTIONS(2576), 5, + ACTIONS(1234), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2574), 42, + ACTIONS(1250), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157829,22 +158383,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17166] = 5, + [17514] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3738), 1, - aux_sym__immediate_decimal_token5, - STATE(1497), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(1502), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(2698), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1784), 42, - ts_builtin_sym_end, + ACTIONS(2696), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157857,7 +158411,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, @@ -157876,7 +158432,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, @@ -157886,79 +158441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17228] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3764), 1, - sym__newline, - STATE(1498), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3760), 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(3762), 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, - [17290] = 6, + [17578] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(1499), 1, + STATE(1503), 1, sym_comment, - ACTIONS(1955), 5, + ACTIONS(1776), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 42, + sym__unquoted_pattern, + ACTIONS(1774), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157992,6 +158487,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, @@ -158001,18 +158497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17354] = 6, - ACTIONS(103), 1, + [17638] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(3711), 1, - sym_raw_string_begin, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(1500), 1, + STATE(1504), 1, sym_comment, - ACTIONS(3707), 46, + ACTIONS(3780), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3778), 47, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -158043,6 +158536,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, @@ -158059,21 +158553,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17418] = 5, + [17698] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3786), 1, + sym__newline, + STATE(1505), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3782), 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(3784), 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, + [17760] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3767), 1, + ACTIONS(3733), 1, aux_sym__immediate_decimal_token5, - STATE(1501), 1, + STATE(1506), 1, sym_comment, - ACTIONS(1834), 6, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1832), 42, + ACTIONS(1788), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158116,22 +158667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17480] = 6, + [17822] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - STATE(1502), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(1507), 1, sym_comment, - ACTIONS(2592), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2590), 42, + ACTIONS(2104), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158174,19 +158725,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17544] = 4, + [17886] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1503), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2718), 1, + anon_sym_LPAREN2, + STATE(1508), 1, sym_comment, - ACTIONS(2572), 6, + ACTIONS(2662), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2570), 43, + ACTIONS(2660), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158220,7 +158774,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, @@ -158230,77 +158783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17604] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(3734), 1, - sym_raw_string_begin, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(1504), 1, - sym_comment, - ACTIONS(3730), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_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, - [17668] = 4, + [17950] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1505), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(1509), 1, sym_comment, - ACTIONS(1834), 6, + ACTIONS(1616), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1832), 43, + ACTIONS(1738), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158334,7 +158832,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, @@ -158344,22 +158841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17728] = 6, + [18014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2588), 1, - anon_sym_LPAREN2, - STATE(1506), 1, + STATE(1510), 1, sym_comment, - ACTIONS(2586), 5, + ACTIONS(1868), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2584), 42, + sym__unquoted_pattern, + ACTIONS(1866), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158393,6 +158887,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, @@ -158402,22 +158897,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17792] = 6, + [18074] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(1507), 1, + ACTIONS(3789), 1, + aux_sym__immediate_decimal_token5, + STATE(1511), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(1868), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1714), 42, + sym__unquoted_pattern, + ACTIONS(1866), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158430,9 +158925,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, @@ -158451,6 +158944,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, @@ -158460,21 +158954,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17856] = 4, - ACTIONS(103), 1, + [18136] = 18, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1508), 1, - sym_comment, - ACTIONS(3771), 2, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3769), 47, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3791), 1, + anon_sym_LBRACK, + ACTIONS(3793), 1, + anon_sym_DOLLAR, + ACTIONS(3795), 1, + anon_sym_LBRACE, + STATE(1512), 1, + sym_comment, + STATE(2099), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3001), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3010), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 24, 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, @@ -158489,46 +159017,29 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17916] = 4, + [18223] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1509), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, + STATE(1513), 1, sym_comment, - ACTIONS(1921), 6, + ACTIONS(2678), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1919), 43, + ACTIONS(2676), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158541,9 +159052,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, @@ -158562,7 +159071,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, @@ -158572,22 +159080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17976] = 6, + [18286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(1510), 1, + STATE(1514), 1, sym_comment, - ACTIONS(2092), 5, + ACTIONS(1868), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2090), 42, + sym__unquoted_pattern, + ACTIONS(1866), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158600,9 +159106,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, @@ -158621,6 +159125,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, @@ -158630,70 +159135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18040] = 4, + [18345] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1511), 1, + STATE(1515), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1923), 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, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [18100] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - STATE(1512), 1, - sym_comment, - ACTIONS(884), 18, + sym__unquoted_pattern, + ACTIONS(1921), 42, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158705,18 +159161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(785), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -158727,34 +159172,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, - [18161] = 4, + [18404] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1513), 1, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern, + STATE(1516), 1, sym_comment, - ACTIONS(2572), 6, + ACTIONS(2606), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2570), 42, + ACTIONS(2604), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158787,7 +159238,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, @@ -158797,22 +159247,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18220] = 6, + [18467] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(1514), 1, + STATE(1517), 1, sym_comment, - ACTIONS(1955), 5, + ACTIONS(1242), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 41, + ACTIONS(1258), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158854,22 +159304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18283] = 6, + [18530] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(2604), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(1515), 1, + STATE(1518), 1, sym_comment, - ACTIONS(2600), 5, + ACTIONS(1234), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2598), 41, + ACTIONS(1250), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158911,123 +159361,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18346] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3673), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3773), 1, - anon_sym_LBRACK, - ACTIONS(3775), 1, - anon_sym_DOLLAR, - ACTIONS(3777), 1, - anon_sym_LBRACE, - ACTIONS(3779), 1, - anon_sym_DQUOTE, - ACTIONS(3781), 1, - anon_sym_SQUOTE, - ACTIONS(3783), 1, - anon_sym_BQUOTE, - ACTIONS(3785), 1, - sym_raw_string_begin, - STATE(1516), 1, - sym_comment, - STATE(2023), 1, - sym__val_number_decimal, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, - anon_sym_export, - anon_sym_in, - STATE(3292), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3303), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2389), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3671), 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, - [18433] = 21, - ACTIONS(3), 1, + [18593] = 20, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3791), 1, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3793), 1, - sym__newline, - ACTIONS(3795), 1, - anon_sym_RBRACK, - STATE(1517), 1, + ACTIONS(3797), 1, + anon_sym_DASH_DASH, + STATE(1519), 1, sym_comment, - STATE(1710), 1, - aux_sym__types_body_repeat1, - STATE(1766), 1, - aux_sym__command_list_body_repeat1, - STATE(2121), 1, + STATE(1730), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, sym__val_number_decimal, - STATE(4903), 1, - sym__command_name, - STATE(4999), 1, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, sym_cmd_identifier, - STATE(5002), 1, + STATE(3804), 1, sym_val_string, - STATE(5501), 1, - sym__command_list_body, - ACTIONS(3653), 2, + STATE(3917), 1, + sym__command_name, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, - anon_sym_export, - anon_sym_in, - STATE(3780), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3789), 24, + ACTIONS(3659), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159046,195 +159425,113 @@ static const uint16_t ts_small_parse_table[] = { 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, - [18526] = 18, + [18684] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3797), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(1518), 1, + STATE(1520), 1, sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - ACTIONS(3641), 2, - anon_sym_export, + ACTIONS(2578), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2576), 42, + ts_builtin_sym_end, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2984), 2, - sym_cmd_identifier, - sym_val_string, - STATE(2985), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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, - [18613] = 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_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, + [18743] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(107), 1, sym_raw_string_begin, - ACTIONS(3791), 1, + ACTIONS(3691), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3801), 1, - anon_sym_LBRACK, ACTIONS(3803), 1, - anon_sym_DOLLAR, + anon_sym_LBRACK, ACTIONS(3805), 1, + anon_sym_DOLLAR, + ACTIONS(3807), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(1521), 1, sym_comment, - STATE(2121), 1, + STATE(2096), 1, sym__val_number_decimal, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, - anon_sym_export, - anon_sym_in, - STATE(4980), 2, - sym_cmd_identifier, - sym_val_string, - STATE(5007), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3789), 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, - [18700] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3807), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_DOLLAR, - ACTIONS(3811), 1, - anon_sym_LBRACE, - STATE(1520), 1, - sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - ACTIONS(3641), 2, + ACTIONS(3687), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2984), 2, + STATE(3291), 2, sym_cmd_identifier, sym_val_string, - STATE(2985), 3, + STATE(3321), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2288), 4, + STATE(504), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3689), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159259,125 +159556,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [18787] = 4, + [18830] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1521), 1, - sym_comment, - ACTIONS(2754), 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(2756), 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, - [18846] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, STATE(1522), 1, sym_comment, - ACTIONS(2570), 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(2572), 29, - anon_sym_in, + ACTIONS(2586), 5, 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, - [18907] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - STATE(1523), 1, - sym_comment, - ACTIONS(2598), 18, + ACTIONS(3809), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159391,70 +159582,8 @@ static const uint16_t ts_small_parse_table[] = { 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(2600), 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, - [18968] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2588), 1, - anon_sym_LPAREN2, - STATE(1524), 1, - sym_comment, - ACTIONS(2586), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2584), 41, - ts_builtin_sym_end, + ACTIONS(2584), 29, 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, @@ -159483,22 +159612,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19031] = 6, + [18891] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3816), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3818), 1, + sym__newline, + ACTIONS(3820), 1, + anon_sym_RBRACK, + STATE(1523), 1, + sym_comment, + STATE(1718), 1, + aux_sym__types_body_repeat1, + STATE(1755), 1, + aux_sym__command_list_body_repeat1, + STATE(2131), 1, + sym__val_number_decimal, + STATE(4772), 1, + sym__command_name, + STATE(4993), 1, + sym_cmd_identifier, + STATE(4994), 1, + sym_val_string, + STATE(5125), 1, + sym__command_list_body, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3812), 2, + anon_sym_export, + anon_sym_in, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3814), 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, + [18984] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2580), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(1525), 1, + STATE(1524), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(1616), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1714), 41, + ACTIONS(1738), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -159540,51 +159741,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19094] = 18, + [19047] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1525), 1, + sym_comment, + ACTIONS(2626), 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(2628), 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, + [19106] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3809), 1, + ACTIONS(3793), 1, anon_sym_DOLLAR, - ACTIONS(3813), 1, + ACTIONS(3822), 1, anon_sym_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, STATE(1526), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2984), 2, + STATE(3001), 2, sym_cmd_identifier, sym_val_string, - STATE(2985), 3, + STATE(3010), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159609,51 +159865,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19181] = 18, + [19193] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(3791), 1, + ACTIONS(3816), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3819), 1, - anon_sym_DOLLAR, - ACTIONS(3821), 1, - anon_sym_LBRACE, + ACTIONS(3818), 1, + sym__newline, + ACTIONS(3826), 1, + anon_sym_RBRACK, STATE(1527), 1, sym_comment, - STATE(2121), 1, + STATE(1718), 1, + aux_sym__types_body_repeat1, + STATE(1755), 1, + aux_sym__command_list_body_repeat1, + STATE(2131), 1, sym__val_number_decimal, - ACTIONS(3653), 2, + STATE(4772), 1, + sym__command_name, + STATE(4993), 1, + sym_cmd_identifier, + STATE(4994), 1, + sym_val_string, + STATE(5250), 1, + sym__command_list_body, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, + ACTIONS(3812), 2, anon_sym_export, anon_sym_in, - STATE(4980), 2, - sym_cmd_identifier, - sym_val_string, - STATE(5007), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3789), 24, + ACTIONS(3814), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159678,20 +159937,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19268] = 4, + [19286] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(1528), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(811), 5, 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, + ACTIONS(914), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159704,7 +159963,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, @@ -159723,7 +159984,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, @@ -159733,24 +159993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19327] = 6, - ACTIONS(3), 1, + [19347] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, STATE(1529), 1, sym_comment, - ACTIONS(2092), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2090), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2576), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159762,7 +160012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2578), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -159773,36 +160034,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19390] = 5, - ACTIONS(3), 1, + [19408] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, STATE(1530), 1, sym_comment, - ACTIONS(2428), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3823), 14, - anon_sym_finally, + ACTIONS(2604), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159816,9 +160070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2426), 29, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2606), 29, anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -159829,108 +160090,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19451] = 21, + [19469] = 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(3791), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3793), 1, - sym__newline, - ACTIONS(3826), 1, - anon_sym_RBRACK, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, STATE(1531), 1, sym_comment, - STATE(1710), 1, - aux_sym__types_body_repeat1, - STATE(1766), 1, - aux_sym__command_list_body_repeat1, - STATE(2121), 1, - sym__val_number_decimal, - STATE(4903), 1, - sym__command_name, - STATE(4999), 1, - sym_cmd_identifier, - STATE(5002), 1, - sym_val_string, - STATE(5205), 1, - sym__command_list_body, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, - anon_sym_export, - anon_sym_in, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3789), 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, - [19544] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1532), 1, - sym_comment, - ACTIONS(1834), 6, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1832), 42, + ACTIONS(2104), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -159963,7 +160153,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, @@ -159973,18 +160162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19603] = 18, + [19532] = 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(3673), 1, + ACTIONS(3691), 1, aux_sym_cmd_identifier_token1, ACTIONS(3828), 1, anon_sym_LBRACK, @@ -159992,32 +160173,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(1533), 1, + ACTIONS(3834), 1, + anon_sym_DQUOTE, + ACTIONS(3836), 1, + anon_sym_SQUOTE, + ACTIONS(3838), 1, + anon_sym_BQUOTE, + ACTIONS(3840), 1, + sym_raw_string_begin, + STATE(1532), 1, sym_comment, - STATE(2023), 1, + STATE(2096), 1, sym__val_number_decimal, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, + ACTIONS(3687), 2, anon_sym_export, anon_sym_in, - STATE(3292), 2, + STATE(3291), 2, sym_cmd_identifier, sym_val_string, - STATE(3303), 3, + STATE(3321), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(505), 4, + STATE(2411), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3671), 24, + ACTIONS(3689), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160042,22 +160231,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19690] = 6, + [19619] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + STATE(1533), 1, + sym_comment, + ACTIONS(914), 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(811), 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, + [19680] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, STATE(1534), 1, sym_comment, - ACTIONS(1218), 5, + ACTIONS(2698), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1216), 41, + ACTIONS(2696), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -160099,51 +160344,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19753] = 18, + [19743] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3008), 1, + ACTIONS(3056), 1, anon_sym_DQUOTE, - ACTIONS(3010), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - ACTIONS(3012), 1, + ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(3020), 1, + ACTIONS(3068), 1, sym_raw_string_begin, - ACTIONS(3838), 1, + ACTIONS(3846), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3840), 1, + ACTIONS(3848), 1, anon_sym_LBRACK, - ACTIONS(3842), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR, - ACTIONS(3844), 1, + ACTIONS(3852), 1, anon_sym_LBRACE, STATE(1535), 1, sym_comment, - STATE(2122), 1, + STATE(2134), 1, sym__val_number_decimal, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3834), 2, + ACTIONS(3842), 2, anon_sym_export, anon_sym_in, - STATE(3506), 2, + STATE(3433), 2, sym_cmd_identifier, sym_val_string, - STATE(3507), 3, + STATE(3434), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2607), 4, + STATE(2599), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3836), 24, + ACTIONS(3844), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160168,20 +160413,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19840] = 5, + [19830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, STATE(1536), 1, sym_comment, - ACTIONS(785), 5, + ACTIONS(1776), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 42, + sym__unquoted_pattern, + ACTIONS(1774), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160194,9 +160439,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, @@ -160215,6 +160458,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, @@ -160224,19 +160468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19901] = 4, + [19889] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, STATE(1537), 1, sym_comment, - ACTIONS(1921), 6, + ACTIONS(2116), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1919), 42, + ACTIONS(2114), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -160269,7 +160516,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, @@ -160279,22 +160525,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19960] = 6, + [19952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(1711), 1, sym__unquoted_pattern, + ACTIONS(2718), 1, + anon_sym_LPAREN2, STATE(1538), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(2662), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 41, + ACTIONS(2660), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -160336,166 +160582,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20023] = 6, + [20015] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3856), 1, + anon_sym_LBRACE, STATE(1539), 1, sym_comment, - ACTIONS(2576), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2574), 41, - ts_builtin_sym_end, + STATE(2099), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + anon_sym_export, 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, - [20086] = 6, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3001), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3010), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 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, + [20102] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3816), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3858), 1, + anon_sym_LBRACK, + ACTIONS(3860), 1, + anon_sym_DOLLAR, + ACTIONS(3862), 1, + anon_sym_LBRACE, STATE(1540), 1, sym_comment, - ACTIONS(2592), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2590), 41, - ts_builtin_sym_end, + STATE(2131), 1, + sym__val_number_decimal, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3812), 2, + anon_sym_export, 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, - [20149] = 20, - ACTIONS(103), 1, + STATE(5078), 2, + sym_cmd_identifier, + sym_val_string, + STATE(5089), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3814), 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, + [20189] = 18, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3645), 1, + ACTIONS(3816), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_DOLLAR, + ACTIONS(3868), 1, + anon_sym_LBRACE, STATE(1541), 1, sym_comment, - STATE(1706), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, + STATE(2131), 1, sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3949), 1, - sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + ACTIONS(3812), 2, + anon_sym_export, + anon_sym_in, + STATE(5078), 2, + sym_cmd_identifier, + sym_val_string, + STATE(5089), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, - anon_sym_export, + ACTIONS(3814), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160514,36 +160783,41 @@ static const uint16_t ts_small_parse_table[] = { 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, - [20240] = 9, + [20276] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2967), 1, sym__newline, + ACTIONS(3870), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, STATE(1542), 1, sym_comment, - STATE(1657), 1, + STATE(1643), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(2838), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2690), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2688), 36, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2836), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160556,7 +160830,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, @@ -160575,45 +160848,43 @@ 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, - [20308] = 15, + [20350] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1543), 1, sym_comment, - STATE(4810), 1, + STATE(4728), 1, sym_block, - STATE(5043), 1, + STATE(4981), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160645,95 +160916,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20388] = 5, + [20430] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - sym__unquoted_pattern, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3894), 1, + anon_sym_LBRACE, STATE(1544), 1, sym_comment, - ACTIONS(785), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 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, - [20448] = 15, + STATE(4729), 1, + sym_block, + STATE(4985), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [20510] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1545), 1, sym_comment, - STATE(4823), 1, + STATE(4730), 1, sym_block, - STATE(5077), 1, + STATE(4988), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160765,40 +161046,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20528] = 15, + [20590] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1546), 1, sym_comment, - STATE(4755), 1, + STATE(4731), 1, sym_block, - STATE(5056), 1, + STATE(4991), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160830,40 +161111,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20608] = 15, + [20670] = 19, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3797), 1, + anon_sym_DASH_DASH, + STATE(1547), 1, + sym_comment, + STATE(1710), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, + sym__val_number_decimal, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(3892), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 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, + [20758] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(1548), 1, sym_comment, - STATE(4758), 1, + STATE(4431), 1, sym_block, - STATE(4935), 1, + STATE(5098), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160895,69 +161245,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20688] = 5, + [20838] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1548), 1, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(1549), 1, sym_comment, - ACTIONS(2428), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3823), 13, - ts_builtin_sym_end, - anon_sym_finally, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - 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(2426), 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, - [20748] = 5, - ACTIONS(103), 1, + STATE(4432), 1, + sym_block, + STATE(5099), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [20918] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - STATE(1549), 1, + STATE(1550), 1, sym_comment, - ACTIONS(2570), 17, + ACTIONS(2576), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -160975,7 +161335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2572), 29, + ACTIONS(2578), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -161005,14 +161365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20808] = 5, - ACTIONS(103), 1, + [20978] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - STATE(1550), 1, + STATE(1551), 1, sym_comment, - ACTIONS(2598), 17, + ACTIONS(2604), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -161030,7 +161390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2600), 29, + ACTIONS(2606), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -161060,40 +161420,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20868] = 15, + [21038] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(1552), 1, + sym_comment, + STATE(4468), 1, + sym_block, + STATE(5009), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [21118] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_comment, + STATE(4469), 1, + sym_block, + STATE(5100), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [21198] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(1554), 1, sym_comment, - STATE(4760), 1, + STATE(4481), 1, sym_block, - STATE(4947), 1, + STATE(4995), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161125,40 +161615,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20948] = 15, + [21278] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1552), 1, + STATE(1555), 1, sym_comment, - STATE(4761), 1, + STATE(4483), 1, sym_block, - STATE(4953), 1, + STATE(5007), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161190,95 +161680,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21028] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - STATE(1553), 1, - sym_comment, - ACTIONS(884), 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(785), 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, - [21088] = 15, + [21358] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1554), 1, + STATE(1556), 1, sym_comment, - STATE(4928), 1, + STATE(4485), 1, sym_block, - STATE(5058), 1, + STATE(5019), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161310,40 +161745,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21168] = 15, + [21438] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(1557), 1, sym_comment, - STATE(4813), 1, + STATE(4486), 1, sym_block, - STATE(5066), 1, + STATE(5030), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161375,40 +161810,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21248] = 15, + [21518] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1558), 1, sym_comment, - STATE(4814), 1, + STATE(4718), 1, sym_block, - STATE(5068), 1, + STATE(4943), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161440,40 +161875,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21328] = 15, + [21598] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1559), 1, sym_comment, - STATE(4815), 1, + STATE(4742), 1, sym_block, - STATE(5072), 1, + STATE(5000), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161505,178 +161940,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21408] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - STATE(1558), 1, - sym_comment, - STATE(1706), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3949), 1, - sym__command_name, - ACTIONS(3848), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 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, - [21496] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3846), 1, - anon_sym_DASH_DASH, - STATE(1559), 1, - sym_comment, - STATE(1729), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3964), 1, - sym__command_name, - ACTIONS(3848), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 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, - [21584] = 15, + [21678] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1560), 1, sym_comment, - STATE(4493), 1, + STATE(4800), 1, sym_block, - STATE(4941), 1, + STATE(4997), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161708,40 +162005,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21664] = 15, + [21758] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1561), 1, sym_comment, - STATE(4494), 1, + STATE(4807), 1, sym_block, - STATE(4945), 1, + STATE(5054), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161773,102 +162070,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21744] = 12, + [21838] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3874), 1, - anon_sym_DOT, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3896), 1, + anon_sym_LBRACE, STATE(1562), 1, sym_comment, - STATE(1881), 1, - sym__immediate_decimal, - ACTIONS(3876), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3878), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(727), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1620), 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, - [21818] = 15, + STATE(4514), 1, + sym_block, + STATE(5072), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [21918] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1563), 1, sym_comment, - STATE(4575), 1, + STATE(4515), 1, sym_block, - STATE(5078), 1, + STATE(5075), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161900,40 +162200,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21898] = 15, + [21998] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1564), 1, sym_comment, - STATE(4577), 1, + STATE(4517), 1, sym_block, - STATE(5081), 1, + STATE(5076), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -161965,40 +162265,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21978] = 15, + [22078] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1565), 1, sym_comment, - STATE(4595), 1, + STATE(4526), 1, sym_block, - STATE(4990), 1, + STATE(5077), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162030,40 +162330,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22058] = 15, + [22158] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1566), 1, sym_comment, - STATE(4596), 1, + STATE(4542), 1, sym_block, - STATE(5032), 1, + STATE(5091), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162095,40 +162395,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22138] = 15, + [22238] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1567), 1, sym_comment, - STATE(4598), 1, + STATE(4543), 1, sym_block, - STATE(4992), 1, + STATE(4935), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162160,40 +162460,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22218] = 15, + [22318] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1568), 1, sym_comment, - STATE(4599), 1, + STATE(4903), 1, sym_block, - STATE(5003), 1, + STATE(5055), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162225,40 +162525,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22298] = 15, + [22398] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1569), 1, sym_comment, - STATE(4631), 1, + STATE(4904), 1, sym_block, - STATE(5021), 1, + STATE(5057), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162290,40 +162590,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22378] = 15, + [22478] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1570), 1, sym_comment, - STATE(4632), 1, + STATE(4906), 1, sym_block, - STATE(4940), 1, + STATE(5060), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162355,40 +162655,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22458] = 15, + [22558] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1571), 1, sym_comment, - STATE(4633), 1, + STATE(4907), 1, sym_block, - STATE(4954), 1, + STATE(5063), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162420,40 +162720,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22538] = 15, + [22638] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1572), 1, sym_comment, - STATE(4635), 1, + STATE(4855), 1, sym_block, - STATE(4958), 1, + STATE(4979), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162485,40 +162785,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22618] = 15, + [22718] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1573), 1, sym_comment, - STATE(4665), 1, + STATE(4559), 1, sym_block, - STATE(4971), 1, + STATE(4977), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162550,40 +162850,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22698] = 15, + [22798] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1574), 1, sym_comment, - STATE(4666), 1, + STATE(4560), 1, sym_block, - STATE(4972), 1, + STATE(4982), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162615,40 +162915,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22778] = 15, + [22878] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1575), 1, sym_comment, - STATE(4827), 1, + STATE(4571), 1, sym_block, - STATE(4931), 1, + STATE(5052), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162680,40 +162980,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22858] = 15, + [22958] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1576), 1, sym_comment, - STATE(4834), 1, + STATE(4573), 1, sym_block, - STATE(4937), 1, + STATE(5056), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162745,40 +163045,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22938] = 15, + [23038] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, STATE(1577), 1, sym_comment, - STATE(4836), 1, + STATE(4860), 1, sym_block, - STATE(4949), 1, + STATE(4983), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162810,40 +163110,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23018] = 15, + [23118] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(1578), 1, sym_comment, - STATE(4363), 1, + STATE(4590), 1, sym_block, - STATE(5086), 1, + STATE(5014), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [23198] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(1579), 1, + sym_comment, + STATE(4591), 1, + sym_block, + STATE(5025), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162875,40 +163240,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23098] = 15, + [23278] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1579), 1, + STATE(1580), 1, sym_comment, - STATE(4364), 1, + STATE(4592), 1, sym_block, - STATE(5093), 1, + STATE(5028), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162940,40 +163305,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23178] = 15, + [23358] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1580), 1, + STATE(1581), 1, sym_comment, - STATE(4372), 1, + STATE(4593), 1, sym_block, - STATE(4938), 1, + STATE(5031), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163005,40 +163370,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23258] = 15, + [23438] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1581), 1, + STATE(1582), 1, sym_comment, - STATE(4373), 1, + STATE(4601), 1, sym_block, - STATE(4939), 1, + STATE(4937), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163070,40 +163435,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23338] = 15, + [23518] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(1582), 1, + STATE(1583), 1, sym_comment, - STATE(4842), 1, + STATE(4602), 1, sym_block, - STATE(4956), 1, + STATE(4948), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163135,40 +163500,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23418] = 15, + [23598] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + STATE(1584), 1, + sym_comment, + ACTIONS(914), 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(811), 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, + [23658] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1583), 1, + STATE(1585), 1, sym_comment, - STATE(4399), 1, + STATE(4721), 1, sym_block, - STATE(4977), 1, + STATE(4958), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163200,40 +163620,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23498] = 15, + [23738] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1584), 1, + STATE(1586), 1, sym_comment, - STATE(4400), 1, + STATE(4722), 1, sym_block, - STATE(4978), 1, + STATE(4960), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163265,40 +163685,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23578] = 15, + [23818] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1585), 1, + STATE(1587), 1, sym_comment, - STATE(4401), 1, + STATE(4724), 1, sym_block, - STATE(4979), 1, + STATE(4963), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163330,40 +163750,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23658] = 15, + [23898] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1586), 1, + STATE(1588), 1, sym_comment, - STATE(4402), 1, + STATE(4725), 1, sym_block, - STATE(4983), 1, + STATE(4972), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163395,40 +163815,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23738] = 15, + [23978] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1587), 1, + STATE(1589), 1, sym_comment, - STATE(4415), 1, + STATE(4794), 1, sym_block, - STATE(4991), 1, + STATE(5026), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163460,40 +163880,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23818] = 15, + [24058] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1588), 1, + STATE(1590), 1, sym_comment, - STATE(4421), 1, + STATE(4798), 1, sym_block, - STATE(4993), 1, + STATE(5032), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163525,40 +163945,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23898] = 15, + [24138] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1589), 1, + STATE(1591), 1, sym_comment, - STATE(4829), 1, + STATE(4791), 1, sym_block, - STATE(4936), 1, + STATE(5015), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163590,40 +164010,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23978] = 15, + [24218] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(1864), 1, + sym__unquoted_pattern, + STATE(1592), 1, + sym_comment, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(914), 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, + [24278] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3860), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1590), 1, + STATE(1593), 1, sym_comment, - STATE(4855), 1, + STATE(4793), 1, sym_block, - STATE(4951), 1, + STATE(5018), 1, sym_returns, - STATE(5164), 1, + STATE(5304), 1, sym__one_type, - STATE(5323), 1, + STATE(5308), 1, sym__multiple_types, - STATE(5363), 1, + STATE(5317), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163655,40 +164130,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [24058] = 13, + [24358] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1591), 1, + STATE(1594), 1, sym_comment, - STATE(1604), 1, + STATE(1608), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2734), 29, + ACTIONS(2840), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163718,35 +164193,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24134] = 12, + [24434] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1592), 1, + STATE(1595), 1, sym_comment, - STATE(1606), 1, + STATE(1609), 1, aux_sym__repeat_newline, - ACTIONS(2736), 2, + ACTIONS(2842), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3888), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2734), 33, + ACTIONS(2840), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163780,29 +164255,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24208] = 9, + [24508] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - STATE(1593), 1, + STATE(1596), 1, sym_comment, - STATE(1608), 1, + STATE(1611), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2736), 3, + ACTIONS(2842), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2734), 36, + ACTIONS(2840), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163839,25 +164314,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24276] = 7, + [24576] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - STATE(1594), 1, + STATE(1597), 1, sym_comment, - STATE(1610), 1, + STATE(1613), 1, aux_sym__repeat_newline, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2736), 5, + ACTIONS(2842), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2734), 38, + ACTIONS(2840), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163896,51 +164371,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24340] = 18, + [24640] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - STATE(1595), 1, + STATE(1598), 1, sym_comment, - STATE(1612), 1, + STATE(1615), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163949,7 +164424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2734), 14, + ACTIONS(2840), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163964,53 +164439,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24426] = 19, + [24726] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - STATE(1596), 1, + STATE(1599), 1, sym_comment, - STATE(1614), 1, + STATE(1617), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164019,7 +164494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2734), 13, + ACTIONS(2840), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164033,55 +164508,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [24514] = 20, + [24814] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - ACTIONS(3902), 1, + ACTIONS(3914), 1, anon_sym_xor2, - STATE(1597), 1, + STATE(1600), 1, sym_comment, - STATE(1616), 1, + STATE(1619), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164090,7 +164565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2734), 12, + ACTIONS(2840), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164103,40 +164578,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [24604] = 14, + [24904] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1598), 1, + STATE(1601), 1, sym_comment, - STATE(1618), 1, + STATE(1621), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164145,7 +164620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2734), 21, + ACTIONS(2840), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164167,44 +164642,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24682] = 11, + [24982] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3882), 1, - anon_sym_DASH2, - ACTIONS(3886), 1, - anon_sym_PLUS2, - STATE(1599), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3916), 1, + anon_sym_DOT, + STATE(1602), 1, sym_comment, - STATE(1620), 1, - aux_sym__repeat_newline, - ACTIONS(2736), 2, + STATE(1905), 1, + sym__immediate_decimal, + ACTIONS(3918), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(718), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3852), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, 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(2734), 35, + anon_sym_PLUS2, + ACTIONS(1642), 30, 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, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164223,59 +164695,42 @@ 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, - [24754] = 15, + [25056] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1600), 1, + STATE(1603), 1, sym_comment, - STATE(1622), 1, + STATE(1623), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(2842), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3892), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(2840), 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(2734), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164290,50 +164745,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24834] = 16, + [25128] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, - anon_sym_bit_DASHand2, - STATE(1601), 1, + STATE(1604), 1, sym_comment, - STATE(1624), 1, + STATE(1625), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164342,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(2734), 16, + ACTIONS(2840), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164357,51 +164827,50 @@ 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, - [24916] = 17, + [25208] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, - anon_sym_bit_DASHxor2, - STATE(1602), 1, + STATE(1605), 1, sym_comment, - STATE(1626), 1, + STATE(1627), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164410,7 +164879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2734), 15, + ACTIONS(2840), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164425,42 +164894,60 @@ 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, - [25000] = 13, + [25290] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1603), 1, + ACTIONS(3906), 1, + anon_sym_bit_DASHand2, + ACTIONS(3908), 1, + anon_sym_bit_DASHxor2, + STATE(1606), 1, sym_comment, - STATE(1640), 1, + STATE(1629), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2822), 29, + ACTIONS(3904), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3902), 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(2840), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164475,54 +164962,42 @@ 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, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25076] = 12, + [25374] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(2967), 1, + sym__newline, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(1604), 1, + STATE(1607), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + STATE(1642), 1, + aux_sym__repeat_newline, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2826), 30, + ACTIONS(2836), 29, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164551,36 +165026,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25150] = 12, + [25450] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3882), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(1605), 1, - sym_comment, - STATE(1641), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(2824), 2, + STATE(1608), 1, + sym_comment, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3888), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2822), 33, + ACTIONS(3928), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2844), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164602,10 +165081,6 @@ 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, @@ -164613,33 +165088,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25224] = 11, + [25524] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1606), 1, + STATE(1609), 1, sym_comment, - ACTIONS(2828), 2, + ACTIONS(2846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2826), 34, + ACTIONS(2844), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164674,29 +165149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25296] = 9, + [25596] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - STATE(1607), 1, + STATE(1610), 1, sym_comment, - STATE(1642), 1, + STATE(1644), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2824), 3, + ACTIONS(2838), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2822), 36, + ACTIONS(2836), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164733,27 +165208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25364] = 8, + [25664] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1608), 1, + STATE(1611), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2828), 3, + ACTIONS(2846), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2826), 37, + ACTIONS(2844), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164791,25 +165266,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25430] = 7, + [25730] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - STATE(1609), 1, + STATE(1612), 1, sym_comment, - STATE(1643), 1, + STATE(1645), 1, aux_sym__repeat_newline, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2824), 5, + ACTIONS(2838), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2822), 38, + ACTIONS(2836), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164848,23 +165323,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25494] = 6, + [25794] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1610), 1, + STATE(1613), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2828), 5, + ACTIONS(2846), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2826), 39, + ACTIONS(2844), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164904,51 +165379,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25556] = 18, + [25856] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - STATE(1611), 1, + STATE(1614), 1, sym_comment, - STATE(1644), 1, + STATE(1646), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164957,7 +165432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 14, + ACTIONS(2836), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164972,49 +165447,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25642] = 17, + [25942] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1612), 1, + STATE(1615), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165023,7 +165498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 15, + ACTIONS(2844), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165039,53 +165514,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25726] = 19, + [26026] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - STATE(1613), 1, + STATE(1616), 1, sym_comment, - STATE(1645), 1, + STATE(1647), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165094,7 +165569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 13, + ACTIONS(2836), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165108,51 +165583,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [25814] = 18, + [26114] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1617), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165161,7 +165636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 14, + ACTIONS(2844), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165176,55 +165651,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [25900] = 20, + [26200] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - ACTIONS(3902), 1, + ACTIONS(3914), 1, anon_sym_xor2, - STATE(1615), 1, + STATE(1618), 1, sym_comment, - STATE(1646), 1, + STATE(1648), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165233,7 +165708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 12, + ACTIONS(2836), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165246,53 +165721,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [25990] = 19, + [26290] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(3950), 1, anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1619), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165301,7 +165776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 13, + ACTIONS(2844), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165315,40 +165790,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [26078] = 14, + [26378] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1617), 1, + STATE(1620), 1, sym_comment, - STATE(1647), 1, + STATE(1649), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165357,7 +165832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 21, + ACTIONS(2836), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165379,38 +165854,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26156] = 13, + [26456] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1618), 1, + STATE(1621), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165419,7 +165894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 22, + ACTIONS(2844), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165442,32 +165917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26232] = 11, + [26532] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1619), 1, + STATE(1622), 1, sym_comment, - STATE(1648), 1, + STATE(1650), 1, aux_sym__repeat_newline, - ACTIONS(2824), 2, + ACTIONS(2838), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2822), 35, + ACTIONS(2836), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -165503,30 +165978,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26304] = 10, + [26604] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1623), 1, sym_comment, - ACTIONS(2828), 2, + ACTIONS(2846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2826), 36, + ACTIONS(2844), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165563,45 +166038,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26374] = 15, + [26674] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1621), 1, + STATE(1624), 1, sym_comment, - STATE(1649), 1, + STATE(1651), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165610,7 +166085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 17, + ACTIONS(2836), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165628,43 +166103,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26454] = 14, + [26754] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1625), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165673,7 +166148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 18, + ACTIONS(2844), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165692,47 +166167,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26532] = 16, + [26832] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - STATE(1623), 1, + STATE(1626), 1, sym_comment, - STATE(1650), 1, + STATE(1652), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165741,7 +166216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 16, + ACTIONS(2836), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165758,45 +166233,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26614] = 15, + [26914] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1627), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165805,7 +166280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 17, + ACTIONS(2844), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165823,49 +166298,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26694] = 17, + [26994] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - STATE(1625), 1, + STATE(1628), 1, sym_comment, - STATE(1651), 1, + STATE(1653), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165874,7 +166349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 15, + ACTIONS(2836), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165890,47 +166365,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26778] = 16, + [27078] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1626), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165939,7 +166414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2826), 16, + ACTIONS(2844), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165956,40 +166431,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26860] = 13, + [27160] = 19, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3797), 1, + anon_sym_DASH_DASH, + STATE(1630), 1, + sym_comment, + STATE(1730), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, + sym__val_number_decimal, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(3917), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 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, + [27248] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1627), 1, + STATE(1631), 1, sym_comment, - STATE(1653), 1, + STATE(1657), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(2730), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2688), 29, + ACTIONS(2728), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -166012,6 +166551,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, @@ -166019,35 +166562,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26936] = 12, + [27322] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, - anon_sym_DASH2, - ACTIONS(3886), 1, - anon_sym_PLUS2, - STATE(1628), 1, + STATE(1632), 1, sym_comment, - STATE(1655), 1, + STATE(1659), 1, aux_sym__repeat_newline, - ACTIONS(2690), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3888), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2688), 33, + ACTIONS(2730), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2728), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -166060,6 +166597,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, @@ -166078,28 +166616,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, - [27010] = 7, + [27390] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - STATE(1629), 1, + STATE(1633), 1, sym_comment, - STATE(1659), 1, + STATE(1661), 1, aux_sym__repeat_newline, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2690), 5, + ACTIONS(2730), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2688), 38, + ACTIONS(2728), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -166138,118 +166678,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27074] = 15, + [27454] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, + ACTIONS(2878), 1, + sym__newline, ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1630), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3906), 1, + anon_sym_bit_DASHand2, + ACTIONS(3908), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3910), 1, + anon_sym_bit_DASHor2, + STATE(1634), 1, sym_comment, - STATE(4759), 1, - sym_block, - STATE(5083), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [27154] = 19, + STATE(1663), 1, + aux_sym__repeat_newline, + ACTIONS(3872), 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(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3904), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3902), 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(2728), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [27540] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - STATE(1631), 1, + STATE(1635), 1, sym_comment, - STATE(1663), 1, + STATE(1665), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166258,7 +166801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 13, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166272,55 +166815,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [27242] = 20, + [27628] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - ACTIONS(3902), 1, + ACTIONS(3914), 1, anon_sym_xor2, - STATE(1632), 1, + STATE(1636), 1, sym_comment, - STATE(1665), 1, + STATE(1667), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166329,7 +166872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 12, + ACTIONS(2728), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166342,40 +166885,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [27332] = 14, + [27718] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1633), 1, + STATE(1637), 1, sym_comment, - STATE(1667), 1, + STATE(1669), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166384,7 +166927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 21, + ACTIONS(2728), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166406,32 +166949,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27410] = 11, + [27796] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1634), 1, + STATE(1638), 1, sym_comment, - STATE(1669), 1, + STATE(1671), 1, aux_sym__repeat_newline, - ACTIONS(2690), 2, + ACTIONS(2730), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2688), 35, + ACTIONS(2728), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -166467,110 +167010,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27482] = 15, + [27868] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1635), 1, - sym_comment, - STATE(4918), 1, - sym_block, - STATE(5033), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [27562] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1636), 1, + STATE(1639), 1, sym_comment, - STATE(1671), 1, + STATE(1673), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166579,7 +167057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 17, + ACTIONS(2728), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166597,47 +167075,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27642] = 16, + [27948] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - STATE(1637), 1, + STATE(1640), 1, sym_comment, - STATE(1673), 1, + STATE(1675), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166646,7 +167124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 16, + ACTIONS(2728), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166663,49 +167141,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27724] = 17, + [28030] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2878), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - STATE(1638), 1, + STATE(1641), 1, sym_comment, - STATE(1675), 1, + STATE(1677), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166714,7 +167192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 15, + ACTIONS(2728), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166730,103 +167208,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [27808] = 15, + [28114] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_comment, - STATE(4706), 1, - sym_block, - STATE(5011), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [27888] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1640), 1, + STATE(1642), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2790), 30, + ACTIONS(2720), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166857,33 +167270,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27962] = 11, + [28188] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1641), 1, + STATE(1643), 1, sym_comment, - ACTIONS(2792), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2790), 34, + ACTIONS(2720), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166918,27 +167331,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28034] = 8, + [28260] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1642), 1, + STATE(1644), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2792), 3, + ACTIONS(2722), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2790), 37, + ACTIONS(2720), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166976,23 +167389,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28100] = 6, + [28326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1643), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2792), 5, + ACTIONS(2722), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2790), 39, + ACTIONS(2720), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167032,49 +167445,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28162] = 17, + [28388] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1644), 1, + STATE(1646), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167083,7 +167496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 15, + ACTIONS(2720), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167099,51 +167512,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28246] = 18, + [28472] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1645), 1, + STATE(1647), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167152,7 +167565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 14, + ACTIONS(2720), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167167,53 +167580,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [28332] = 19, + [28558] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(3950), 1, anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1646), 1, + STATE(1648), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167222,7 +167635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 13, + ACTIONS(2720), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167236,38 +167649,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [28420] = 13, + [28646] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1647), 1, + STATE(1649), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167276,7 +167689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 22, + ACTIONS(2720), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167299,30 +167712,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28496] = 10, + [28722] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1648), 1, + STATE(1650), 1, sym_comment, - ACTIONS(2792), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 36, + ACTIONS(2720), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167359,43 +167772,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28566] = 14, + [28792] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1649), 1, + STATE(1651), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167404,7 +167817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 18, + ACTIONS(2720), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167423,45 +167836,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28644] = 15, + [28870] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1650), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167470,7 +167883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 17, + ACTIONS(2720), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167488,47 +167901,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28724] = 16, + [28950] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1651), 1, + STATE(1653), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167537,7 +167950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2790), 16, + ACTIONS(2720), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167554,40 +167967,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [28806] = 13, + [29032] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1652), 1, + STATE(1654), 1, sym_comment, - STATE(1676), 1, + STATE(1680), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2692), 29, + ACTIONS(2782), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -167617,38 +168030,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28882] = 12, + [29108] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1655), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2696), 30, + ACTIONS(2788), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167679,35 +168092,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28956] = 12, + [29182] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1654), 1, + STATE(1656), 1, sym_comment, - STATE(1677), 1, + STATE(1681), 1, aux_sym__repeat_newline, - ACTIONS(2694), 2, + ACTIONS(2784), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3888), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2692), 33, + ACTIONS(2782), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -167741,33 +168154,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29030] = 11, + [29256] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1655), 1, + STATE(1657), 1, sym_comment, - ACTIONS(2698), 2, + ACTIONS(2790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2696), 34, + ACTIONS(2788), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167802,29 +168215,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29102] = 9, + [29328] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - STATE(1656), 1, + STATE(1658), 1, sym_comment, - STATE(1678), 1, + STATE(1682), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2694), 3, + ACTIONS(2784), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2692), 36, + ACTIONS(2782), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -167861,27 +168274,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29170] = 8, + [29396] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1657), 1, + STATE(1659), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2698), 3, + ACTIONS(2790), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2696), 37, + ACTIONS(2788), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167919,25 +168332,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29236] = 7, + [29462] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - STATE(1658), 1, + STATE(1660), 1, sym_comment, - STATE(1679), 1, + STATE(1683), 1, aux_sym__repeat_newline, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2694), 5, + ACTIONS(2784), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2692), 38, + ACTIONS(2782), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -167976,23 +168389,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29300] = 6, + [29526] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1659), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2698), 5, + ACTIONS(2790), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2696), 39, + ACTIONS(2788), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -168032,51 +168445,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29362] = 18, + [29588] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - STATE(1660), 1, + STATE(1662), 1, sym_comment, - STATE(1680), 1, + STATE(1684), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168085,7 +168498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 14, + ACTIONS(2782), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168100,49 +168513,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29448] = 17, + [29674] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1663), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168151,7 +168564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 15, + ACTIONS(2788), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168167,53 +168580,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29532] = 19, + [29758] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - STATE(1662), 1, + STATE(1664), 1, sym_comment, - STATE(1681), 1, + STATE(1685), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168222,7 +168635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 13, + ACTIONS(2782), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168236,51 +168649,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [29620] = 18, + [29846] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1663), 1, + STATE(1665), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168289,7 +168702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 14, + ACTIONS(2788), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168304,55 +168717,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [29706] = 20, + [29932] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_bit_DASHor2, - ACTIONS(3900), 1, + ACTIONS(3912), 1, anon_sym_and2, - ACTIONS(3902), 1, + ACTIONS(3914), 1, anon_sym_xor2, - STATE(1664), 1, + STATE(1666), 1, sym_comment, - STATE(1682), 1, + STATE(1686), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168361,7 +168774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 12, + ACTIONS(2782), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168374,53 +168787,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [29796] = 19, + [30022] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(3950), 1, anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1665), 1, + STATE(1667), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168429,7 +168842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 13, + ACTIONS(2788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168443,40 +168856,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [29884] = 14, + [30110] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1666), 1, + STATE(1668), 1, sym_comment, - STATE(1683), 1, + STATE(1687), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168485,7 +168898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 21, + ACTIONS(2782), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168507,38 +168920,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29962] = 13, + [30188] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1667), 1, + STATE(1669), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168547,7 +168960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 22, + ACTIONS(2788), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168570,32 +168983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30038] = 11, + [30264] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1668), 1, + STATE(1670), 1, sym_comment, - STATE(1684), 1, + STATE(1688), 1, aux_sym__repeat_newline, - ACTIONS(2694), 2, + ACTIONS(2784), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2692), 35, + ACTIONS(2782), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -168631,30 +169044,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30110] = 10, + [30336] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1669), 1, + STATE(1671), 1, sym_comment, - ACTIONS(2698), 2, + ACTIONS(2790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2696), 36, + ACTIONS(2788), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -168691,45 +169104,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30180] = 15, + [30406] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1670), 1, + STATE(1672), 1, sym_comment, - STATE(1685), 1, + STATE(1689), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168738,7 +169151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 17, + ACTIONS(2782), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168756,43 +169169,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30260] = 14, + [30486] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1671), 1, + STATE(1673), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168801,7 +169214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 18, + ACTIONS(2788), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168820,47 +169233,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30338] = 16, + [30564] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - STATE(1672), 1, + STATE(1674), 1, sym_comment, - STATE(1686), 1, + STATE(1690), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168869,7 +169282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 16, + ACTIONS(2782), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168886,45 +169299,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30420] = 15, + [30646] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1673), 1, + STATE(1675), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168933,7 +169346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 17, + ACTIONS(2788), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168951,49 +169364,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30500] = 17, + [30726] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(3882), 1, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(3886), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3894), 1, + ACTIONS(3906), 1, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - STATE(1674), 1, + STATE(1676), 1, sym_comment, - STATE(1687), 1, + STATE(1691), 1, aux_sym__repeat_newline, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3902), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169002,7 +169415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 15, + ACTIONS(2782), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169018,47 +169431,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30584] = 16, + [30810] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1675), 1, + STATE(1677), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169067,7 +169480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 16, + ACTIONS(2788), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169084,38 +169497,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30666] = 12, + [30892] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(1678), 1, + sym_comment, + STATE(4828), 1, + sym_block, + STATE(4942), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [30972] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(1679), 1, + sym_comment, + STATE(4835), 1, + sym_block, + STATE(4950), 1, + sym_returns, + STATE(5304), 1, + sym__one_type, + STATE(5308), 1, + sym__multiple_types, + STATE(5317), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [31052] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1676), 1, + STATE(1680), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2796), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -169146,33 +169689,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30740] = 11, + [31126] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1677), 1, + STATE(1681), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2798), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2796), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -169207,27 +169750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30812] = 8, + [31198] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1678), 1, + STATE(1682), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2798), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2796), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -169265,23 +169808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30878] = 6, + [31264] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1679), 1, + STATE(1683), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2798), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2796), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -169321,49 +169864,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30940] = 17, + [31326] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1680), 1, + STATE(1684), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169372,7 +169915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, + ACTIONS(2796), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169388,51 +169931,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [31024] = 18, + [31410] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1681), 1, + STATE(1685), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169441,7 +169984,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(2796), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169456,53 +169999,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [31110] = 19, + [31496] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3948), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(3950), 1, anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1682), 1, + STATE(1686), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169511,7 +170054,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(2796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169525,38 +170068,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [31198] = 13, + [31584] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1683), 1, + STATE(1687), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169565,7 +170108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2796), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169588,30 +170131,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31274] = 10, + [31660] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1684), 1, + STATE(1688), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2798), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2796), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -169648,43 +170191,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31344] = 14, + [31730] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1685), 1, + STATE(1689), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169693,7 +170236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, + ACTIONS(2796), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169712,45 +170255,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31422] = 15, + [31808] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1686), 1, + STATE(1690), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169759,7 +170302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, + ACTIONS(2796), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169777,47 +170320,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31502] = 16, + [31888] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(1687), 1, + STATE(1691), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3926), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3930), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3932), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3936), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3928), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3938), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169826,7 +170369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 16, + ACTIONS(2796), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169843,296 +170386,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [31584] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_comment, - STATE(4902), 1, - sym_block, - STATE(5013), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [31664] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1689), 1, - sym_comment, - STATE(4694), 1, - sym_block, - STATE(4987), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [31744] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1690), 1, - sym_comment, - STATE(4737), 1, - sym_block, - STATE(5036), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [31824] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(1691), 1, - sym_comment, - STATE(4776), 1, - sym_block, - STATE(5025), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [31904] = 11, + [31970] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, STATE(1692), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2656), 31, + ACTIONS(2700), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -170164,31 +170447,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31976] = 10, + [32042] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, STATE(1693), 1, sym_comment, - ACTIONS(2658), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2656), 35, + ACTIONS(2700), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -170224,25 +170507,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32046] = 7, + [32112] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(1694), 1, sym_comment, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2658), 3, + ACTIONS(2702), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2656), 38, + ACTIONS(2700), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -170281,21 +170564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32110] = 5, + [32176] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(1695), 1, sym_comment, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2658), 5, + ACTIONS(2702), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2656), 40, + ACTIONS(2700), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -170336,47 +170619,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32170] = 16, + [32236] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, - ACTIONS(3954), 1, + ACTIONS(3972), 1, anon_sym_bit_DASHand2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_bit_DASHxor2, - ACTIONS(3958), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHor2, STATE(1696), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3970), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170385,7 +170668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 16, + ACTIONS(2700), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170402,49 +170685,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32252] = 17, + [32318] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, - ACTIONS(3954), 1, + ACTIONS(3972), 1, anon_sym_bit_DASHand2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_bit_DASHxor2, - ACTIONS(3958), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHor2, - ACTIONS(3960), 1, + ACTIONS(3978), 1, anon_sym_and2, STATE(1697), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3970), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170453,7 +170736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 15, + ACTIONS(2700), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170469,51 +170752,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [32336] = 18, + [32402] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, - ACTIONS(3954), 1, + ACTIONS(3972), 1, anon_sym_bit_DASHand2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_bit_DASHxor2, - ACTIONS(3958), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHor2, - ACTIONS(3960), 1, + ACTIONS(3978), 1, anon_sym_and2, - ACTIONS(3962), 1, + ACTIONS(3980), 1, anon_sym_xor2, STATE(1698), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3970), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170522,7 +170805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 14, + ACTIONS(2700), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170537,36 +170820,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [32422] = 12, + [32488] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, STATE(1699), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170575,7 +170858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 23, + ACTIONS(2700), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170599,28 +170882,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32496] = 9, + [32562] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, STATE(1700), 1, sym_comment, - ACTIONS(2658), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2656), 37, + ACTIONS(2700), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -170658,41 +170941,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32564] = 13, + [32630] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, STATE(1701), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3970), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170701,7 +170984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 19, + ACTIONS(2700), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170721,43 +171004,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32640] = 14, + [32706] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, - ACTIONS(3954), 1, + ACTIONS(3972), 1, anon_sym_bit_DASHand2, STATE(1702), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3970), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170766,7 +171049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 18, + ACTIONS(2700), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170785,45 +171068,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32718] = 15, + [32784] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, - ACTIONS(3954), 1, + ACTIONS(3972), 1, anon_sym_bit_DASHand2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_bit_DASHxor2, STATE(1703), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(3966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3958), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3970), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3968), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170832,7 +171115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 17, + ACTIONS(2700), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170850,116 +171133,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [32798] = 15, + [32864] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3870), 1, - anon_sym_LBRACE, STATE(1704), 1, sym_comment, - STATE(4746), 1, - sym_block, - STATE(5097), 1, - sym_returns, - STATE(5164), 1, - sym__one_type, - STATE(5323), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [32878] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2586), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3809), 13, + ts_builtin_sym_end, + anon_sym_finally, sym__newline, - ACTIONS(3882), 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, + ACTIONS(2584), 29, + anon_sym_in, anon_sym_DASH2, - ACTIONS(3886), 1, - anon_sym_PLUS2, - ACTIONS(3894), 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, anon_sym_bit_DASHor2, - STATE(1661), 1, + [32924] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(3870), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + STATE(1655), 1, aux_sym__repeat_newline, STATE(1705), 1, sym_comment, - ACTIONS(3852), 2, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3898), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3888), 2, + ACTIONS(3900), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2728), 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, + [33000] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3986), 1, + anon_sym_DASH2, + ACTIONS(3998), 1, + anon_sym_PLUS2, + ACTIONS(4002), 1, + anon_sym_bit_DASHand2, + ACTIONS(4004), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4006), 1, + anon_sym_bit_DASHor2, + STATE(1706), 1, + sym_comment, + ACTIONS(3984), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3988), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3892), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3890), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170968,7 +171300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 14, + ACTIONS(2700), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170979,122 +171313,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_and2, anon_sym_xor2, anon_sym_or2, - [32964] = 19, + [33081] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, - anon_sym_DASH_DASH, - STATE(1706), 1, - sym_comment, - STATE(1986), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3953), 1, - sym__command_name, - ACTIONS(3641), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, + ACTIONS(4008), 1, anon_sym_DASH_DASH, STATE(1707), 1, sym_comment, STATE(1732), 1, aux_sym_decl_def_repeat1, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2173), 1, sym_long_flag, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(3957), 1, + STATE(3928), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171119,317 +171384,170 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33138] = 19, + [33168] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, - anon_sym_DASH_DASH, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1711), 1, + sym__unquoted_pattern, STATE(1708), 1, sym_comment, - STATE(1727), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3926), 1, - sym__command_name, - ACTIONS(3641), 2, - anon_sym_export, + STATE(2003), 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(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1689), 30, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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, - [33225] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(3968), 1, - anon_sym_RBRACK, - STATE(1709), 1, - sym_comment, - STATE(1748), 1, - aux_sym__types_body_repeat1, - STATE(1857), 1, - aux_sym__types_body_repeat3, - STATE(4787), 1, - sym__one_type, - STATE(5257), 1, - sym__type_annotation, - STATE(5379), 1, - sym__types_body, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [33302] = 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(3791), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3793), 1, sym__newline, - STATE(1710), 1, - sym_comment, - STATE(1765), 1, - aux_sym__command_list_body_repeat1, - STATE(2121), 1, - sym__val_number_decimal, - STATE(2149), 1, - aux_sym__types_body_repeat1, - STATE(4819), 1, - sym__command_name, - STATE(4999), 1, - sym_cmd_identifier, - STATE(5002), 1, - sym_val_string, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, - anon_sym_export, - anon_sym_in, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3789), 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, - [33389] = 19, + 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, + [33239] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, - anon_sym_DASH_DASH, - STATE(1711), 1, + ACTIONS(3986), 1, + anon_sym_DASH2, + ACTIONS(3998), 1, + anon_sym_PLUS2, + STATE(1709), 1, sym_comment, - STATE(1712), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3898), 1, - sym__command_name, - ACTIONS(3641), 2, - anon_sym_export, + ACTIONS(3984), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3988), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4000), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3990), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2700), 30, + ts_builtin_sym_end, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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, - [33476] = 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_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, + [33310] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, + ACTIONS(4008), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1710), 1, sym_comment, - STATE(1986), 1, + STATE(1978), 1, aux_sym_decl_def_repeat1, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2173), 1, sym_long_flag, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(3918), 1, + STATE(3958), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171454,36 +171572,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33563] = 11, + [33397] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, - STATE(1713), 1, + STATE(1711), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2656), 30, + ACTIONS(2700), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -171507,6 +171620,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, @@ -171514,31 +171631,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33634] = 10, + [33466] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_DASH2, - ACTIONS(3982), 1, - anon_sym_PLUS2, - STATE(1714), 1, + STATE(1712), 1, sym_comment, - ACTIONS(2658), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2656), 34, + ACTIONS(2702), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2700), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -171552,6 +171663,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, @@ -171570,28 +171682,89 @@ 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, - [33703] = 7, + [33529] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1715), 1, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(4016), 1, + anon_sym_RBRACK, + STATE(1713), 1, sym_comment, - ACTIONS(3974), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3978), 2, + STATE(1758), 1, + aux_sym__types_body_repeat1, + STATE(1846), 1, + aux_sym__types_body_repeat3, + STATE(4894), 1, + sym__one_type, + STATE(5261), 1, + sym__type_annotation, + STATE(5394), 1, + sym__types_body, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [33606] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1714), 1, + sym_comment, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2658), 3, + ACTIONS(2702), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2656), 37, + ACTIONS(2700), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -171624,40 +171797,46 @@ 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, - [33766] = 5, + [33665] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1716), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + STATE(1715), 1, sym_comment, - ACTIONS(3978), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2658), 5, + STATE(2016), 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(925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2656), 39, - ts_builtin_sym_end, + ACTIONS(1642), 30, 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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171676,6 +171855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -171683,47 +171864,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33825] = 16, + [33736] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, - ACTIONS(3990), 1, + ACTIONS(4002), 1, anon_sym_bit_DASHand2, - ACTIONS(3992), 1, + ACTIONS(4004), 1, anon_sym_bit_DASHxor2, - ACTIONS(3994), 1, + ACTIONS(4006), 1, anon_sym_bit_DASHor2, - STATE(1717), 1, + ACTIONS(4018), 1, + anon_sym_and2, + STATE(1716), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171732,7 +171915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 15, + ACTIONS(2700), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171745,52 +171928,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33906] = 17, + [33819] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, - ACTIONS(3990), 1, + ACTIONS(4002), 1, anon_sym_bit_DASHand2, - ACTIONS(3992), 1, + ACTIONS(4004), 1, anon_sym_bit_DASHxor2, - ACTIONS(3994), 1, + ACTIONS(4006), 1, anon_sym_bit_DASHor2, - ACTIONS(3996), 1, + ACTIONS(4018), 1, anon_sym_and2, - STATE(1718), 1, + ACTIONS(4020), 1, + anon_sym_xor2, + STATE(1717), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171799,7 +171983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 14, + ACTIONS(2700), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171812,105 +171996,173 @@ static const uint16_t 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, - [33989] = 18, + [33904] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_DASH2, - ACTIONS(3982), 1, - anon_sym_PLUS2, - ACTIONS(3990), 1, - anon_sym_bit_DASHand2, - ACTIONS(3992), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3994), 1, - anon_sym_bit_DASHor2, - ACTIONS(3996), 1, - anon_sym_and2, - ACTIONS(3998), 1, - anon_sym_xor2, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3816), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3818), 1, + sym__newline, + STATE(1718), 1, + sym_comment, + STATE(1775), 1, + aux_sym__command_list_body_repeat1, + STATE(2076), 1, + aux_sym__types_body_repeat1, + STATE(2131), 1, + sym__val_number_decimal, + STATE(4916), 1, + sym__command_name, + STATE(4993), 1, + sym_cmd_identifier, + STATE(4994), 1, + sym_val_string, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3812), 2, + anon_sym_export, + anon_sym_in, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3814), 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, + [33991] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4008), 1, + anon_sym_DASH_DASH, STATE(1719), 1, sym_comment, - ACTIONS(3970), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3974), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3978), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3988), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + STATE(1978), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, + sym__val_number_decimal, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(3910), 1, + sym__command_name, + ACTIONS(3659), 2, + anon_sym_export, 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(2656), 13, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [34074] = 12, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 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, + [34078] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, STATE(1720), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3986), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171919,7 +172171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 22, + ACTIONS(2700), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171942,28 +172194,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34147] = 9, + [34151] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, STATE(1721), 1, sym_comment, - ACTIONS(2658), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2656), 36, + ACTIONS(2700), 36, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -172000,41 +172252,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34214] = 13, + [34218] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, STATE(1722), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -172043,7 +172295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 18, + ACTIONS(2700), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -172062,43 +172314,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34289] = 14, + [34293] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, - ACTIONS(3990), 1, + ACTIONS(4002), 1, anon_sym_bit_DASHand2, STATE(1723), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -172107,7 +172359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 17, + ACTIONS(2700), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -172125,45 +172377,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34366] = 15, + [34370] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, - ACTIONS(3990), 1, + ACTIONS(4002), 1, anon_sym_bit_DASHand2, - ACTIONS(3992), 1, + ACTIONS(4004), 1, anon_sym_bit_DASHxor2, STATE(1724), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -172172,384 +172424,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 16, + ACTIONS(2700), 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, - [34445] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(4000), 1, - anon_sym_DOT, - STATE(1725), 1, - sym_comment, - STATE(1937), 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(2013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1620), 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, - [34518] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(1726), 1, - sym_comment, - STATE(1971), 1, - sym__immediate_decimal, - ACTIONS(4006), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4008), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(768), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1620), 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, - [34589] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, - anon_sym_DASH_DASH, - STATE(1727), 1, - sym_comment, - STATE(1986), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3901), 1, - sym__command_name, - ACTIONS(3641), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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, - [34676] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1653), 1, - sym__unquoted_pattern, - STATE(1728), 1, - sym_comment, - STATE(1999), 1, - sym__immediate_decimal, - ACTIONS(4006), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4008), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1647), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1645), 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, - [34747] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, - anon_sym_DASH_DASH, - STATE(1729), 1, - sym_comment, - STATE(1986), 1, - aux_sym_decl_def_repeat1, - STATE(2057), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(3891), 1, - sym__command_name, - ACTIONS(3641), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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, - [34834] = 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [34449] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, + ACTIONS(4008), 1, anon_sym_DASH_DASH, - STATE(1730), 1, + STATE(1725), 1, sym_comment, - STATE(1731), 1, + STATE(1978), 1, aux_sym_decl_def_repeat1, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2173), 1, sym_long_flag, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(3951), 1, + STATE(3972), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172574,50 +172509,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34921] = 19, + [34536] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, + ACTIONS(4008), 1, anon_sym_DASH_DASH, - STATE(1731), 1, - sym_comment, - STATE(1986), 1, + STATE(1725), 1, aux_sym_decl_def_repeat1, - STATE(2057), 1, + STATE(1726), 1, + sym_comment, + STATE(2099), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2173), 1, sym_long_flag, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(3955), 1, + STATE(3885), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172642,50 +172577,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35008] = 19, + [34623] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3964), 1, + ACTIONS(4008), 1, anon_sym_DASH_DASH, - STATE(1732), 1, - sym_comment, - STATE(1986), 1, + STATE(1719), 1, aux_sym_decl_def_repeat1, - STATE(2057), 1, + STATE(1727), 1, + sym_comment, + STATE(2099), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2173), 1, sym_long_flag, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(3960), 1, + STATE(3884), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172710,36 +172645,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35095] = 11, + [34710] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1624), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(4022), 1, anon_sym_DOT, - STATE(1733), 1, + STATE(1728), 1, sym_comment, - STATE(2006), 1, + STATE(1911), 1, sym__immediate_decimal, - ACTIONS(4002), 2, + ACTIONS(4024), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(4026), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2013), 2, + STATE(1996), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 6, + ACTIONS(1644), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1620), 29, + ACTIONS(1642), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -172769,46 +172706,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35165] = 17, - ACTIONS(103), 1, + [34783] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1734), 1, + ACTIONS(4008), 1, + anon_sym_DASH_DASH, + STATE(1729), 1, sym_comment, - STATE(2057), 1, + STATE(1731), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5381), 1, + STATE(3920), 1, sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3659), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, - anon_sym_export, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172827,225 +172768,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35247] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(1735), 1, - sym_comment, - STATE(2080), 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(768), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1620), 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, - [35317] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1653), 1, - sym__unquoted_pattern, - STATE(1736), 1, - sym_comment, - STATE(2083), 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(805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1647), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1645), 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, - [35387] = 6, + [34870] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4016), 1, - aux_sym__immediate_decimal_token5, - STATE(1737), 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, - [35447] = 17, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1738), 1, + ACTIONS(4008), 1, + anon_sym_DASH_DASH, + STATE(1730), 1, sym_comment, - STATE(2057), 1, + STATE(1978), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(4615), 1, + STATE(3922), 1, sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3659), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, - anon_sym_export, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173064,32 +172836,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35529] = 8, + [34957] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_DOT2, - STATE(1739), 1, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4008), 1, + anon_sym_DASH_DASH, + STATE(1731), 1, sym_comment, - STATE(1783), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1860), 1, - sym_path, - STATE(1900), 1, - sym_cell_path, - ACTIONS(1691), 3, + STATE(1978), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, + sym__val_number_decimal, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(3925), 1, + sym__command_name, + ACTIONS(3659), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1689), 38, - sym_raw_string_begin, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173114,51 +172910,97 @@ 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, + [35044] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4008), 1, + anon_sym_DASH_DASH, + STATE(1732), 1, + sym_comment, + STATE(1978), 1, + aux_sym_decl_def_repeat1, + STATE(2099), 1, + sym__val_number_decimal, + STATE(2173), 1, + sym_long_flag, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(3934), 1, + sym__command_name, + ACTIONS(3659), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [35593] = 11, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 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, + [35131] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1608), 1, - anon_sym_DOT, - STATE(1740), 1, - sym_comment, - STATE(2012), 1, - sym__immediate_decimal, - ACTIONS(4002), 2, + ACTIONS(4028), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2011), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 6, + ACTIONS(4030), 1, + aux_sym__immediate_decimal_token5, + STATE(1733), 1, + sym_comment, + ACTIONS(759), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1600), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 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, @@ -173177,6 +173019,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, @@ -173186,24 +173029,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35663] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35191] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4018), 1, + ACTIONS(4032), 1, anon_sym_DOT2, - STATE(1741), 1, + STATE(1734), 1, sym_comment, - STATE(1783), 1, + STATE(1761), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1860), 1, + STATE(1851), 1, sym_path, - STATE(1883), 1, + STATE(1898), 1, sym_cell_path, - ACTIONS(1442), 3, + ACTIONS(1671), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1444), 38, + ACTIONS(1669), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173242,25 +173088,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35727] = 8, - ACTIONS(3), 1, + [35255] = 17, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_DOT2, - STATE(1742), 1, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1735), 1, sym_comment, - STATE(1783), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1860), 1, - sym_path, - STATE(1886), 1, - sym_cell_path, - ACTIONS(1677), 3, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(5299), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1675), 38, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173279,65 +173146,32 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [35791] = 17, - ACTIONS(103), 1, + [35337] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1743), 1, + ACTIONS(4032), 1, + anon_sym_DOT2, + STATE(1736), 1, sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(4023), 1, - sym__command_name, - ACTIONS(3848), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 26, + STATE(1761), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1851), 1, + sym_path, + STATE(1883), 1, + sym_cell_path, + ACTIONS(1466), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1468), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173356,36 +173190,57 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35873] = 6, + 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, + [35401] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4020), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1646), 1, anon_sym_DOT, - ACTIONS(4022), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + STATE(1737), 1, sym_comment, - ACTIONS(739), 8, + STATE(1985), 1, + sym__immediate_decimal, + ACTIONS(4024), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4026), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1996), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(1642), 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, @@ -173404,7 +173259,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, @@ -173414,26 +173268,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35933] = 7, + [35471] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4024), 1, + ACTIONS(4034), 1, anon_sym_QMARK2, - ACTIONS(4026), 1, + ACTIONS(4036), 1, anon_sym_BANG, - STATE(1745), 1, + STATE(1738), 1, sym_comment, - STATE(1866), 1, + STATE(1868), 1, sym__path_suffix, - ACTIONS(1448), 4, + ACTIONS(1472), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1450), 38, + ACTIONS(1474), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173472,22 +173323,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35995] = 6, - ACTIONS(3), 1, + [35533] = 17, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_DOT2, - STATE(1860), 1, - sym_path, - STATE(1746), 2, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1739), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1536), 3, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(4625), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1538), 38, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173506,33 +173381,23 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [36054] = 5, + [35615] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4031), 1, + ACTIONS(4038), 1, + anon_sym_DOT, + ACTIONS(4040), 1, aux_sym__immediate_decimal_token5, - STATE(1747), 1, + STATE(1740), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(751), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -173541,7 +173406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 35, + ACTIONS(753), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -173577,93 +173442,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36111] = 12, + [35675] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(3966), 1, - sym__newline, - STATE(1748), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + STATE(1741), 1, sym_comment, - STATE(1850), 1, - aux_sym__types_body_repeat3, - STATE(1988), 1, - aux_sym__types_body_repeat1, - STATE(4693), 1, - sym__one_type, - STATE(5257), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [36182] = 10, + STATE(2102), 1, + sym__immediate_decimal, + ACTIONS(4042), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4044), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1642), 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, + [35745] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(972), 1, - sym__immediate_decimal, - STATE(1749), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + STATE(1742), 1, sym_comment, - ACTIONS(4010), 2, + STATE(2105), 1, + sym__immediate_decimal, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(768), 2, + STATE(747), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 6, + ACTIONS(1691), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1620), 29, + ACTIONS(1689), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -173693,27 +173560,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36249] = 6, + [35815] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1743), 1, + sym_comment, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(4007), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 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, + [35897] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4033), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4035), 1, - aux_sym__immediate_decimal_token5, - STATE(1750), 1, + ACTIONS(4032), 1, + anon_sym_DOT2, + STATE(1744), 1, + sym_comment, + STATE(1761), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1851), 1, + sym_path, + STATE(1903), 1, + sym_cell_path, + ACTIONS(1705), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1703), 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, + [35961] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + anon_sym_DOT, + STATE(1745), 1, sym_comment, - ACTIONS(747), 8, + STATE(1995), 1, + sym__immediate_decimal, + ACTIONS(4024), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4026), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1994), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 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), 34, + ACTIONS(1628), 29, anon_sym_in, - anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -173733,7 +173731,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, @@ -173743,27 +173740,24 @@ 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, - [36308] = 8, + [36031] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4046), 1, anon_sym_DOT2, - STATE(1751), 1, + STATE(1746), 1, sym_comment, - STATE(1792), 1, + STATE(1796), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1893), 1, + STATE(1906), 1, sym_path, - STATE(1911), 1, + STATE(1917), 1, sym_cell_path, - ACTIONS(1691), 3, + ACTIONS(1671), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1689), 37, + ACTIONS(1669), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173801,18 +173795,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36371] = 4, + [36094] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1747), 1, + sym_comment, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(4007), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 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, + [36173] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1752), 1, + ACTIONS(4046), 1, + anon_sym_DOT2, + STATE(1748), 1, sym_comment, - ACTIONS(1468), 4, + STATE(1796), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1906), 1, + sym_path, + STATE(1908), 1, + sym_cell_path, + ACTIONS(1466), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1470), 40, + ACTIONS(1468), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173840,8 +173905,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, @@ -173850,46 +173913,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [36426] = 16, - ACTIONS(103), 1, + [36236] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1749), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5394), 1, + STATE(4625), 1, sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, + ACTIONS(3659), 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, + [36315] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1750), 1, + sym_comment, + STATE(1790), 1, + aux_sym__types_body_repeat1, + STATE(1890), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4765), 1, + sym__all_type, + STATE(5196), 1, + sym__composite_argument_body, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 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, + [36386] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4056), 1, + anon_sym_DOT, + ACTIONS(4058), 1, + aux_sym__immediate_decimal_token5, + STATE(1751), 1, + sym_comment, + ACTIONS(751), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(753), 36, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173908,30 +174071,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36505] = 5, + 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, + [36445] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4022), 1, - aux_sym__immediate_decimal_token5, - STATE(1754), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(4060), 1, + anon_sym_DOT_DOT2, + ACTIONS(4064), 1, + sym_filesize_unit, + ACTIONS(4066), 1, + sym_duration_unit, + STATE(1752), 1, sym_comment, - ACTIONS(739), 8, + STATE(5068), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(914), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -173954,7 +174137,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, @@ -173964,73 +174146,71 @@ 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, - [36562] = 7, + [36514] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4039), 1, - anon_sym_QMARK2, - ACTIONS(4041), 1, - anon_sym_BANG, - STATE(1755), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(986), 1, + sym__immediate_decimal, + STATE(1753), 1, sym_comment, - STATE(1899), 1, - sym__path_suffix, - ACTIONS(1448), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 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, + ACTIONS(4042), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4044), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 6, + anon_sym_GT2, + anon_sym_DASH2, 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, - [36623] = 6, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1642), 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, + [36581] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_DOT, - ACTIONS(4045), 1, + ACTIONS(4068), 1, aux_sym__immediate_decimal_token5, - STATE(1756), 1, + STATE(1754), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(791), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174039,10 +174219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 34, + ACTIONS(793), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -174074,18 +174255,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36682] = 4, + [36638] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1757), 1, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3816), 1, + aux_sym_cmd_identifier_token1, + STATE(1755), 1, sym_comment, - ACTIONS(1522), 4, + STATE(1787), 1, + aux_sym__command_list_body_repeat1, + STATE(2131), 1, + sym__val_number_decimal, + STATE(4919), 1, + sym__command_name, + STATE(4993), 1, + sym_cmd_identifier, + STATE(4994), 1, + sym_val_string, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3812), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1524), 40, - sym_raw_string_begin, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3814), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174110,41 +174319,22 @@ 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, - [36737] = 8, + [36719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4070), 1, anon_sym_DOT2, - STATE(1758), 1, + STATE(1851), 1, + sym_path, + STATE(1756), 2, sym_comment, - STATE(1792), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1893), 1, - sym_path, - STATE(1919), 1, - sym_cell_path, - ACTIONS(1442), 3, + ACTIONS(1490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1444), 37, + ACTIONS(1492), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174172,6 +174362,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, @@ -174180,17 +174372,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36800] = 4, + [36778] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(953), 1, + sym__immediate_decimal, + STATE(1757), 1, + sym_comment, + ACTIONS(4042), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4044), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1689), 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, + [36845] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(4014), 1, + sym__newline, + STATE(1758), 1, + sym_comment, + STATE(1855), 1, + aux_sym__types_body_repeat3, + STATE(1999), 1, + aux_sym__types_body_repeat1, + STATE(4780), 1, + sym__one_type, + STATE(5261), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [36916] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1759), 1, sym_comment, - ACTIONS(1530), 4, + ACTIONS(1486), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1532), 40, + ACTIONS(1488), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174231,75 +174539,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [36855] = 4, - ACTIONS(3), 1, + [36971] = 16, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, STATE(1760), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1474), 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, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(4422), 1, + sym__command_name, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, 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, - [36910] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4047), 1, - anon_sym_DOT, - ACTIONS(4049), 1, - aux_sym__immediate_decimal_token5, - STATE(1761), 1, - sym_comment, - ACTIONS(739), 6, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 26, 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, @@ -174318,34 +174595,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [36969] = 4, + [37050] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1762), 1, + ACTIONS(4032), 1, + anon_sym_DOT2, + STATE(1756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1761), 1, sym_comment, - ACTIONS(1480), 4, + STATE(1851), 1, + sym_path, + ACTIONS(1577), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1482), 40, + ACTIONS(1579), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174384,36 +174656,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37024] = 10, + [37111] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(980), 1, + STATE(923), 1, sym__immediate_decimal, - STATE(1763), 1, + STATE(1762), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(805), 2, + STATE(922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1647), 6, + ACTIONS(1632), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1645), 29, + ACTIONS(1628), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -174438,168 +174708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [37091] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4051), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4053), 1, - aux_sym__immediate_decimal_token5, - STATE(1764), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 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_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_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, - [37150] = 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(3791), 1, - aux_sym_cmd_identifier_token1, - STATE(1765), 1, - sym_comment, - STATE(1786), 1, - aux_sym__command_list_body_repeat1, - STATE(2121), 1, - sym__val_number_decimal, - STATE(4729), 1, - sym__command_name, - STATE(4999), 1, - sym_cmd_identifier, - STATE(5002), 1, - sym_val_string, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, - anon_sym_export, - anon_sym_in, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3789), 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, - [37231] = 17, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [37178] = 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(3791), 1, - aux_sym_cmd_identifier_token1, - STATE(1766), 1, + STATE(1763), 1, sym_comment, - STATE(1786), 1, - aux_sym__command_list_body_repeat1, - STATE(2121), 1, - sym__val_number_decimal, - STATE(4825), 1, - sym__command_name, - STATE(4999), 1, - sym_cmd_identifier, - STATE(5002), 1, - sym_val_string, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3787), 2, + ACTIONS(1541), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3789), 24, + anon_sym_DOT2, + ACTIONS(1543), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174624,43 +174749,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37312] = 16, - ACTIONS(91), 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(93), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, + anon_sym_QMARK2, + anon_sym_BANG, + [37233] = 16, ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(2933), 1, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3673), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1764), 1, sym_comment, - STATE(2023), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(4303), 1, - sym__command_name, - STATE(4474), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(4478), 1, + STATE(3804), 1, sym_val_string, - ACTIONS(3848), 2, + STATE(5361), 1, + sym__command_name, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(505), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3669), 26, + ACTIONS(3659), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174687,44 +174827,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37391] = 16, - ACTIONS(103), 1, + [37312] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1765), 1, sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(4652), 1, - sym__command_name, - ACTIONS(3848), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 26, + ACTIONS(1527), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1529), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174743,109 +174857,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37470] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(4055), 1, - anon_sym_DOT_DOT2, - ACTIONS(4059), 1, - sym_filesize_unit, - ACTIONS(4061), 1, - sym_duration_unit, - STATE(1769), 1, - sym_comment, - STATE(5075), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4057), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 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, - [37539] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1770), 1, - sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(5381), 1, - sym__command_name, - ACTIONS(3848), 2, + 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(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 26, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37367] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1766), 1, + sym_comment, + ACTIONS(1545), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1547), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174864,108 +174908,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37618] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - STATE(765), 1, - sym__immediate_decimal, - STATE(1771), 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(764), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 6, - anon_sym_GT2, - anon_sym_DASH2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1600), 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, - [37685] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1772), 1, - sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(4615), 1, - sym__command_name, - ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 26, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37422] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1767), 1, + sym_comment, + ACTIONS(1535), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1537), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174984,109 +174959,64 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37764] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3966), 1, sym__newline, - ACTIONS(4067), 1, - anon_sym_list, - ACTIONS(4069), 1, - anon_sym_oneof, - STATE(1773), 1, - sym_comment, - STATE(1821), 1, - aux_sym__types_body_repeat1, - STATE(1896), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4877), 1, - sym__all_type, - STATE(5388), 1, - sym__composite_argument_body, - ACTIONS(4065), 2, - anon_sym_table, - anon_sym_record, - STATE(4718), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4063), 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, - [37835] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37477] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(107), 1, sym_raw_string_begin, - ACTIONS(2642), 1, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, + ACTIONS(3691), 1, aux_sym_cmd_identifier_token1, - STATE(1774), 1, + STATE(1768), 1, sym_comment, - STATE(2057), 1, + STATE(2096), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(4269), 1, + sym__command_name, + STATE(4427), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(4428), 1, sym_val_string, - STATE(4023), 1, - sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(504), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, + ACTIONS(3687), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175113,24 +175043,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37914] = 8, + [37556] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4046), 1, anon_sym_DOT2, - STATE(1775), 1, + STATE(1769), 1, sym_comment, - STATE(1792), 1, + STATE(1796), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1893), 1, + STATE(1906), 1, sym_path, - STATE(1945), 1, + STATE(1943), 1, sym_cell_path, - ACTIONS(1677), 3, + ACTIONS(1705), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1675), 37, + ACTIONS(1703), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -175168,34 +175098,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37977] = 10, + [37619] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(786), 1, + STATE(761), 1, sym__immediate_decimal, - STATE(1776), 1, + STATE(1770), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(785), 2, + STATE(760), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 6, + ACTIONS(1709), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1669), 29, + ACTIONS(1707), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -175225,34 +175155,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [38044] = 10, + [37686] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(802), 1, + STATE(763), 1, sym__immediate_decimal, - STATE(1777), 1, + STATE(1771), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(801), 2, + STATE(762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 6, + ACTIONS(1679), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1681), 29, + ACTIONS(1677), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -175282,34 +175212,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [38111] = 10, + [37753] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(804), 1, + STATE(765), 1, sym__immediate_decimal, - STATE(1778), 1, + STATE(1772), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(803), 2, + STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1687), 6, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1685), 29, + ACTIONS(1681), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -175333,171 +175263,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [38178] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1779), 1, - sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(5220), 1, - sym__command_name, - ACTIONS(3848), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3641), 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, - [38257] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(4067), 1, - anon_sym_list, - ACTIONS(4069), 1, - anon_sym_oneof, - STATE(1780), 1, - sym_comment, - STATE(1821), 1, - aux_sym__types_body_repeat1, - STATE(1896), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4877), 1, - sym__all_type, - STATE(5330), 1, - sym__composite_argument_body, - ACTIONS(4065), 2, - anon_sym_table, - anon_sym_record, - STATE(4718), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4063), 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, - [38328] = 16, - ACTIONS(103), 1, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [37820] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1781), 1, + STATE(1773), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5244), 1, + STATE(5343), 1, sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, + ACTIONS(3659), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175524,81 +175332,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38407] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(4067), 1, - anon_sym_list, - ACTIONS(4069), 1, - anon_sym_oneof, - STATE(1782), 1, - sym_comment, - STATE(1821), 1, - aux_sym__types_body_repeat1, - STATE(1896), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4877), 1, - sym__all_type, - STATE(5409), 1, - sym__composite_argument_body, - ACTIONS(4065), 2, - anon_sym_table, - anon_sym_record, - STATE(4718), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4063), 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, - [38478] = 7, + [37899] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_DOT2, - STATE(1746), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1783), 1, + ACTIONS(4073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4075), 1, + aux_sym__immediate_decimal_token5, + STATE(1774), 1, sym_comment, - STATE(1860), 1, - sym_path, - ACTIONS(1526), 3, + ACTIONS(759), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1528), 38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(761), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175624,56 +175375,117 @@ 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, - [38539] = 16, - ACTIONS(103), 1, + [37958] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(2642), 1, + ACTIONS(3816), 1, + aux_sym_cmd_identifier_token1, + STATE(1775), 1, + sym_comment, + STATE(1787), 1, + aux_sym__command_list_body_repeat1, + STATE(2131), 1, + sym__val_number_decimal, + STATE(4801), 1, + sym__command_name, + STATE(4993), 1, + sym_cmd_identifier, + STATE(4994), 1, + sym_val_string, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3812), 2, + anon_sym_export, + anon_sym_in, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3814), 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, + [38039] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1784), 1, + STATE(1776), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5158), 1, + STATE(5299), 1, sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, + ACTIONS(3659), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175700,34 +175512,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38618] = 12, + [38118] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4040), 1, + aux_sym__immediate_decimal_token5, + STATE(1777), 1, + sym_comment, + ACTIONS(751), 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(753), 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, + [38175] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(4014), 1, sym__newline, - ACTIONS(4067), 1, + ACTIONS(4052), 1, anon_sym_list, - ACTIONS(4069), 1, + ACTIONS(4054), 1, anon_sym_oneof, - STATE(1785), 1, + STATE(1778), 1, sym_comment, - STATE(1821), 1, + STATE(1790), 1, aux_sym__types_body_repeat1, - STATE(1896), 1, + STATE(1890), 1, aux_sym__composite_argument_body_repeat1, - STATE(4877), 1, + STATE(4765), 1, sym__all_type, - STATE(5480), 1, + STATE(5122), 1, sym__composite_argument_body, - ACTIONS(4065), 2, + ACTIONS(4050), 2, anon_sym_table, anon_sym_record, - STATE(4718), 4, + STATE(4802), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4063), 31, + ACTIONS(4048), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175759,106 +175623,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38689] = 16, + [38246] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4077), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4086), 1, - anon_sym_DQUOTE, - ACTIONS(4089), 1, - anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_BQUOTE, - ACTIONS(4095), 1, - sym_raw_string_begin, - STATE(2121), 1, - sym__val_number_decimal, - STATE(4999), 1, - sym_cmd_identifier, - STATE(5002), 1, - sym_val_string, - STATE(5046), 1, - sym__command_name, - ACTIONS(4071), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4080), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4083), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1786), 2, + anon_sym_DOT, + ACTIONS(4079), 1, + aux_sym__immediate_decimal_token5, + STATE(1779), 1, sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4074), 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, - [38768] = 16, - ACTIONS(103), 1, + ACTIONS(751), 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(753), 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, + [38305] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1787), 1, + STATE(1780), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5248), 1, + STATE(5135), 1, sym__command_name, - ACTIONS(3848), 2, + ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3850), 2, + ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3641), 26, + ACTIONS(3659), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175885,145 +175739,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38847] = 4, + [38384] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1788), 1, - sym_comment, - ACTIONS(1516), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1518), 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, + ACTIONS(4014), 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38902] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1789), 1, - sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(4393), 1, - sym__command_name, - ACTIONS(3641), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 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, - [38980] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4052), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(4054), 1, anon_sym_oneof, - ACTIONS(4098), 1, - anon_sym_GT2, - ACTIONS(4100), 1, - anon_sym_AT2, - STATE(1790), 1, + STATE(1781), 1, sym_comment, - STATE(4876), 1, + STATE(1790), 1, + aux_sym__types_body_repeat1, + STATE(1890), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4765), 1, sym__all_type, - STATE(5334), 1, - sym_param_completer, - ACTIONS(3864), 2, + STATE(5501), 1, + sym__composite_argument_body, + ACTIONS(4050), 2, anon_sym_table, anon_sym_record, - STATE(5012), 4, + STATE(4802), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4048), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176055,28 +175798,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39048] = 6, + [38455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4102), 1, - anon_sym_DOT, - ACTIONS(4104), 1, + ACTIONS(4081), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4083), 1, aux_sym__immediate_decimal_token5, - STATE(1791), 1, + STATE(1782), 1, sym_comment, - ACTIONS(1786), 7, + ACTIONS(759), 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(1784), 34, + ACTIONS(761), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176107,24 +175850,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [39106] = 7, + sym_duration_unit, + [38514] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1783), 1, + sym_comment, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(5245), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 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, + [38593] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DOT2, - STATE(1792), 1, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1784), 1, + sym_comment, + STATE(1790), 1, + aux_sym__types_body_repeat1, + STATE(1890), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4765), 1, + sym__all_type, + STATE(5493), 1, + sym__composite_argument_body, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 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, + [38664] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1785), 1, sym_comment, - STATE(1793), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1893), 1, - sym_path, - ACTIONS(1526), 3, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(5252), 1, + sym__command_name, + ACTIONS(3799), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3801), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3659), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1528), 37, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176143,38 +176029,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39166] = 6, + [38743] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1893), 1, - sym_path, - STATE(1793), 2, + ACTIONS(4085), 1, + anon_sym_QMARK2, + ACTIONS(4087), 1, + anon_sym_BANG, + STATE(1786), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1536), 3, + STATE(1887), 1, + sym__path_suffix, + ACTIONS(1472), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1538), 37, + anon_sym_DOT2, + ACTIONS(1474), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176212,44 +176090,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39224] = 16, + [38804] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(4095), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4104), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(4107), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(4110), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(4113), 1, sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1794), 1, - sym_comment, - STATE(2057), 1, + STATE(2131), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(4993), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(4994), 1, sym_val_string, - STATE(5487), 1, + STATE(5059), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(4089), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(4098), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(4101), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(1787), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(4092), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176274,32 +176153,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39302] = 11, + [38883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + STATE(1788), 1, + sym_comment, + ACTIONS(1531), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1533), 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, + [38938] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(4109), 1, + ACTIONS(4116), 1, anon_sym_GT2, - STATE(1795), 1, + ACTIONS(4118), 1, + anon_sym_AT2, + STATE(1789), 1, sym_comment, - STATE(4722), 1, + STATE(4757), 1, sym__all_type, - STATE(5327), 1, + STATE(5152), 1, sym_param_completer, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(5012), 4, + STATE(4941), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176331,22 +176261,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39370] = 5, + [39006] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4049), 1, - aux_sym__immediate_decimal_token5, - STATE(1796), 1, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1790), 1, + sym_comment, + STATE(1889), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1999), 1, + aux_sym__types_body_repeat1, + STATE(4865), 1, + sym__all_type, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 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, + [39074] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1791), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1531), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 36, + anon_sym_DOT2, + ACTIONS(1533), 39, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176371,55 +176355,57 @@ 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, - [39426] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [39128] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1797), 1, + STATE(1792), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(4377), 1, + STATE(5139), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176444,32 +176430,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39504] = 11, + [39206] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + aux_sym__immediate_decimal_token5, + STATE(1793), 1, + sym_comment, + ACTIONS(1790), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 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, + [39264] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4100), 1, + ACTIONS(4118), 1, anon_sym_AT2, - ACTIONS(4111), 1, + ACTIONS(4124), 1, anon_sym_GT2, - STATE(1798), 1, + STATE(1794), 1, sym_comment, STATE(4753), 1, sym__all_type, - STATE(5478), 1, + STATE(5490), 1, sym_param_completer, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(5012), 4, + STATE(4941), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176501,71 +176539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39572] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(4113), 1, - anon_sym_DOT_DOT2, - ACTIONS(4117), 1, - sym_filesize_unit, - ACTIONS(4119), 1, - sym_duration_unit, - STATE(1799), 1, - sym_comment, - STATE(5075), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4115), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 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, - [39640] = 5, + [39332] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4121), 1, - aux_sym__immediate_decimal_token5, - STATE(1800), 1, + STATE(1795), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(791), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176574,10 +176553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 34, + ACTIONS(793), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176609,17 +176589,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39696] = 4, + [39386] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4046), 1, + anon_sym_DOT2, + STATE(1796), 1, + sym_comment, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1906), 1, + sym_path, + ACTIONS(1577), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1579), 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, + [39446] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4126), 1, + anon_sym_BANG, + STATE(1797), 1, + sym_comment, + ACTIONS(1460), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1462), 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, + [39502] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1798), 1, + sym_comment, + ACTIONS(1535), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1537), 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, + [39556] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1801), 1, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1799), 1, sym_comment, - ACTIONS(1522), 4, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(4369), 1, + sym__command_name, + ACTIONS(3659), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 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, + [39634] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4128), 1, anon_sym_DOT2, - ACTIONS(1524), 39, + STATE(1906), 1, + sym_path, + STATE(1800), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1490), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1492), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176657,21 +176857,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39750] = 4, + [39692] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(3691), 1, + aux_sym_cmd_identifier_token1, + STATE(1801), 1, sym_comment, - ACTIONS(1530), 4, + STATE(2096), 1, + sym__val_number_decimal, + STATE(4213), 1, + sym__command_name, + STATE(4427), 1, + sym_cmd_identifier, + STATE(4428), 1, + sym_val_string, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3687), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1532), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + STATE(504), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3689), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176696,57 +176919,106 @@ 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, + [39770] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, + STATE(1802), 1, + sym_comment, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(5371), 1, + sym__command_name, + ACTIONS(3659), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, 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, - [39804] = 16, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 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, + [39848] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, STATE(1803), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5500), 1, + STATE(4645), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176771,12 +177043,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39882] = 4, + [39926] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4131), 1, + aux_sym__immediate_decimal_token5, STATE(1804), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(791), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176785,11 +177059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 35, + ACTIONS(793), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176821,24 +177094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39936] = 6, + [39982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4125), 1, - aux_sym__immediate_decimal_token5, STATE(1805), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(803), 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(1730), 34, + ACTIONS(805), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -176873,106 +177143,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [39994] = 16, + sym_duration_unit, + [40036] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3673), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, STATE(1806), 1, sym_comment, - STATE(2023), 1, - sym__val_number_decimal, - STATE(4207), 1, - sym__command_name, - STATE(4474), 1, - sym_cmd_identifier, - STATE(4478), 1, - sym_val_string, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, - anon_sym_export, - anon_sym_in, - STATE(505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3671), 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, - [40072] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1807), 1, - sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(4559), 1, + STATE(4060), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176997,20 +177206,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40150] = 5, + [40114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4127), 1, - anon_sym_BANG, - STATE(1808), 1, + STATE(1807), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1545), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1464), 38, + ACTIONS(1547), 39, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177038,8 +177246,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, @@ -177048,32 +177254,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40206] = 11, + anon_sym_QMARK2, + anon_sym_BANG, + [40168] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4100), 1, + ACTIONS(4118), 1, anon_sym_AT2, - ACTIONS(4129), 1, + ACTIONS(4133), 1, anon_sym_GT2, - STATE(1809), 1, + STATE(1808), 1, sym_comment, - STATE(4688), 1, + STATE(4684), 1, sym__all_type, - STATE(5406), 1, + STATE(5478), 1, sym_param_completer, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(5012), 4, + STATE(4941), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177105,19 +177313,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40274] = 5, + [40236] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4079), 1, + aux_sym__immediate_decimal_token5, + STATE(1809), 1, + sym_comment, + ACTIONS(751), 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(753), 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, + [40292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4127), 1, + ACTIONS(4126), 1, anon_sym_QMARK2, STATE(1810), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1460), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1464), 38, + ACTIONS(1462), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177156,19 +177415,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40330] = 4, + [40348] = 16, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, + aux_sym_cmd_identifier_token1, STATE(1811), 1, sym_comment, - ACTIONS(1516), 4, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(5217), 1, + sym__command_name, + ACTIONS(3659), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1518), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177193,30 +177477,17 @@ 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, - [40384] = 4, + [40426] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1812), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(1486), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1470), 39, + ACTIONS(1488), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177256,17 +177527,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40438] = 4, + [40480] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(4135), 1, + anon_sym_DOT_DOT2, + ACTIONS(4139), 1, + sym_filesize_unit, + ACTIONS(4141), 1, + sym_duration_unit, STATE(1813), 1, sym_comment, - ACTIONS(1472), 4, + STATE(5068), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4137), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(914), 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, + [40548] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1814), 1, + sym_comment, + ACTIONS(1541), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1474), 39, + ACTIONS(1543), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177306,44 +177634,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40492] = 16, + [40602] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1814), 1, + STATE(1815), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5297), 1, + STATE(5336), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177368,101 +177696,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40570] = 11, + [40680] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3860), 1, + STATE(1816), 1, + sym_comment, + ACTIONS(1527), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1529), 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, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - STATE(1815), 1, + 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, + [40734] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4143), 1, + aux_sym__immediate_decimal_token5, + STATE(1817), 1, sym_comment, - STATE(5335), 1, - sym__one_type, - STATE(5338), 1, - sym__multiple_types, - STATE(5363), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [40638] = 16, + ACTIONS(791), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(793), 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, + [40790] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1816), 1, + STATE(1818), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5135), 1, + STATE(5253), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177487,12 +177859,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40716] = 4, + [40868] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1817), 1, + STATE(1819), 1, sym_comment, - ACTIONS(866), 8, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -177501,7 +177873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(868), 35, + ACTIONS(761), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -177537,44 +177909,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40770] = 16, + [40922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1818), 1, + ACTIONS(4058), 1, + aux_sym__immediate_decimal_token5, + STATE(1820), 1, sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(5320), 1, - sym__command_name, - ACTIONS(3641), 2, + ACTIONS(751), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 24, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(753), 36, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177599,26 +177949,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40848] = 5, + 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, + [40978] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(4145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4147), 1, aux_sym__immediate_decimal_token5, - STATE(1819), 1, + STATE(1821), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1776), 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(1774), 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, @@ -177649,23 +178012,101 @@ 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, - [40904] = 5, + [41036] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, - aux_sym__immediate_decimal_token5, - STATE(1820), 1, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + STATE(1822), 1, sym_comment, - ACTIONS(775), 6, - anon_sym_export, + STATE(5317), 1, + sym__type_annotation, + STATE(5386), 1, + sym__one_type, + STATE(5387), 1, + sym__multiple_types, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [41104] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, + STATE(1823), 1, + sym_comment, + STATE(2099), 1, + sym__val_number_decimal, + STATE(3783), 1, + sym_cmd_identifier, + STATE(3804), 1, + sym_val_string, + STATE(5263), 1, + sym__command_name, + ACTIONS(3659), 2, + anon_sym_export, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(777), 36, - sym_raw_string_begin, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177690,43 +178131,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [40960] = 11, + [41182] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(4067), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(4069), 1, + ACTIONS(3892), 1, anon_sym_oneof, - STATE(1821), 1, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(4149), 1, + anon_sym_GT2, + STATE(1824), 1, sym_comment, - STATE(1902), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1988), 1, - aux_sym__types_body_repeat1, - STATE(4873), 1, + STATE(4810), 1, sym__all_type, - ACTIONS(4065), 2, + STATE(5115), 1, + sym_param_completer, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(4718), 4, + STATE(4941), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4063), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177758,44 +178188,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41028] = 16, + [41250] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1822), 1, + STATE(1825), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(4034), 1, + STATE(4490), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177820,44 +178250,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41106] = 16, + [41328] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1766), 1, anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(1768), 1, anon_sym_SQUOTE, - ACTIONS(1762), 1, + ACTIONS(1770), 1, anon_sym_BQUOTE, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(3645), 1, + ACTIONS(3663), 1, aux_sym_cmd_identifier_token1, - STATE(1823), 1, + STATE(1826), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3783), 1, sym_cmd_identifier, - STATE(3791), 1, + STATE(3804), 1, sym_val_string, - STATE(5259), 1, + STATE(4505), 1, sym__command_name, - ACTIONS(3641), 2, + ACTIONS(3659), 2, anon_sym_export, anon_sym_in, - ACTIONS(3653), 2, + ACTIONS(3671), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, + ACTIONS(3673), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3643), 24, + ACTIONS(3661), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177882,44 +178312,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41184] = 16, + [41406] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(3645), 1, - aux_sym_cmd_identifier_token1, - STATE(1824), 1, + STATE(1827), 1, sym_comment, - STATE(2057), 1, - sym__val_number_decimal, - STATE(3753), 1, - sym_cmd_identifier, - STATE(3791), 1, - sym_val_string, - STATE(4462), 1, - sym__command_name, - ACTIONS(3641), 2, + ACTIONS(803), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3653), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3655), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3643), 24, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(805), 36, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177944,25 +178350,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41262] = 4, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [41459] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1825), 1, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + aux_sym__immediate_decimal_token5, + STATE(1828), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1790), 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), 35, + ACTIONS(1788), 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, @@ -177993,81 +178412,30 @@ 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, - [41316] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1826), 1, - sym_comment, - ACTIONS(1480), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1482), 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, - [41370] = 10, + [41516] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, - sym__newline, - ACTIONS(4139), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(3892), 1, anon_sym_oneof, - STATE(1827), 1, + ACTIONS(4155), 1, + sym__newline, + STATE(1829), 1, sym_comment, - STATE(1863), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3111), 1, + STATE(4756), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178099,72 +178467,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41435] = 10, + [41581] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - STATE(1828), 1, + STATE(1830), 1, sym_comment, - STATE(1842), 1, + STATE(1836), 1, aux_sym__repeat_newline, - STATE(4889), 1, + STATE(4758), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 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, - [41500] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1829), 1, - sym_comment, - ACTIONS(4143), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178194,27 +178520,21 @@ 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, - [41551] = 4, + [41646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1830), 1, + STATE(1831), 1, sym_comment, - ACTIONS(775), 6, + ACTIONS(759), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(777), 36, + ACTIONS(761), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178251,30 +178571,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41604] = 10, + [41699] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(4161), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(4163), 1, anon_sym_oneof, - STATE(1831), 1, + STATE(1832), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(2932), 1, + STATE(3181), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(4159), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(3353), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4157), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178306,30 +178626,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41669] = 10, + [41764] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4149), 1, + ACTIONS(4161), 1, anon_sym_list, - ACTIONS(4151), 1, + ACTIONS(4163), 1, anon_sym_oneof, - STATE(1832), 1, + STATE(1833), 1, sym_comment, - STATE(2032), 1, + STATE(1837), 1, aux_sym__repeat_newline, - STATE(3081), 1, + STATE(3071), 1, sym__type_annotation, - ACTIONS(4147), 2, + ACTIONS(4159), 2, anon_sym_table, anon_sym_record, - STATE(3285), 4, + STATE(3353), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4145), 31, + ACTIONS(4157), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178361,30 +178681,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41734] = 10, + [41829] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4149), 1, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(4151), 1, + ACTIONS(4171), 1, anon_sym_oneof, - STATE(1833), 1, + STATE(1834), 1, sym_comment, - STATE(1837), 1, + STATE(1859), 1, aux_sym__repeat_newline, - STATE(3208), 1, + STATE(3034), 1, sym__type_annotation, - ACTIONS(4147), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(3285), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4145), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178416,27 +178736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41799] = 9, + [41894] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4153), 1, - anon_sym_DOT_DOT2, - ACTIONS(4157), 1, - sym_filesize_unit, - ACTIONS(4159), 1, - sym_duration_unit, - ACTIONS(4161), 1, - sym__unquoted_pattern, - STATE(1834), 1, + STATE(1835), 1, sym_comment, - ACTIONS(4155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 3, + ACTIONS(791), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(884), 33, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(793), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178452,97 +178764,51 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41862] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1835), 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, - 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_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, - sym_duration_unit, - [41915] = 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, + [41947] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, - sym__newline, - ACTIONS(4139), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(3892), 1, anon_sym_oneof, + ACTIONS(4155), 1, + sym__newline, STATE(1836), 1, sym_comment, - STATE(1854), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(2933), 1, + STATE(4805), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178574,30 +178840,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41980] = 10, + [42012] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4149), 1, + ACTIONS(4161), 1, anon_sym_list, - ACTIONS(4151), 1, + ACTIONS(4163), 1, anon_sym_oneof, STATE(1837), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3216), 1, + STATE(3075), 1, sym__type_annotation, - ACTIONS(4147), 2, + ACTIONS(4159), 2, anon_sym_table, anon_sym_record, - STATE(3285), 4, + STATE(3353), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4145), 31, + ACTIONS(4157), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178629,67 +178895,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42045] = 5, + [42077] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4104), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(4155), 1, + sym__newline, STATE(1838), 1, sym_comment, - ACTIONS(1786), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 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, - [42100] = 3, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(2919), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [42142] = 10, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(4155), 1, + sym__newline, + STATE(1829), 1, + aux_sym__repeat_newline, STATE(1839), 1, sym_comment, - ACTIONS(4163), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(4697), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178719,34 +179003,26 @@ 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, - [42151] = 5, + [42207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4165), 1, - aux_sym__immediate_decimal_token5, STATE(1840), 1, sym_comment, - ACTIONS(1834), 7, + ACTIONS(759), 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(1832), 34, + ACTIONS(761), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178777,24 +179053,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42206] = 6, + sym_duration_unit, + [42260] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4167), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4169), 1, - aux_sym__immediate_decimal_token5, STATE(1841), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(791), 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(1730), 33, + ACTIONS(793), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -178828,30 +179102,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42263] = 10, + sym_duration_unit, + [42313] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4155), 1, + sym__newline, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(4171), 1, anon_sym_oneof, - ACTIONS(4133), 1, - sym__newline, STATE(1842), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(4695), 1, + STATE(2946), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178883,30 +179158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42328] = 10, + [42378] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(4133), 1, - sym__newline, STATE(1843), 1, sym_comment, - STATE(1848), 1, - aux_sym__repeat_newline, - STATE(4698), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4173), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178936,14 +179198,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, - [42393] = 4, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [42429] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1844), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(803), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -178952,7 +179220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(777), 34, + ACTIONS(805), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -178987,12 +179255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [42446] = 3, + [42482] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1845), 1, sym_comment, - ACTIONS(4171), 42, + ACTIONS(4175), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -179035,17 +179303,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [42497] = 3, + [42533] = 10, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, STATE(1846), 1, sym_comment, - ACTIONS(4173), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1856), 1, + aux_sym__types_body_repeat3, + STATE(4782), 1, + sym__one_type, + STATE(5261), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179075,89 +179356,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, - [42548] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4175), 1, - anon_sym_DOT, - ACTIONS(4177), 1, - aux_sym__immediate_decimal_token5, - STATE(1847), 1, - sym_comment, - ACTIONS(1786), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 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, - [42605] = 10, + [42598] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4155), 1, + sym__newline, + ACTIONS(4161), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(4163), 1, anon_sym_oneof, - ACTIONS(4133), 1, - sym__newline, - STATE(1848), 1, - sym_comment, - STATE(2032), 1, + STATE(1832), 1, aux_sym__repeat_newline, - STATE(4720), 1, + STATE(1847), 1, + sym_comment, + STATE(3142), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(4159), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(3353), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4157), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179189,30 +179413,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42670] = 10, + [42663] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_oneof, - STATE(1849), 1, + STATE(1848), 1, sym_comment, - STATE(1875), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3158), 1, + STATE(3194), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179244,30 +179468,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42735] = 10, + [42728] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4155), 1, + sym__newline, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(4171), 1, anon_sym_oneof, - STATE(1850), 1, + STATE(1848), 1, + aux_sym__repeat_newline, + STATE(1849), 1, sym_comment, - STATE(1852), 1, - aux_sym__types_body_repeat3, - STATE(4919), 1, - sym__one_type, - STATE(5257), 1, + STATE(3184), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179299,30 +179523,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42800] = 10, + [42793] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(4133), 1, + STATE(1850), 1, + sym_comment, + ACTIONS(1565), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1567), 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, + [42846] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1851), 1, sym_comment, - STATE(2032), 1, + ACTIONS(1555), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1557), 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, + [42899] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(4155), 1, + sym__newline, + STATE(1838), 1, aux_sym__repeat_newline, - STATE(2793), 1, + STATE(1852), 1, + sym_comment, + STATE(2730), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179354,29 +179676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42865] = 9, + [42964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4185), 1, - anon_sym_list, - ACTIONS(4188), 1, - anon_sym_oneof, - STATE(5027), 1, - sym__one_type, - STATE(5257), 1, - sym__type_annotation, - ACTIONS(4182), 2, - anon_sym_table, - anon_sym_record, - STATE(1852), 2, + STATE(1853), 1, sym_comment, - aux_sym__types_body_repeat3, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4179), 31, + ACTIONS(4177), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179406,81 +179716,25 @@ 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, - [42928] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1853), 1, - sym_comment, - ACTIONS(866), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(868), 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, - [42981] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4133), 1, - sym__newline, - ACTIONS(4139), 1, + anon_sym_record, anon_sym_list, - ACTIONS(4141), 1, anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [43015] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1854), 1, sym_comment, - STATE(2032), 1, - aux_sym__repeat_newline, - STATE(2992), 1, - sym__type_annotation, - ACTIONS(4137), 2, - anon_sym_table, - anon_sym_record, - STATE(3077), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4179), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179510,81 +179764,38 @@ 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, - [43046] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1855), 1, - sym_comment, - ACTIONS(866), 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(868), 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, - [43099] = 10, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [43066] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4133), 1, - sym__newline, - STATE(1856), 1, + STATE(1855), 1, sym_comment, - STATE(1869), 1, - aux_sym__repeat_newline, - STATE(3012), 1, + STATE(1856), 1, + aux_sym__types_body_repeat3, + STATE(4869), 1, + sym__one_type, + STATE(5261), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179616,30 +179827,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43164] = 10, + [43131] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4187), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(4190), 1, anon_sym_oneof, - STATE(1852), 1, - aux_sym__types_body_repeat3, - STATE(1857), 1, - sym_comment, - STATE(4791), 1, + STATE(5013), 1, sym__one_type, - STATE(5257), 1, + STATE(5261), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(4184), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(1856), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4181), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179671,18 +179881,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43229] = 4, + [43194] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4193), 1, + aux_sym__immediate_decimal_token5, + STATE(1857), 1, + sym_comment, + ACTIONS(1868), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 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, + [43249] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4195), 1, + anon_sym_QMARK2, STATE(1858), 1, sym_comment, - ACTIONS(1512), 4, + ACTIONS(1460), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1514), 38, + ACTIONS(1462), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179710,8 +179973,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, @@ -179720,30 +179981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43282] = 10, + [43304] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4149), 1, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(4151), 1, + ACTIONS(4171), 1, anon_sym_oneof, - STATE(1832), 1, - aux_sym__repeat_newline, STATE(1859), 1, sym_comment, - STATE(3048), 1, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(2924), 1, sym__type_annotation, - ACTIONS(4147), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(3285), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4145), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179775,66 +180036,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43347] = 4, + [43369] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, - sym_comment, - ACTIONS(1545), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1547), 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, + ACTIONS(4155), 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43400] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1861), 1, + ACTIONS(4169), 1, + anon_sym_list, + ACTIONS(4171), 1, + anon_sym_oneof, + STATE(1842), 1, + aux_sym__repeat_newline, + STATE(1860), 1, sym_comment, - ACTIONS(4191), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(2928), 1, + sym__type_annotation, + ACTIONS(4167), 2, + anon_sym_table, + anon_sym_record, + STATE(3237), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179864,38 +180089,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, - [43451] = 10, + [43434] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_oneof, - STATE(1831), 1, - aux_sym__repeat_newline, - STATE(1862), 1, + STATE(1861), 1, sym_comment, - STATE(2976), 1, + STATE(1862), 1, + aux_sym__repeat_newline, + STATE(3147), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179927,30 +180146,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43516] = 10, + [43499] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(4169), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_oneof, - STATE(1863), 1, + STATE(1862), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3188), 1, + STATE(3221), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(4167), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(3237), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4165), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179982,116 +180201,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43581] = 4, + [43564] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1864), 1, - sym_comment, - ACTIONS(747), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(4197), 1, anon_sym_DOT_DOT2, + ACTIONS(4201), 1, + sym_filesize_unit, + ACTIONS(4203), 1, sym_duration_unit, + ACTIONS(4205), 1, sym__unquoted_pattern, - ACTIONS(749), 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, + STATE(1863), 1, + sym_comment, + ACTIONS(4199), 2, 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, - [43634] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4193), 1, - anon_sym_QMARK2, - STATE(1865), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 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, - [43689] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1866), 1, - sym_comment, - ACTIONS(1476), 4, + ACTIONS(811), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1478), 38, + ACTIONS(914), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180117,12 +180247,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, @@ -180130,67 +180255,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43742] = 5, + [43627] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4193), 1, - anon_sym_BANG, - STATE(1867), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 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, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + ACTIONS(4155), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43797] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1868), 1, + STATE(1864), 1, sym_comment, - ACTIONS(4195), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1869), 1, + aux_sym__repeat_newline, + STATE(3027), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180220,38 +180308,70 @@ 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, - [43848] = 10, + [43692] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - ACTIONS(4133), 1, - sym__newline, - STATE(1869), 1, + ACTIONS(4207), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4209), 1, + aux_sym__immediate_decimal_token5, + STATE(1865), 1, sym_comment, - STATE(2032), 1, - aux_sym__repeat_newline, - STATE(3016), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(1776), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 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, + [43749] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1866), 1, + sym_comment, + ACTIONS(4211), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180281,32 +180401,25 @@ 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, - [43913] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, + anon_sym_record, anon_sym_list, - ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4133), 1, - sym__newline, - STATE(1870), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [43800] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1867), 1, sym_comment, - STATE(1871), 1, - aux_sym__repeat_newline, - STATE(3017), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(4213), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180336,32 +180449,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, - [43978] = 10, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [43851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + STATE(1868), 1, + sym_comment, + ACTIONS(1561), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1563), 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, + [43904] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - STATE(1871), 1, + STATE(1869), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3018), 1, + STATE(3031), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180393,30 +180561,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44043] = 10, + [43969] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - STATE(1872), 1, + STATE(1870), 1, sym_comment, - STATE(1873), 1, + STATE(1871), 1, aux_sym__repeat_newline, - STATE(2915), 1, + STATE(3032), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180448,30 +180616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44108] = 10, + [44034] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - STATE(1873), 1, + STATE(1871), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(2916), 1, + STATE(3033), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180503,30 +180671,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44173] = 10, + [44099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4195), 1, + anon_sym_BANG, + STATE(1872), 1, + sym_comment, + 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, + aux_sym__val_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, + [44154] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(3868), 1, + ACTIONS(3892), 1, anon_sym_oneof, - ACTIONS(4133), 1, + ACTIONS(4155), 1, sym__newline, - STATE(1851), 1, - aux_sym__repeat_newline, - STATE(1874), 1, + STATE(1873), 1, sym_comment, + STATE(1874), 1, + aux_sym__repeat_newline, STATE(2917), 1, sym__type_annotation, - ACTIONS(3864), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(2693), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3862), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180558,30 +180776,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44238] = 10, + [44219] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, - sym__newline, - ACTIONS(4139), 1, + ACTIONS(3890), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(3892), 1, anon_sym_oneof, - STATE(1875), 1, + ACTIONS(4155), 1, + sym__newline, + STATE(1874), 1, sym_comment, - STATE(2032), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3169), 1, + STATE(2918), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(3888), 2, anon_sym_table, anon_sym_record, - STATE(3077), 4, + STATE(2679), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(3886), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180613,164 +180831,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44303] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1876), 1, - sym_comment, - ACTIONS(1516), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1518), 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, + [44284] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1877), 1, + ACTIONS(4122), 1, + aux_sym__immediate_decimal_token5, + STATE(1875), 1, sym_comment, - ACTIONS(2472), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2470), 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, + ACTIONS(1790), 7, + 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, - [44407] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1878), 1, - sym_comment, - ACTIONS(2552), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 34, anon_sym_in, - ACTIONS(2550), 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, - [44459] = 4, + 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, + [44339] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1879), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(4215), 1, + anon_sym_DOT_DOT2, + STATE(1876), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(4217), 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, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 34, + ACTIONS(2104), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180793,7 +180924,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, @@ -180803,21 +180933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [44511] = 4, + [44399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1512), 4, + ACTIONS(1531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1514), 37, + ACTIONS(1533), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180845,6 +180971,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, @@ -180853,27 +180981,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44563] = 8, + [44451] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(4197), 1, + ACTIONS(819), 1, anon_sym_DOT_DOT2, - STATE(1881), 1, + ACTIONS(4219), 1, + sym_filesize_unit, + ACTIONS(4221), 1, + sym_duration_unit, + STATE(1878), 1, sym_comment, - ACTIONS(4199), 2, + ACTIONS(821), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 5, + ACTIONS(811), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 31, + ACTIONS(914), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180905,12 +181033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44623] = 4, + [44511] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1882), 1, + STATE(1879), 1, sym_comment, - ACTIONS(1834), 7, + ACTIONS(1868), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -180918,7 +181046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1832), 34, + ACTIONS(1866), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180953,16 +181081,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44675] = 4, + [44563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(1535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1582), 38, + ACTIONS(1537), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181001,12 +181129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44727] = 4, + [44615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1881), 1, sym_comment, - ACTIONS(1921), 7, + ACTIONS(1923), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -181014,7 +181142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1919), 34, + ACTIONS(1921), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181049,31 +181177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44779] = 8, + [44667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(793), 1, - anon_sym_DOT_DOT2, - ACTIONS(4201), 1, - sym_filesize_unit, - ACTIONS(4203), 1, - sym_duration_unit, - STATE(1885), 1, + ACTIONS(4153), 1, + aux_sym__immediate_decimal_token5, + STATE(1882), 1, sym_comment, - ACTIONS(795), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 5, + ACTIONS(1790), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 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, @@ -181092,6 +181214,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, @@ -181101,16 +181224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44839] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44721] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1883), 1, sym_comment, - ACTIONS(1856), 3, + ACTIONS(1600), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1854), 38, + ACTIONS(1602), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181149,65 +181274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44891] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4177), 1, - aux_sym__immediate_decimal_token5, - STATE(1887), 1, - sym_comment, - ACTIONS(1786), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 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, - [44945] = 4, + [44773] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1888), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2338), 3, + ACTIONS(1486), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2336), 38, + ACTIONS(1488), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181246,68 +181322,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44997] = 8, + [44825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(4205), 1, - anon_sym_DOT_DOT2, - STATE(1889), 1, + STATE(1885), 1, sym_comment, - ACTIONS(4207), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2090), 31, + ACTIONS(1541), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1543), 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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45057] = 4, + 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, + [44877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1886), 1, sym_comment, - ACTIONS(2476), 3, + ACTIONS(1545), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2474), 38, + ACTIONS(1547), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181346,66 +181418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45109] = 5, + [44929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4209), 1, - aux_sym__immediate_decimal_token5, - STATE(1891), 1, - sym_comment, - ACTIONS(1834), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 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, - [45163] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1892), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2480), 3, + ACTIONS(1561), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2478), 38, + anon_sym_DOT2, + ACTIONS(1563), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181433,8 +181458,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, @@ -181443,17 +181466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45215] = 4, + [44981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1565), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1547), 37, + ACTIONS(1567), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181491,16 +181514,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45267] = 4, + [45033] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1894), 1, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1889), 1, sym_comment, - ACTIONS(1468), 3, + STATE(1893), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4743), 1, + sym__all_type, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 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, + [45095] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1890), 1, + sym_comment, + STATE(1893), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4866), 1, + sym__all_type, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 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, + [45157] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1891), 1, + sym_comment, + ACTIONS(2350), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1470), 38, + ACTIONS(2348), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181539,16 +181668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45319] = 4, + [45209] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1892), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(2457), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1532), 38, + ACTIONS(2455), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181587,28 +181716,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45371] = 9, + [45261] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4067), 1, + ACTIONS(4229), 1, anon_sym_list, - ACTIONS(4069), 1, + ACTIONS(4232), 1, anon_sym_oneof, - STATE(1896), 1, - sym_comment, - STATE(1904), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4897), 1, + STATE(5049), 1, sym__all_type, - ACTIONS(4065), 2, + ACTIONS(4226), 2, anon_sym_table, anon_sym_record, - STATE(4718), 4, + STATE(1893), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4802), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4063), 31, + ACTIONS(4223), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -181640,16 +181768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [45433] = 4, + [45321] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1894), 1, sym_comment, - ACTIONS(2118), 3, + ACTIONS(2469), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2116), 38, + ACTIONS(2467), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181688,16 +181816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45485] = 4, + [45373] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1895), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(2473), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1474), 38, + ACTIONS(2471), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181736,19 +181864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45537] = 4, + [45425] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1896), 1, sym_comment, - ACTIONS(1476), 4, + ACTIONS(2363), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1478), 37, + ACTIONS(2361), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181776,6 +181902,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, @@ -181784,16 +181912,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45589] = 4, + [45477] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1900), 1, + ACTIONS(4235), 1, + aux_sym__immediate_decimal_token5, + STATE(1897), 1, sym_comment, - ACTIONS(1677), 3, + ACTIONS(1868), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 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, + [45531] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1898), 1, + sym_comment, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1675), 38, + ACTIONS(1872), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181832,16 +182009,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45641] = 4, + [45583] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1901), 1, + STATE(1899), 1, sym_comment, - ACTIONS(1522), 3, + ACTIONS(2457), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1524), 38, + ACTIONS(2455), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181880,69 +182057,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45693] = 9, + [45635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4067), 1, - anon_sym_list, - ACTIONS(4069), 1, - anon_sym_oneof, - STATE(1902), 1, + STATE(1900), 1, sym_comment, - STATE(1904), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4691), 1, - sym__all_type, - ACTIONS(4065), 2, - anon_sym_table, - anon_sym_record, - STATE(4718), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4063), 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, - [45755] = 4, + ACTIONS(1776), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 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, + [45687] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2472), 3, + ACTIONS(2461), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2470), 38, + ACTIONS(2459), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181981,68 +182153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45807] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4217), 1, - anon_sym_list, - ACTIONS(4220), 1, - anon_sym_oneof, - STATE(4984), 1, - sym__all_type, - ACTIONS(4214), 2, - anon_sym_table, - anon_sym_record, - STATE(1904), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4718), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4211), 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, - [45867] = 4, + [45739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1902), 1, sym_comment, - ACTIONS(2356), 3, + ACTIONS(2465), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2354), 38, + ACTIONS(2463), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182081,16 +182201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45919] = 4, + [45791] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1903), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1671), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1482), 38, + ACTIONS(1669), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182129,23 +182249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45971] = 7, + [45843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_QMARK2, - ACTIONS(4225), 1, - anon_sym_BANG, - STATE(1907), 1, + STATE(1904), 1, sym_comment, - STATE(2123), 1, - sym__path_suffix, - ACTIONS(1448), 4, + ACTIONS(1527), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 33, + ACTIONS(1529), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182171,7 +182284,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -182179,23 +182297,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46028] = 6, + [45895] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4227), 1, - anon_sym_DOT, - ACTIONS(4229), 1, - aux_sym__immediate_decimal_token5, - STATE(1908), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(4237), 1, + anon_sym_DOT_DOT2, + STATE(1905), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(4239), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1784), 32, + ACTIONS(2114), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -182218,7 +182340,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, @@ -182228,16 +182349,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46083] = 4, + [45955] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1906), 1, + sym_comment, + ACTIONS(1555), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1557), 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, + [46007] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1907), 1, + sym_comment, + STATE(4858), 1, + sym__all_type, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 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, + [46066] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1908), 1, sym_comment, - ACTIONS(1522), 3, + ACTIONS(1600), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1524), 37, + ACTIONS(1602), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182275,24 +182495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46134] = 8, + [46117] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, + ACTIONS(4241), 1, anon_sym_DOT2, - STATE(1910), 1, + STATE(1909), 1, sym_comment, - STATE(1964), 1, + STATE(1956), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, + STATE(2094), 1, sym_path, - STATE(2208), 1, + STATE(2184), 1, sym_cell_path, - ACTIONS(1887), 3, + ACTIONS(1927), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1885), 33, + ACTIONS(1925), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182326,18 +182546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46193] = 4, + [46176] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1911), 1, + ACTIONS(4241), 1, + anon_sym_DOT2, + STATE(1910), 1, sym_comment, - ACTIONS(1677), 3, + STATE(1956), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2094), 1, + sym_path, + STATE(2191), 1, + sym_cell_path, + ACTIONS(1883), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1675), 37, + ACTIONS(1880), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182362,10 +182589,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, @@ -182373,67 +182597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46244] = 4, + [46235] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1912), 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__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, + ACTIONS(2118), 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, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(4243), 1, + anon_sym_DOT_DOT2, + STATE(1911), 1, + sym_comment, + ACTIONS(4245), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [46295] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1913), 1, - sym_comment, - ACTIONS(1834), 7, + ACTIONS(2116), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 33, + ACTIONS(2114), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182455,7 +182639,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, @@ -182465,25 +182648,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [46346] = 4, + [46294] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + ACTIONS(4247), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4249), 1, + aux_sym__immediate_decimal_token5, + STATE(1912), 1, sym_comment, - ACTIONS(1921), 7, + ACTIONS(1776), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1919), 33, + ACTIONS(1774), 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, @@ -182512,69 +182697,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, - [46397] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_list, - ACTIONS(3868), 1, - anon_sym_oneof, - STATE(1915), 1, - sym_comment, - STATE(5356), 1, - sym__type_annotation, - ACTIONS(3864), 2, - anon_sym_table, - anon_sym_record, - STATE(2693), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3862), 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, - [46456] = 4, + [46349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2476), 3, + ACTIONS(2363), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2474), 37, + ACTIONS(2361), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182612,16 +182744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46507] = 4, + [46400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1917), 1, + STATE(1914), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(2469), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1532), 37, + ACTIONS(2467), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182659,16 +182791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46558] = 4, + [46451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1915), 1, sym_comment, - ACTIONS(2480), 3, + ACTIONS(2461), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2478), 37, + ACTIONS(2459), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182706,16 +182838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46609] = 4, + [46502] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1919), 1, + STATE(1916), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(2465), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1582), 37, + ACTIONS(2463), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182753,16 +182885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46660] = 4, + [46553] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1917), 1, sym_comment, - ACTIONS(2118), 3, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2116), 37, + ACTIONS(1872), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182800,16 +182932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46711] = 4, + [46604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1921), 1, + STATE(1918), 1, sym_comment, - ACTIONS(2356), 3, + ACTIONS(1486), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2354), 37, + ACTIONS(1488), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182847,181 +182979,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46762] = 4, + [46655] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1922), 1, + ACTIONS(4219), 1, + sym_filesize_unit, + ACTIONS(4221), 1, + sym_duration_unit, + ACTIONS(4251), 1, + anon_sym_DOT_DOT2, + STATE(1919), 1, sym_comment, - ACTIONS(1480), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1482), 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, + ACTIONS(4253), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, + 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, - [46813] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1923), 1, - sym_comment, - ACTIONS(2552), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(914), 30, anon_sym_in, - ACTIONS(2550), 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, - [46864] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(4233), 1, - anon_sym_null, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_DOLLAR, - ACTIONS(4241), 1, - anon_sym_DOT_DOT, - ACTIONS(4245), 1, - sym_val_date, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4249), 1, - anon_sym_SQUOTE, - ACTIONS(4251), 1, - anon_sym_BQUOTE, - ACTIONS(4253), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4255), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4257), 1, - aux_sym_unquoted_token1, - ACTIONS(4259), 1, - sym_raw_string_begin, - STATE(1877), 1, - sym__inter_double_quotes, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1924), 1, - sym_comment, - STATE(4176), 1, - sym__val_number_decimal, - STATE(5351), 1, - sym_val_bool, - ACTIONS(3073), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3083), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3085), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4243), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5254), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4235), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1901), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1453), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46963] = 4, + 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, + [46714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1920), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(1531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1518), 37, + ACTIONS(1533), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183059,18 +183077,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47014] = 4, + [46765] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1926), 1, + ACTIONS(4241), 1, + anon_sym_DOT2, + STATE(1921), 1, sym_comment, - ACTIONS(1468), 3, + STATE(1956), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2094), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + ACTIONS(1907), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1470), 37, + ACTIONS(1905), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183095,10 +183120,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, @@ -183106,16 +183128,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47065] = 4, + [46824] = 28, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(4255), 1, + anon_sym_null, + ACTIONS(4259), 1, + anon_sym_LPAREN, + ACTIONS(4261), 1, + anon_sym_DOLLAR, + ACTIONS(4263), 1, + anon_sym_DOT_DOT, + ACTIONS(4267), 1, + sym_val_date, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4271), 1, + anon_sym_SQUOTE, + ACTIONS(4273), 1, + anon_sym_BQUOTE, + ACTIONS(4275), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4277), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4279), 1, + aux_sym_unquoted_token1, + ACTIONS(4281), 1, + sym_raw_string_begin, + STATE(1892), 1, + sym__inter_single_quotes, + STATE(1899), 1, + sym__inter_double_quotes, + STATE(1922), 1, + sym_comment, + STATE(4059), 1, + sym__val_number_decimal, + STATE(5176), 1, + sym_val_bool, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3124), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3126), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4265), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4257), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1904), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1461), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46923] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1927), 1, + STATE(1923), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(2457), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1474), 37, + ACTIONS(2455), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183153,24 +183246,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47116] = 8, + [46974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, + ACTIONS(4241), 1, anon_sym_DOT2, - STATE(1928), 1, + STATE(1924), 1, sym_comment, - STATE(1964), 1, + STATE(1956), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, + STATE(2094), 1, sym_path, - STATE(2185), 1, + STATE(2180), 1, sym_cell_path, - ACTIONS(1875), 3, + ACTIONS(1911), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1872), 33, + ACTIONS(1909), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183204,16 +183297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47175] = 4, + [47033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2472), 3, + ACTIONS(2457), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2470), 37, + ACTIONS(2455), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183251,113 +183344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47226] = 4, + [47084] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1930), 1, - sym_comment, - ACTIONS(2472), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2470), 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, - [47277] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - aux_sym__immediate_decimal_token5, - STATE(1931), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [47332] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4265), 1, - sym__entry_separator, - STATE(1932), 2, + ACTIONS(4052), 1, + anon_sym_list, + ACTIONS(4054), 1, + anon_sym_oneof, + STATE(1926), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3740), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(4456), 1, + sym__all_type, + ACTIONS(4050), 2, + anon_sym_table, + anon_sym_record, + STATE(4802), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4048), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -183387,34 +183393,29 @@ 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_GT2, - anon_sym_oneof, - [47383] = 8, + [47143] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(4268), 1, + ACTIONS(4283), 1, anon_sym_DOT_DOT2, - STATE(1933), 1, + STATE(1927), 1, sym_comment, - ACTIONS(4270), 2, + ACTIONS(4285), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2090), 30, + ACTIONS(2104), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183445,74 +183446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47442] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4272), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4274), 1, - aux_sym__immediate_decimal_token5, - STATE(1934), 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, - [47497] = 8, + [47202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_DOT2, - STATE(1935), 1, + STATE(1928), 1, sym_comment, - STATE(1964), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, - sym_path, - STATE(2204), 1, - sym_cell_path, - ACTIONS(1891), 3, + ACTIONS(1545), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1889), 33, + ACTIONS(1547), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183537,7 +183482,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, @@ -183545,25 +183493,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47556] = 8, + [47253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_DOT2, - STATE(1936), 1, + STATE(1929), 1, sym_comment, - STATE(1964), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, - sym_path, - STATE(2212), 1, - sym_cell_path, - ACTIONS(1895), 3, + ACTIONS(1776), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 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, + [47304] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1930), 1, + sym_comment, + ACTIONS(1535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1893), 33, + ACTIONS(1537), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183588,7 +183576,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, @@ -183596,30 +183587,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47615] = 8, + [47355] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(4276), 1, - anon_sym_DOT_DOT2, - STATE(1937), 1, + ACTIONS(4287), 1, + anon_sym_DOT, + ACTIONS(4289), 1, + aux_sym__immediate_decimal_token5, + STATE(1931), 1, sym_comment, - ACTIONS(4278), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 5, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 30, + sym__unquoted_pattern, + ACTIONS(1788), 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, @@ -183638,6 +183626,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, @@ -183647,18 +183636,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47674] = 4, + [47410] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1938), 1, + ACTIONS(4241), 1, + anon_sym_DOT2, + STATE(1932), 1, sym_comment, - ACTIONS(2338), 3, + STATE(1956), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2094), 1, + sym_path, + STATE(2193), 1, + sym_cell_path, + ACTIONS(1919), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2336), 37, + ACTIONS(1917), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183683,10 +183679,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, @@ -183694,24 +183687,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47725] = 8, + [47469] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_DOT2, - STATE(1939), 1, + ACTIONS(4291), 1, + anon_sym_QMARK2, + ACTIONS(4293), 1, + anon_sym_BANG, + STATE(1933), 1, sym_comment, - STATE(1964), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, - sym_path, - STATE(2174), 1, - sym_cell_path, - ACTIONS(1903), 3, + STATE(2108), 1, + sym__path_suffix, + ACTIONS(1472), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1901), 33, + anon_sym_DOT2, + ACTIONS(1474), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183745,26 +183737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47784] = 8, - ACTIONS(3), 1, + [47526] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4067), 1, - anon_sym_list, - ACTIONS(4069), 1, - anon_sym_oneof, - STATE(1940), 1, + ACTIONS(4295), 1, + sym__entry_separator, + STATE(1934), 2, sym_comment, - STATE(4960), 1, - sym__type_annotation, - ACTIONS(4065), 2, - anon_sym_table, - anon_sym_record, - STATE(4982), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4063), 31, + aux_sym__types_body_repeat2, + ACTIONS(3756), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -183794,80 +183777,30 @@ 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, - [47843] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4067), 1, + anon_sym_record, anon_sym_list, - ACTIONS(4069), 1, + anon_sym_GT2, anon_sym_oneof, - STATE(1941), 1, - sym_comment, - STATE(4644), 1, - sym__all_type, - ACTIONS(4065), 2, - anon_sym_table, - anon_sym_record, - STATE(4718), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4063), 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, - [47902] = 6, + [47577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4280), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4282), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, + STATE(1935), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1868), 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), 32, + ACTIONS(1866), 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, @@ -183896,78 +183829,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47957] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_DOT2, - STATE(1943), 1, - sym_comment, - STATE(1964), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, - sym_path, - STATE(2193), 1, - sym_cell_path, - ACTIONS(1442), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - 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, - [48016] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [47628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4201), 1, - sym_filesize_unit, - ACTIONS(4203), 1, - sym_duration_unit, - ACTIONS(4284), 1, - anon_sym_DOT_DOT2, - STATE(1944), 1, + STATE(1936), 1, sym_comment, - ACTIONS(4286), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 5, + ACTIONS(1923), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1921), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183989,6 +183866,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, @@ -183998,16 +183876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48075] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [47679] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1937), 1, sym_comment, - ACTIONS(1856), 3, + ACTIONS(2350), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1854), 37, + ACTIONS(2348), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -184045,24 +183925,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48126] = 8, + [47730] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, + ACTIONS(4241), 1, anon_sym_DOT2, - STATE(1946), 1, + STATE(1938), 1, sym_comment, - STATE(1964), 1, + STATE(1956), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, + STATE(2094), 1, sym_path, - STATE(2177), 1, + STATE(2219), 1, sym_cell_path, - ACTIONS(1868), 3, + ACTIONS(1466), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 33, + ACTIONS(1468), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184096,26 +183976,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48185] = 8, + [47789] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4067), 1, + ACTIONS(4052), 1, anon_sym_list, - ACTIONS(4069), 1, + ACTIONS(4054), 1, anon_sym_oneof, - STATE(1947), 1, + STATE(1939), 1, sym_comment, - STATE(4859), 1, - sym__all_type, - ACTIONS(4065), 2, + STATE(5071), 1, + sym__type_annotation, + ACTIONS(4050), 2, anon_sym_table, anon_sym_record, - STATE(4718), 4, + STATE(5084), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4063), 31, + ACTIONS(4048), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184147,87 +184027,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [48244] = 27, - ACTIONS(103), 1, + [47848] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3890), 1, + anon_sym_list, + ACTIONS(3892), 1, + anon_sym_oneof, + STATE(1940), 1, + sym_comment, + STATE(5316), 1, + sym__type_annotation, + ACTIONS(3888), 2, + anon_sym_table, + anon_sym_record, + STATE(2679), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3886), 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, + [47907] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4233), 1, - anon_sym_null, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_DOLLAR, ACTIONS(4241), 1, - anon_sym_DOT_DOT, - ACTIONS(4245), 1, - sym_val_date, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4249), 1, - anon_sym_SQUOTE, - ACTIONS(4251), 1, - anon_sym_BQUOTE, - ACTIONS(4253), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4255), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4257), 1, - aux_sym_unquoted_token1, - ACTIONS(4259), 1, - sym_raw_string_begin, - STATE(1877), 1, - sym__inter_double_quotes, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1948), 1, + anon_sym_DOT2, + STATE(1941), 1, sym_comment, - STATE(4176), 1, - sym__val_number_decimal, - STATE(5351), 1, - sym_val_bool, - ACTIONS(3073), 2, + STATE(1956), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2094), 1, + sym_path, + STATE(2198), 1, + sym_cell_path, + ACTIONS(1903), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1901), 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(3083), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3085), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4243), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5254), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4235), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1901), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1453), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48340] = 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47966] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4298), 1, + anon_sym_DOT, + ACTIONS(4300), 1, + aux_sym__immediate_decimal_token5, + STATE(1942), 1, + sym_comment, + ACTIONS(751), 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(753), 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, + [48021] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1949), 1, + STATE(1943), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(1671), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1470), 35, + ACTIONS(1669), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -184252,7 +184214,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, @@ -184260,20 +184225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48390] = 4, + [48072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1944), 1, sym_comment, - ACTIONS(1472), 4, + ACTIONS(2473), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1474), 35, + ACTIONS(2471), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -184298,7 +184261,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, @@ -184306,20 +184272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48440] = 4, + [48123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1945), 1, sym_comment, - ACTIONS(1516), 4, + ACTIONS(1527), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1518), 35, + ACTIONS(1529), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -184344,7 +184308,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, @@ -184352,16 +184319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48490] = 5, - ACTIONS(103), 1, + [48174] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4263), 1, + ACTIONS(4302), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4304), 1, aux_sym__immediate_decimal_token5, - STATE(1952), 1, + STATE(1946), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(759), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184370,7 +184337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(741), 30, + ACTIONS(761), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184401,18 +184368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48542] = 4, + [48229] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1953), 1, + STATE(1947), 1, sym_comment, - ACTIONS(1530), 4, + ACTIONS(1541), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1532), 35, + ACTIONS(1543), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -184437,7 +184404,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, @@ -184445,164 +184415,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48592] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4292), 1, - sym_long_flag_identifier, - ACTIONS(4294), 1, - anon_sym_EQ2, - STATE(1954), 1, - sym_comment, - STATE(2219), 1, - sym__flag_equals_value, - ACTIONS(4290), 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(4288), 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, - anon_sym_extern, - anon_sym_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_token5, - aux_sym__val_number_decimal_token1, - [48648] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - aux_sym__immediate_decimal_token5, - STATE(1955), 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, - [48702] = 27, - ACTIONS(103), 1, + [48280] = 27, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - ACTIONS(4233), 1, + ACTIONS(4255), 1, anon_sym_null, - ACTIONS(4245), 1, + ACTIONS(4267), 1, sym_val_date, - ACTIONS(4302), 1, + ACTIONS(4308), 1, anon_sym_LPAREN, - ACTIONS(4304), 1, + ACTIONS(4310), 1, anon_sym_DOLLAR, - ACTIONS(4306), 1, + ACTIONS(4312), 1, anon_sym_DOT_DOT, - ACTIONS(4310), 1, + ACTIONS(4316), 1, anon_sym_DQUOTE, - ACTIONS(4312), 1, + ACTIONS(4318), 1, anon_sym_SQUOTE, - ACTIONS(4314), 1, + ACTIONS(4320), 1, anon_sym_BQUOTE, - ACTIONS(4316), 1, + ACTIONS(4322), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4318), 1, + ACTIONS(4324), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4320), 1, + ACTIONS(4326), 1, aux_sym_unquoted_token1, - ACTIONS(4322), 1, + ACTIONS(4328), 1, sym_raw_string_begin, - STATE(1929), 1, + STATE(1923), 1, sym__inter_single_quotes, - STATE(1930), 1, + STATE(1925), 1, sym__inter_double_quotes, - STATE(1956), 1, + STATE(1948), 1, sym_comment, - STATE(4092), 1, + STATE(4122), 1, sym__val_number_decimal, - STATE(5351), 1, + STATE(5176), 1, sym_val_bool, - ACTIONS(3073), 2, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - ACTIONS(3083), 2, + ACTIONS(3124), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3085), 2, + ACTIONS(3126), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4308), 2, + ACTIONS(4314), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5262), 2, + STATE(5348), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4300), 3, + ACTIONS(4306), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1909), 4, + STATE(1945), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -184613,26 +184484,73 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, sym_val_interpolated, sym_unquoted, - [48798] = 6, + [48376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_DOT, - ACTIONS(4326), 1, + ACTIONS(4330), 1, + anon_sym_DOT2, + STATE(2094), 1, + sym_path, + STATE(1949), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1490), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1492), 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, + [48430] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4289), 1, aux_sym__immediate_decimal_token5, - STATE(1957), 1, + STATE(1950), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1784), 31, + ACTIONS(1788), 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, @@ -184661,16 +184579,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48852] = 6, - ACTIONS(103), 1, + [48482] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1951), 1, + sym_comment, + ACTIONS(1527), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1529), 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_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, + anon_sym_QMARK2, + anon_sym_BANG, + [48532] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4300), 1, + aux_sym__immediate_decimal_token5, + STATE(1952), 1, + sym_comment, + ACTIONS(751), 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(753), 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, + [48584] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4333), 1, + aux_sym__immediate_decimal_token5, + STATE(1953), 1, + sym_comment, + ACTIONS(791), 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(793), 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, + [48636] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4330), 1, + ACTIONS(4337), 1, aux_sym__immediate_decimal_token5, - STATE(1958), 1, + STATE(1954), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(759), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184678,7 +184736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(749), 30, + ACTIONS(761), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184709,63 +184767,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48906] = 4, - ACTIONS(103), 1, + [48690] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3771), 1, - sym__entry_separator, - STATE(1959), 1, + ACTIONS(4339), 1, + anon_sym_DOT, + ACTIONS(4341), 1, + aux_sym__immediate_decimal_token5, + STATE(1955), 1, sym_comment, - ACTIONS(3769), 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, - [48956] = 4, + ACTIONS(751), 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(753), 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, + [48744] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1960), 1, + ACTIONS(4241), 1, + anon_sym_DOT2, + STATE(1949), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1956), 1, + sym_comment, + STATE(2094), 1, + sym_path, + ACTIONS(1577), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1579), 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, + [48800] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1957), 1, sym_comment, - ACTIONS(1522), 4, + ACTIONS(1531), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1524), 35, + ACTIONS(1533), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184801,72 +184910,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49006] = 5, - ACTIONS(103), 1, + [48850] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, - aux_sym__immediate_decimal_token5, - STATE(1961), 1, + STATE(1958), 1, sym_comment, - ACTIONS(775), 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(777), 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, - [49058] = 5, + ACTIONS(1535), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1537), 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_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, + anon_sym_QMARK2, + anon_sym_BANG, + [48900] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(4343), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4345), 1, aux_sym__immediate_decimal_token5, - STATE(1962), 1, + STATE(1959), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(1776), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1784), 32, + ACTIONS(1774), 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, @@ -184895,25 +185004,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49110] = 5, + [48954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4334), 1, + ACTIONS(4347), 1, + anon_sym_DOT, + ACTIONS(4349), 1, aux_sym__immediate_decimal_token5, - STATE(1963), 1, + STATE(1960), 1, sym_comment, - ACTIONS(1834), 6, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1832), 32, + ACTIONS(1788), 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, @@ -184942,22 +185052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49162] = 7, + [49008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_DOT2, - STATE(1964), 1, + STATE(1961), 1, sym_comment, - STATE(1965), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, - sym_path, - ACTIONS(1526), 3, + ACTIONS(1486), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1528), 33, + anon_sym_DOT2, + ACTIONS(1488), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184991,21 +185096,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49218] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [49058] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3780), 1, + sym__entry_separator, + STATE(1962), 1, + sym_comment, + ACTIONS(3778), 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, + [49108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, + STATE(1963), 1, + sym_comment, + ACTIONS(1541), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT2, - STATE(2119), 1, - sym_path, - STATE(1965), 2, + ACTIONS(1543), 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_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, + anon_sym_QMARK2, + anon_sym_BANG, + [49158] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1964), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1536), 3, + ACTIONS(1545), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1538), 33, + anon_sym_DOT2, + ACTIONS(1547), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -185039,26 +185234,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49272] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [49208] = 27, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4255), 1, + anon_sym_null, + ACTIONS(4259), 1, + anon_sym_LPAREN, + ACTIONS(4261), 1, + anon_sym_DOLLAR, + ACTIONS(4263), 1, + anon_sym_DOT_DOT, + ACTIONS(4267), 1, + sym_val_date, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4271), 1, + anon_sym_SQUOTE, + ACTIONS(4273), 1, + anon_sym_BQUOTE, + ACTIONS(4275), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4277), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4279), 1, + aux_sym_unquoted_token1, + ACTIONS(4281), 1, + sym_raw_string_begin, + STATE(1892), 1, + sym__inter_single_quotes, + STATE(1899), 1, + sym__inter_double_quotes, + STATE(1965), 1, + sym_comment, + STATE(4059), 1, + sym__val_number_decimal, + STATE(5176), 1, + sym_val_bool, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3124), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3126), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4265), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4257), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1904), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1461), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [49304] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4339), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4341), 1, + ACTIONS(4351), 1, aux_sym__immediate_decimal_token5, STATE(1966), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1868), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1730), 31, + ACTIONS(1866), 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, @@ -185087,22 +185352,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49326] = 4, + [49356] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4357), 1, + sym_long_flag_identifier, + ACTIONS(4359), 1, + anon_sym_EQ2, STATE(1967), 1, sym_comment, - ACTIONS(1480), 4, + STATE(2194), 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), 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, + anon_sym_extern, + anon_sym_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_token5, + aux_sym__val_number_decimal_token1, + [49412] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4361), 1, + anon_sym_QMARK2, + STATE(1968), 1, + sym_comment, + ACTIONS(1460), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + 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, + [49463] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3761), 1, + sym_raw_string_begin, + ACTIONS(4363), 1, + sym__entry_separator, + STATE(1969), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3756), 35, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1482), 35, - 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, @@ -185117,13 +185478,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -185131,20 +185493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49376] = 6, - ACTIONS(103), 1, + [49514] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4345), 1, - anon_sym_GT2, - ACTIONS(4347), 1, + ACTIONS(4366), 1, + anon_sym_RBRACK, + ACTIONS(4370), 1, sym__entry_separator, - STATE(1932), 1, + STATE(1934), 1, aux_sym__types_body_repeat2, - STATE(1968), 1, + STATE(1970), 1, sym_comment, - ACTIONS(4343), 35, + ACTIONS(4368), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -185180,22 +185540,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49429] = 6, + [49567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(1969), 1, + STATE(1971), 1, sym_comment, - ACTIONS(2576), 5, + ACTIONS(1242), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2574), 31, + ACTIONS(1258), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185227,69 +185587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49482] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(4349), 1, - anon_sym_RBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(1970), 1, - sym_comment, - ACTIONS(4351), 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, + [49620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(1971), 1, + STATE(1972), 1, sym_comment, - ACTIONS(1955), 5, + ACTIONS(1234), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 31, + ACTIONS(1250), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185321,68 +185634,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49588] = 7, - ACTIONS(103), 1, + [49673] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4355), 1, - anon_sym_RBRACK, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(4359), 1, + ACTIONS(3124), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4308), 1, + anon_sym_LPAREN, + ACTIONS(4310), 1, + anon_sym_DOLLAR, + ACTIONS(4312), 1, + anon_sym_DOT_DOT, + ACTIONS(4316), 1, + anon_sym_DQUOTE, + ACTIONS(4318), 1, + anon_sym_SQUOTE, + ACTIONS(4320), 1, + anon_sym_BQUOTE, + ACTIONS(4322), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4324), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4326), 1, + aux_sym_unquoted_token1, + ACTIONS(4328), 1, sym_raw_string_begin, - STATE(1972), 1, + ACTIONS(4374), 1, + anon_sym_null, + ACTIONS(4378), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4382), 1, + sym_val_date, + STATE(1923), 1, + sym__inter_single_quotes, + STATE(1925), 1, + sym__inter_double_quotes, + STATE(1973), 1, sym_comment, - STATE(1979), 1, - aux_sym__types_body_repeat2, - ACTIONS(4353), 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, + STATE(4122), 1, + sym__val_number_decimal, + STATE(5176), 1, + sym_val_bool, + ACTIONS(4314), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4372), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4380), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5348), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4376), 3, 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, - [49643] = 7, - ACTIONS(103), 1, + STATE(1945), 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, + [49768] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4357), 1, + ACTIONS(4386), 1, + anon_sym_RBRACK, + ACTIONS(4388), 1, sym__entry_separator, - ACTIONS(4359), 1, + ACTIONS(4390), 1, sym_raw_string_begin, - ACTIONS(4361), 1, - anon_sym_RBRACK, - STATE(1973), 1, - sym_comment, - STATE(1979), 1, + STATE(1969), 1, aux_sym__types_body_repeat2, - ACTIONS(4353), 34, + STATE(1974), 1, + sym_comment, + ACTIONS(4384), 34, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -185417,82 +185750,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49698] = 27, + [49823] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3083), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4237), 1, - anon_sym_LPAREN, - ACTIONS(4239), 1, - anon_sym_DOLLAR, - ACTIONS(4241), 1, - anon_sym_DOT_DOT, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4249), 1, - anon_sym_SQUOTE, - ACTIONS(4251), 1, - anon_sym_BQUOTE, - ACTIONS(4253), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4255), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4257), 1, - aux_sym_unquoted_token1, - ACTIONS(4259), 1, - sym_raw_string_begin, - ACTIONS(4365), 1, - anon_sym_null, - ACTIONS(4369), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4373), 1, - sym_val_date, - STATE(1877), 1, - sym__inter_double_quotes, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1974), 1, + ACTIONS(4392), 1, + anon_sym_DOT_DOT2, + STATE(1975), 1, sym_comment, - STATE(4176), 1, - sym__val_number_decimal, - STATE(5351), 1, - sym_val_bool, - ACTIONS(4243), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4363), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4371), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5254), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4367), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1901), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1460), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49793] = 5, - ACTIONS(103), 1, + ACTIONS(4394), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1738), 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, + [49876] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4298), 1, + ACTIONS(4341), 1, aux_sym__immediate_decimal_token5, - STATE(1975), 1, + STATE(1976), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(751), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -185500,7 +185812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(741), 30, + ACTIONS(753), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -185531,26 +185843,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49844] = 6, + [49927] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + sym__entry_separator, + ACTIONS(4390), 1, + sym_raw_string_begin, + ACTIONS(4396), 1, + anon_sym_RBRACK, + STATE(1969), 1, + aux_sym__types_body_repeat2, + STATE(1977), 1, + sym_comment, + ACTIONS(4384), 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, + 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, + [49982] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, - STATE(1976), 1, + ACTIONS(4402), 1, + anon_sym_DASH_DASH, + STATE(2173), 1, + sym_long_flag, + STATE(1978), 2, sym_comment, - ACTIONS(1226), 5, + aux_sym_decl_def_repeat1, + ACTIONS(4398), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4400), 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, + [50035] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4349), 1, + aux_sym__immediate_decimal_token5, + STATE(1979), 1, + sym_comment, + ACTIONS(1790), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 31, + sym__unquoted_pattern, + ACTIONS(1788), 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, @@ -185569,6 +185974,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, @@ -185578,12 +185984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49897] = 4, - ACTIONS(103), 1, + [50086] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1977), 1, + STATE(1980), 1, sym_comment, - ACTIONS(775), 8, + ACTIONS(791), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -185592,7 +185998,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(777), 30, + ACTIONS(793), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -185623,18 +186029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49946] = 6, - ACTIONS(103), 1, + [50135] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(4375), 1, - anon_sym_GT2, - STATE(1932), 1, + ACTIONS(4405), 1, + anon_sym_RBRACK, + STATE(1934), 1, aux_sym__types_body_repeat2, - STATE(1978), 1, + STATE(1981), 1, sym_comment, - ACTIONS(4343), 35, + ACTIONS(4368), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -185670,58 +186076,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49999] = 5, - ACTIONS(103), 1, + [50188] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3745), 1, - sym_raw_string_begin, - ACTIONS(4377), 1, - sym__entry_separator, - STATE(1979), 2, + ACTIONS(2265), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_DOT_DOT2, + STATE(1982), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3740), 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, + ACTIONS(4394), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2146), 29, 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, - [50050] = 4, - ACTIONS(103), 1, + 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, + [50243] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(1983), 1, sym_comment, - ACTIONS(866), 8, + ACTIONS(759), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -185730,7 +186138,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(868), 30, + ACTIONS(761), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -185761,69 +186169,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [50099] = 6, - ACTIONS(103), 1, + [50292] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(4380), 1, - anon_sym_GT2, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(1981), 1, + ACTIONS(4407), 1, + anon_sym_DOT_DOT2, + STATE(1984), 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, - [50152] = 6, + ACTIONS(4409), 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, + ACTIONS(2104), 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, + [50345] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4411), 1, + anon_sym_DOT_DOT2, + STATE(1985), 1, + sym_comment, + ACTIONS(4413), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2114), 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, + [50398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(2588), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - STATE(1982), 1, + STATE(1986), 1, sym_comment, - ACTIONS(2586), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2584), 31, + ACTIONS(2104), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185855,66 +186310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50205] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(4359), 1, - sym_raw_string_begin, - ACTIONS(4382), 1, - anon_sym_RBRACK, - STATE(1979), 1, - aux_sym__types_body_repeat2, - STATE(1983), 1, - sym_comment, - ACTIONS(4353), 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, - 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, - [50260] = 6, - ACTIONS(103), 1, + [50451] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(4384), 1, - anon_sym_RBRACK, - STATE(1932), 1, + ACTIONS(4417), 1, + anon_sym_GT2, + STATE(1934), 1, aux_sym__types_body_repeat2, - STATE(1984), 1, + STATE(1987), 1, sym_comment, - ACTIONS(4351), 35, + ACTIONS(4415), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -185950,18 +186357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50313] = 6, - ACTIONS(103), 1, + [50504] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(4386), 1, + ACTIONS(4419), 1, anon_sym_RBRACK, - STATE(1932), 1, + STATE(1934), 1, aux_sym__types_body_repeat2, - STATE(1985), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4351), 35, + ACTIONS(4368), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -185997,26 +186404,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50366] = 6, + [50557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH_DASH, - STATE(2168), 1, - sym_long_flag, - STATE(1986), 2, + ACTIONS(4421), 1, + aux_sym__immediate_decimal_token5, + STATE(1989), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4388), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1868), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1866), 31, anon_sym_in, - ACTIONS(4390), 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_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, + [50608] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + sym__entry_separator, + ACTIONS(4390), 1, sym_raw_string_begin, + ACTIONS(4423), 1, + anon_sym_RBRACK, + STATE(1969), 1, + aux_sym__types_body_repeat2, + STATE(1990), 1, + sym_comment, + ACTIONS(4384), 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, @@ -186031,6 +186484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -186044,20 +186498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [50419] = 7, - ACTIONS(103), 1, + [50663] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4357), 1, + ACTIONS(4388), 1, sym__entry_separator, - ACTIONS(4359), 1, + ACTIONS(4390), 1, sym_raw_string_begin, - ACTIONS(4395), 1, + ACTIONS(4425), 1, anon_sym_RBRACK, - STATE(1979), 1, + STATE(1969), 1, aux_sym__types_body_repeat2, - STATE(1987), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4353), 34, + ACTIONS(4384), 34, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -186092,16 +186546,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [50474] = 4, - ACTIONS(3), 1, + [50718] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4397), 1, - sym__newline, - STATE(1988), 2, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4427), 1, + anon_sym_RBRACK, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(1992), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3762), 36, - anon_sym_LBRACK, + ACTIONS(4368), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -186137,19 +186593,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50523] = 4, + [50771] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1989), 1, + ACTIONS(4429), 1, + anon_sym_DOT_DOT2, + STATE(1993), 1, + sym_comment, + ACTIONS(4431), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2154), 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, + [50824] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + STATE(1994), 1, + sym_comment, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2168), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2166), 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, + [50877] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4437), 1, + anon_sym_DOT_DOT2, + STATE(1995), 1, + sym_comment, + ACTIONS(4439), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2176), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2174), 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, + [50930] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4441), 1, + anon_sym_DOT_DOT2, + STATE(1996), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2188), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2186), 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, + [50983] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, sym__unquoted_pattern, - ACTIONS(1730), 32, + STATE(1997), 1, + sym_comment, + ACTIONS(2606), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2604), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186172,7 +186819,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, @@ -186182,72 +186828,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50572] = 5, + [51036] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4400), 1, - anon_sym_QMARK2, - STATE(1990), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(1998), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1738), 31, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 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, - [50623] = 8, - ACTIONS(103), 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4445), 1, + sym__newline, + STATE(1999), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3784), 36, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [51138] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(811), 1, anon_sym_COLON2, - ACTIONS(791), 1, + ACTIONS(817), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4402), 1, + ACTIONS(4448), 1, sym_filesize_unit, - ACTIONS(4404), 1, + ACTIONS(4450), 1, sym_duration_unit, - STATE(1991), 1, + STATE(2000), 1, sym_comment, - ACTIONS(789), 5, + ACTIONS(815), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(787), 29, + ACTIONS(813), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -186277,14 +186969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [50680] = 5, - ACTIONS(103), 1, + [51195] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4406), 1, + ACTIONS(4452), 1, aux_sym__immediate_decimal_token5, - STATE(1992), 1, + STATE(2001), 1, sym_comment, - ACTIONS(775), 7, + ACTIONS(791), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -186292,7 +186984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(777), 30, + ACTIONS(793), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -186323,19 +187015,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [50731] = 4, + [51246] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4454), 1, + anon_sym_GT2, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(2002), 1, + sym_comment, + ACTIONS(4415), 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, + [51299] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1993), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, + STATE(2003), 1, sym_comment, - ACTIONS(1834), 6, + ACTIONS(2678), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1832), 32, + ACTIONS(2676), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186358,7 +187100,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, @@ -186368,19 +187109,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50780] = 4, + [51352] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4456), 1, + anon_sym_GT2, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(2004), 1, + sym_comment, + ACTIONS(4415), 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, + [51405] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1994), 1, + STATE(2005), 1, sym_comment, - ACTIONS(1921), 6, + ACTIONS(1776), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1919), 32, + ACTIONS(1774), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186413,63 +187201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50829] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1995), 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, - [50878] = 6, - ACTIONS(103), 1, + [51454] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(4408), 1, + ACTIONS(4458), 1, anon_sym_GT2, - STATE(1932), 1, + STATE(1934), 1, aux_sym__types_body_repeat2, - STATE(1996), 1, + STATE(2006), 1, sym_comment, - ACTIONS(4343), 35, + ACTIONS(4415), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -186505,66 +187248,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50931] = 5, + [51507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4400), 1, - anon_sym_BANG, - STATE(1997), 1, + STATE(2007), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2578), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2576), 32, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 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, - [50982] = 6, + 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, + [51556] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2008), 1, + sym_comment, + ACTIONS(1868), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1866), 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, + [51605] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4294), 1, + ACTIONS(4359), 1, anon_sym_EQ2, - STATE(1998), 1, + STATE(2009), 1, sym_comment, - STATE(2179), 1, + STATE(2196), 1, sym__flag_equals_value, - ACTIONS(4410), 3, + ACTIONS(4460), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4412), 33, + ACTIONS(4462), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -186598,22 +187385,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [51035] = 6, + [51658] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(1711), 1, sym__unquoted_pattern, - STATE(1999), 1, + ACTIONS(2718), 1, + anon_sym_LPAREN2, + STATE(2010), 1, sym_comment, - ACTIONS(2592), 5, + ACTIONS(2662), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2590), 31, + ACTIONS(2660), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186645,23 +187432,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51088] = 6, + [51711] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4414), 1, + ACTIONS(4392), 1, anon_sym_DOT_DOT2, - STATE(2000), 1, + STATE(2011), 1, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4394), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1588), 5, + ACTIONS(2148), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1714), 30, + ACTIONS(2146), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -186692,92 +187479,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51141] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3083), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4302), 1, - anon_sym_LPAREN, - ACTIONS(4304), 1, - anon_sym_DOLLAR, - ACTIONS(4306), 1, - anon_sym_DOT_DOT, - ACTIONS(4310), 1, - anon_sym_DQUOTE, - ACTIONS(4312), 1, - anon_sym_SQUOTE, - ACTIONS(4314), 1, - anon_sym_BQUOTE, - ACTIONS(4316), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4318), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4320), 1, - aux_sym_unquoted_token1, - ACTIONS(4322), 1, - sym_raw_string_begin, - ACTIONS(4365), 1, - anon_sym_null, - ACTIONS(4369), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4373), 1, - sym_val_date, - STATE(1929), 1, - sym__inter_single_quotes, - STATE(1930), 1, - sym__inter_double_quotes, - STATE(2001), 1, - sym_comment, - STATE(4092), 1, - sym__val_number_decimal, - STATE(5351), 1, - sym_val_bool, - ACTIONS(4308), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4363), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4371), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5262), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4418), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1909), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1473), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [51236] = 5, + [51764] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4326), 1, - aux_sym__immediate_decimal_token5, - STATE(2002), 1, + STATE(2012), 1, sym_comment, - ACTIONS(1786), 6, + ACTIONS(1923), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1784), 31, + ACTIONS(1921), 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, @@ -186806,74 +187524,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51287] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(4420), 1, - anon_sym_RBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(2003), 1, - sym_comment, - ACTIONS(4351), 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, - [51340] = 7, + [51813] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2346), 1, - anon_sym_EQ_GT, - ACTIONS(4414), 1, - anon_sym_DOT_DOT2, - STATE(2004), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2013), 1, sym_comment, - ACTIONS(4416), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2229), 5, + ACTIONS(2698), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2227), 29, + ACTIONS(2696), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186901,73 +187571,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51395] = 6, + [51866] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2014), 1, + sym_comment, + ACTIONS(803), 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(805), 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, + [51915] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4422), 1, - anon_sym_DOT_DOT2, - STATE(2005), 1, + ACTIONS(3124), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4259), 1, + anon_sym_LPAREN, + ACTIONS(4261), 1, + anon_sym_DOLLAR, + ACTIONS(4263), 1, + anon_sym_DOT_DOT, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4271), 1, + anon_sym_SQUOTE, + ACTIONS(4273), 1, + anon_sym_BQUOTE, + ACTIONS(4275), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4277), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4279), 1, + aux_sym_unquoted_token1, + ACTIONS(4281), 1, + sym_raw_string_begin, + ACTIONS(4374), 1, + anon_sym_null, + ACTIONS(4378), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4382), 1, + sym_val_date, + STATE(1892), 1, + sym__inter_single_quotes, + STATE(1899), 1, + sym__inter_double_quotes, + STATE(2015), 1, sym_comment, - ACTIONS(4424), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2090), 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, - [51448] = 6, + STATE(4059), 1, + sym__val_number_decimal, + STATE(5176), 1, + sym_val_bool, + ACTIONS(4265), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4372), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4380), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5140), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4464), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1904), 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, + [52010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4426), 1, - anon_sym_DOT_DOT2, - STATE(2006), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2016), 1, sym_comment, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 5, + ACTIONS(2116), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 30, + ACTIONS(2114), 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, @@ -186995,25 +187731,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51501] = 6, + [52063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(2007), 1, + ACTIONS(4361), 1, + anon_sym_BANG, + STATE(2017), 1, + sym_comment, + ACTIONS(1460), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + 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, + [52114] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2018), 1, sym_comment, - ACTIONS(2092), 5, + ACTIONS(2790), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4468), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2090), 31, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2788), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187033,35 +187822,39 @@ 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, - [51554] = 6, + [52174] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4414), 1, - anon_sym_DOT_DOT2, - STATE(2008), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2018), 1, + aux_sym__repeat_newline, + STATE(2019), 1, sym_comment, - ACTIONS(4416), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2229), 5, + ACTIONS(2730), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4478), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2227), 30, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2728), 25, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187080,38 +187873,59 @@ 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, - [51607] = 6, + [52236] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern, - STATE(2009), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2020), 1, sym_comment, - ACTIONS(2600), 5, - anon_sym_GT2, + STATE(2054), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2598), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2728), 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(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187119,46 +187933,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [52306] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + STATE(2021), 1, + sym_comment, + STATE(2056), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51660] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4430), 1, - anon_sym_DOT_DOT2, - STATE(2010), 1, - sym_comment, - ACTIONS(4432), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2108), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(2728), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187166,46 +187989,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [52378] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + STATE(2022), 1, + sym_comment, + STATE(2058), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51713] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4434), 1, - anon_sym_DOT_DOT2, - STATE(2011), 1, - sym_comment, - ACTIONS(4436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2243), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2241), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(2728), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187213,42 +188046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51766] = 6, + [52452] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4438), 1, - anon_sym_DOT_DOT2, - STATE(2012), 1, + STATE(2023), 1, sym_comment, - ACTIONS(4440), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2251), 5, + ACTIONS(1234), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2249), 30, + ACTIONS(1250), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -187277,26 +188090,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51819] = 6, + [52500] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4442), 1, - anon_sym_DOT_DOT2, - STATE(2013), 1, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2024), 1, sym_comment, - ACTIONS(4444), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2259), 5, - anon_sym_GT2, + ACTIONS(4468), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2257), 30, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2720), 20, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187307,42 +188135,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51872] = 6, + [52564] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(2014), 1, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2025), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(2722), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4468), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1714), 31, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 24, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187362,28 +188190,30 @@ 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, - [51925] = 4, + [52626] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2015), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2026), 1, sym_comment, - ACTIONS(2572), 6, - anon_sym_GT2, + ACTIONS(4468), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2722), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2570), 32, + ACTIONS(2720), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187406,34 +188236,32 @@ 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, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51974] = 5, + [52682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4446), 1, - aux_sym__immediate_decimal_token5, - STATE(2016), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2027), 1, sym_comment, - ACTIONS(1834), 6, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2722), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1832), 31, + ACTIONS(2720), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187452,9 +188280,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, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -187462,29 +188287,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52025] = 6, + [52734] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, - STATE(2017), 1, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 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, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2028), 1, sym_comment, - ACTIONS(1218), 5, - anon_sym_GT2, + ACTIONS(4468), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1216), 31, - anon_sym_in, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 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(2720), 5, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4506), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187492,56 +188344,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [52808] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 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, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2029), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4502), 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, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52078] = 11, + 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, + [52884] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(503), 1, + 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, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2018), 1, + STATE(2030), 1, sym_comment, - ACTIONS(2792), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2790), 24, - anon_sym_in, + ACTIONS(2720), 3, sym__newline, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, + ACTIONS(4502), 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, @@ -187549,10 +188461,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [52962] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2031), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + 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, + ACTIONS(2720), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -187560,26 +188514,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52140] = 4, + [53028] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(2019), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2032), 1, sym_comment, - ACTIONS(1226), 5, - anon_sym_GT2, + STATE(2051), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1234), 32, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4486), 8, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187587,70 +188556,64 @@ 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, + ACTIONS(2728), 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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52188] = 15, + [53096] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2020), 1, + STATE(2033), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2696), 7, + ACTIONS(2720), 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(4460), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187659,55 +188622,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52258] = 17, + [53164] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - STATE(2021), 1, - sym_comment, - STATE(2049), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2034), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2692), 5, + ACTIONS(2720), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187716,54 +188677,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52332] = 16, + [53234] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2022), 1, + STATE(2035), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2696), 6, + ACTIONS(2720), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4460), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187772,147 +188733,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52404] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4500), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4502), 1, - sym_filesize_unit, - ACTIONS(4504), 1, - sym_duration_unit, - STATE(2023), 1, - sym_comment, - ACTIONS(4498), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4496), 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, - [52458] = 6, + [53306] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4506), 1, + ACTIONS(2913), 1, sym__newline, - STATE(2024), 1, - sym_comment, - ACTIONS(4509), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2754), 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(2756), 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, - [52510] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2025), 1, + STATE(2036), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2059), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2790), 7, - sym__newline, + ACTIONS(2782), 19, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4460), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187920,184 +188779,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52580] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3745), 1, - sym_raw_string_begin, - ACTIONS(4511), 1, - sym__entry_separator, - STATE(2026), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3740), 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, - [52630] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4514), 1, - sym__newline, - ACTIONS(4518), 1, - anon_sym_LBRACK, - STATE(2027), 1, - sym_comment, - ACTIONS(4509), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2754), 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(2756), 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, - [52684] = 16, + 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, + [53372] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2028), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2790), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4460), 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, - [52756] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2362), 1, - anon_sym_DOT2, - STATE(443), 1, - sym_cell_path, - STATE(669), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(703), 1, - sym_path, - STATE(2029), 1, - sym_comment, - ACTIONS(1442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1444), 31, - ts_builtin_sym_end, + ACTIONS(2788), 20, 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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188108,231 +188831,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, - [52812] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4523), 1, - anon_sym_RBRACK, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(4527), 1, - sym_raw_string_begin, - STATE(2026), 1, - aux_sym__types_body_repeat2, - STATE(2030), 1, - sym_comment, - ACTIONS(4521), 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, - [52866] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(4527), 1, - sym_raw_string_begin, - ACTIONS(4529), 1, - anon_sym_RBRACK, - STATE(2026), 1, - aux_sym__types_body_repeat2, - STATE(2031), 1, - sym_comment, - ACTIONS(4521), 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, - [52920] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4531), 1, - sym__newline, - STATE(2032), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1878), 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, - [52968] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4534), 1, - anon_sym_LBRACK2, - STATE(2033), 1, - sym_comment, - ACTIONS(2342), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2340), 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, - [53018] = 12, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53436] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2913), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2038), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2060), 1, + aux_sym__repeat_newline, + ACTIONS(2784), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(2782), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188344,6 +188879,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, @@ -188351,33 +188890,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53082] = 11, + [53500] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2039), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, + ACTIONS(2788), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -188402,29 +188941,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53144] = 8, + [53562] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2036), 1, + ACTIONS(2913), 1, + sym__newline, + STATE(2040), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2061), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2784), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 27, + ACTIONS(2782), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -188450,23 +188990,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53200] = 6, + [53620] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2041), 1, sym_comment, - ACTIONS(4452), 2, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2790), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + ACTIONS(2788), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -188489,74 +189033,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, - [53252] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2604), 1, - sym__unquoted_pattern, - STATE(2038), 1, - sym_comment, - ACTIONS(2600), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2598), 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, - [53302] = 5, + [53676] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(2039), 1, + ACTIONS(2913), 1, + sym__newline, + STATE(2042), 1, sym_comment, - ACTIONS(785), 5, + STATE(2062), 1, + aux_sym__repeat_newline, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2784), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 31, + ACTIONS(2782), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -188577,8 +189078,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, @@ -188586,101 +189085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53352] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(2040), 1, - sym_comment, - ACTIONS(1588), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1714), 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, - [53402] = 17, + [53730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(2790), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2788), 29, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4460), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188688,56 +189116,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53476] = 18, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [53782] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2913), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2063), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2720), 4, - sym__newline, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2782), 4, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4464), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188746,57 +189189,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53552] = 19, + [53858] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - ACTIONS(4540), 1, - anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2045), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2720), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + ACTIONS(2788), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188805,133 +189246,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53630] = 13, + [53932] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2913), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2044), 1, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4520), 1, + anon_sym_bit_DASHor2, + ACTIONS(4522), 1, + anon_sym_and2, + STATE(2046), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2064), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4460), 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), 12, - sym__newline, - 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, - [53696] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2045), 1, - sym_comment, - ACTIONS(2600), 5, + ACTIONS(4488), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2598), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2782), 3, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [53744] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2046), 1, - sym_comment, - ACTIONS(2722), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + ACTIONS(4486), 8, 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, @@ -188939,65 +189305,56 @@ 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, - [53804] = 14, + [54010] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(503), 1, + 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, + STATE(501), 1, aux_sym__repeat_newline, STATE(2047), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2788), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 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(4460), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189006,53 +189363,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53872] = 15, + [54086] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4520), 1, + anon_sym_bit_DASHor2, + ACTIONS(4522), 1, + anon_sym_and2, + ACTIONS(4524), 1, + anon_sym_xor2, STATE(2048), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2065), 1, + aux_sym__repeat_newline, + ACTIONS(2782), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189061,54 +189423,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53942] = 16, + [54166] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(503), 1, + ACTIONS(4514), 1, + anon_sym_bit_DASHor2, + ACTIONS(4516), 1, + anon_sym_and2, + ACTIONS(4518), 1, + anon_sym_xor2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2049), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2788), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4460), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189117,45 +189482,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54014] = 13, + [54244] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(2034), 1, - aux_sym__repeat_newline, STATE(2050), 1, sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2066), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2692), 19, + ACTIONS(4486), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189163,6 +189524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2782), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -189170,44 +189536,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54080] = 12, + [54312] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2051), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2696), 20, + ACTIONS(4506), 8, 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, @@ -189215,58 +189576,12 @@ 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, - [54144] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2788), 12, sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2035), 1, - aux_sym__repeat_newline, - STATE(2052), 1, - sym_comment, - ACTIONS(2694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 23, - anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -189274,25 +189589,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54208] = 6, + [54378] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(2053), 1, + ACTIONS(2913), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2052), 1, sym_comment, - ACTIONS(2092), 5, + STATE(2067), 1, + aux_sym__repeat_newline, + ACTIONS(2784), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4478), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2090), 30, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2782), 25, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -189311,48 +189635,59 @@ 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, - [54260] = 11, + [54440] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2913), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2054), 1, + STATE(2053), 1, sym_comment, - ACTIONS(2698), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4450), 2, + STATE(2068), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2696), 24, - anon_sym_in, - sym__newline, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2782), 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(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189360,39 +189695,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54510] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2054), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 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(2788), 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, - [54322] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(2055), 1, - sym_comment, - ACTIONS(1588), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1714), 30, + ACTIONS(4506), 8, 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, @@ -189400,229 +189749,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54578] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2913), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + STATE(2055), 1, + sym_comment, + STATE(2069), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54374] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(4527), 1, - sym_raw_string_begin, - ACTIONS(4542), 1, - anon_sym_RBRACK, - STATE(2026), 1, - aux_sym__types_body_repeat2, - STATE(2056), 1, - sym_comment, - ACTIONS(4521), 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, + ACTIONS(2782), 6, 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, - [54428] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4548), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4550), 1, - sym_filesize_unit, - ACTIONS(4552), 1, - sym_duration_unit, - STATE(2057), 1, - sym_comment, - ACTIONS(4546), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4544), 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, - [54482] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, - STATE(2058), 1, - sym_comment, - ACTIONS(1218), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1216), 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, - [54532] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, - STATE(2059), 1, - sym_comment, - ACTIONS(1226), 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_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, - [54582] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern, - STATE(2060), 1, - sym_comment, - ACTIONS(2600), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2598), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189630,62 +189805,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54650] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2056), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 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, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(2788), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54634] = 13, + 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, + [54720] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2913), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(2061), 1, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + STATE(2057), 1, sym_comment, - STATE(2095), 1, + STATE(2070), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2734), 19, - anon_sym_in, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2782), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189693,47 +189917,55 @@ 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, - [54700] = 12, + [54794] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(2062), 1, - sym_comment, - STATE(2097), 1, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(2736), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2058), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2734), 23, - anon_sym_in, + ACTIONS(4502), 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(2788), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189741,42 +189973,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_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54764] = 9, + [54866] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(2063), 1, - sym_comment, - STATE(2099), 1, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4476), 2, + STATE(2059), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2736), 3, + ACTIONS(4500), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2734), 26, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2796), 20, anon_sym_in, - anon_sym_DASH2, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189788,44 +190018,42 @@ 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, - [54822] = 9, + [54930] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, - sym__newline, - STATE(2036), 1, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2064), 1, + STATE(2060), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(2798), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2694), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2692), 26, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2796), 24, anon_sym_in, - anon_sym_DASH2, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189845,31 +190073,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, - [54880] = 7, + [54992] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(2065), 1, - sym_comment, - STATE(2101), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4482), 2, + STATE(2061), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2736), 5, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2798), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2734), 28, + ACTIONS(2796), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -189890,32 +190119,32 @@ 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, - [54934] = 6, + [55048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(2066), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2062), 1, sym_comment, - ACTIONS(2576), 5, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2798), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2574), 30, + ACTIONS(2796), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -189934,8 +190163,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, @@ -189943,56 +190170,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54986] = 18, + [55100] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - STATE(2067), 1, - sym_comment, - STATE(2103), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2063), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2734), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4470), 8, + ACTIONS(2796), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190001,57 +190227,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55062] = 19, + [55174] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4556), 1, + ACTIONS(4516), 1, anon_sym_and2, - STATE(2068), 1, - sym_comment, - STATE(2105), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2064), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2734), 3, + ACTIONS(2796), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190060,58 +190285,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55140] = 20, + [55250] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4556), 1, + ACTIONS(4516), 1, anon_sym_and2, - ACTIONS(4558), 1, + ACTIONS(4518), 1, anon_sym_xor2, - STATE(2069), 1, - sym_comment, - STATE(2107), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(2734), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2065), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(2796), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190120,40 +190344,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55220] = 14, + [55328] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(2070), 1, - sym_comment, - STATE(2110), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2066), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190162,7 +190384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2734), 11, + ACTIONS(2796), 12, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -190174,81 +190397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55288] = 8, + [55394] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4514), 1, - sym__newline, - ACTIONS(4518), 1, - anon_sym_LBRACK, - ACTIONS(4560), 1, - anon_sym_DOT_DOT, - STATE(2071), 1, - sym_comment, - ACTIONS(4509), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2754), 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(2756), 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, - [55344] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(2072), 1, - sym_comment, - STATE(2114), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(2736), 2, + STATE(2067), 1, + sym_comment, + ACTIONS(2798), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 25, + ACTIONS(2796), 26, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -190273,45 +190447,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55406] = 15, + [55454] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(2073), 1, - sym_comment, - STATE(2116), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2068), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2734), 7, + ACTIONS(2796), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -190319,7 +190492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190328,54 +190501,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55476] = 16, + [55522] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(2074), 1, - sym_comment, - STATE(2124), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2069), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2734), 6, + ACTIONS(2796), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190384,56 +190556,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55548] = 17, + [55592] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(2075), 1, - sym_comment, - STATE(2126), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2070), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2734), 5, + ACTIONS(2796), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [55664] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(2071), 1, + sym_comment, + ACTIONS(4368), 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, + [55714] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4526), 1, + sym__newline, + STATE(2072), 1, + sym_comment, + ACTIONS(4529), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2626), 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(2628), 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, + [55766] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4205), 1, + sym__unquoted_pattern, + STATE(2073), 1, + sym_comment, + ACTIONS(811), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(914), 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, + [55816] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(2074), 1, + sym_comment, + ACTIONS(4415), 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, + [55866] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2075), 1, + sym_comment, + ACTIONS(3780), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3778), 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_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, + [55914] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4531), 1, + sym__newline, + STATE(2076), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3782), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3784), 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, + [55964] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(920), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4534), 1, + sym_filesize_unit, + ACTIONS(4536), 1, + sym_duration_unit, + STATE(2077), 1, + sym_comment, + ACTIONS(918), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(916), 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, + [56018] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4540), 1, + anon_sym_RBRACK, + ACTIONS(4542), 1, + sym__entry_separator, + ACTIONS(4544), 1, + sym_raw_string_begin, + STATE(2078), 1, + sym_comment, + STATE(2132), 1, + aux_sym__types_body_repeat2, + ACTIONS(4538), 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, + [56072] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2079), 1, + sym_comment, + ACTIONS(1776), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1774), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4470), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190441,70 +191002,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55622] = 3, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [56120] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2076), 1, + ACTIONS(4546), 1, + anon_sym_LBRACK2, + STATE(2080), 1, sym_comment, - ACTIONS(2756), 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, - [55668] = 8, + ACTIONS(2377), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2375), 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, + [56170] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2077), 1, + ACTIONS(2610), 1, + sym__unquoted_pattern, + STATE(2081), 1, sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2698), 3, + ACTIONS(2606), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2604), 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, + [56220] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, + STATE(2082), 1, + sym_comment, + ACTIONS(811), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2696), 27, + ACTIONS(914), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -190527,27 +191146,73 @@ 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, - [55724] = 6, + [56270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(2078), 1, + STATE(2083), 1, + sym_comment, + ACTIONS(1616), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1738), 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, + [56320] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2084), 1, sym_comment, - ACTIONS(1218), 5, + ACTIONS(1868), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1216), 30, + sym__unquoted_pattern, + ACTIONS(1866), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190569,6 +191234,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, @@ -190578,28 +191244,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55776] = 7, + [56368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, - sym__newline, - STATE(2037), 1, - aux_sym__repeat_newline, - STATE(2079), 1, + STATE(2085), 1, sym_comment, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2694), 5, + ACTIONS(1923), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2692), 28, + sym__unquoted_pattern, + ACTIONS(1921), 31, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -190618,6 +191278,9 @@ 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, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -190625,24 +191288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55830] = 6, + [56416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(2080), 1, + STATE(2086), 1, sym_comment, - ACTIONS(1955), 5, + ACTIONS(1242), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1953), 30, + ACTIONS(1258), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -190671,22 +191332,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55882] = 6, + [56464] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4542), 1, + sym__entry_separator, + ACTIONS(4544), 1, + sym_raw_string_begin, + ACTIONS(4548), 1, + anon_sym_RBRACK, + STATE(2087), 1, + sym_comment, + STATE(2132), 1, + aux_sym__types_body_repeat2, + ACTIONS(4538), 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, + [56518] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4542), 1, + sym__entry_separator, + ACTIONS(4544), 1, + sym_raw_string_begin, + ACTIONS(4550), 1, + anon_sym_RBRACK, + STATE(2088), 1, + sym_comment, + STATE(2132), 1, + aux_sym__types_body_repeat2, + ACTIONS(4538), 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, + [56572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2588), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - STATE(2081), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(2089), 1, sym_comment, - ACTIONS(2586), 5, + ACTIONS(1616), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2584), 30, + ACTIONS(1738), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190717,69 +191472,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55934] = 7, - ACTIONS(103), 1, + [56624] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2090), 1, + sym_comment, + ACTIONS(1565), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1567), 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, + [56672] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4525), 1, + ACTIONS(4542), 1, sym__entry_separator, - ACTIONS(4527), 1, + ACTIONS(4544), 1, sym_raw_string_begin, - ACTIONS(4563), 1, + ACTIONS(4552), 1, anon_sym_RBRACK, - STATE(2026), 1, + STATE(2091), 1, + sym_comment, + STATE(2132), 1, aux_sym__types_body_repeat2, - STATE(2082), 1, + ACTIONS(4538), 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, + [56726] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2092), 1, + sym_comment, + ACTIONS(1242), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1258), 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, + [56776] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2093), 1, + sym_comment, + ACTIONS(1234), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1250), 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, + [56826] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2094), 1, sym_comment, - ACTIONS(4521), 33, + ACTIONS(1555), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1557), 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_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, - [55988] = 6, + [56874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - STATE(2083), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(2095), 1, sym_comment, - ACTIONS(2592), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2590), 30, + ACTIONS(2104), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -190810,214 +191743,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56040] = 6, - ACTIONS(3), 1, + [56926] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2084), 1, + ACTIONS(4558), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4560), 1, + sym_filesize_unit, + ACTIONS(4562), 1, + sym_duration_unit, + STATE(2096), 1, sym_comment, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2698), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2696), 29, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56092] = 4, - ACTIONS(3), 1, + ACTIONS(4556), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4554), 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, + [56980] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2085), 1, + STATE(2097), 1, sym_comment, - ACTIONS(2572), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2570), 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, - [56140] = 6, + ACTIONS(803), 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(805), 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, + [57028] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, - STATE(2086), 1, + STATE(2098), 1, sym_comment, - ACTIONS(1226), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1234), 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, - [56192] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2628), 37, sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, - anon_sym_bit_DASHor2, - STATE(2041), 1, - aux_sym__repeat_newline, - STATE(2087), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [56268] = 4, - ACTIONS(103), 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, + [57074] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2088), 1, + ACTIONS(4568), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4570), 1, + sym_filesize_unit, + ACTIONS(4572), 1, + sym_duration_unit, + STATE(2099), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(4566), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, + ACTIONS(4564), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -191047,57 +191924,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [56316] = 17, + [57128] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2089), 1, + ACTIONS(2417), 1, + anon_sym_DOT2, + STATE(431), 1, + sym_cell_path, + STATE(586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(737), 1, + sym_path, + STATE(2100), 1, sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(1466), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2696), 5, + ACTIONS(1468), 31, + ts_builtin_sym_end, + anon_sym_in, sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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(4460), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191105,58 +191964,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56390] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2861), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, - anon_sym_bit_DASHor2, - ACTIONS(4556), 1, - anon_sym_and2, - STATE(2042), 1, - aux_sym__repeat_newline, - STATE(2090), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4470), 8, + [57184] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2101), 1, + sym_comment, + ACTIONS(2698), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2696), 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, @@ -191164,57 +192001,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56468] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2091), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57236] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2102), 1, + sym_comment, + ACTIONS(2116), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(2696), 4, - sym__newline, - anon_sym_LBRACE, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2114), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4460), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191222,118 +192047,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56544] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, - anon_sym_bit_DASHor2, - ACTIONS(4556), 1, - anon_sym_and2, - ACTIONS(4558), 1, - anon_sym_xor2, - STATE(2043), 1, - aux_sym__repeat_newline, - STATE(2092), 1, - sym_comment, - ACTIONS(2692), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [56624] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - ACTIONS(4540), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2093), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57288] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2103), 1, + sym_comment, + ACTIONS(2606), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(2696), 3, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2604), 32, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4464), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57336] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2718), 1, + anon_sym_LPAREN2, + STATE(2104), 1, + sym_comment, + ACTIONS(2662), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2660), 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, @@ -191341,42 +192137,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56702] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2094), 1, - sym_comment, - STATE(2157), 1, - aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2822), 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57388] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, + STATE(2105), 1, + sym_comment, + ACTIONS(2678), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2676), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191387,48 +192183,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56768] = 12, + [57440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2095), 1, + STATE(2106), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(2578), 6, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4452), 2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2576), 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, - ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2826), 20, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57488] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2107), 1, + sym_comment, + ACTIONS(791), 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(793), 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, + [57536] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2108), 1, + sym_comment, + ACTIONS(1561), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1563), 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, + [57584] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + sym__entry_separator, + ACTIONS(4390), 1, + sym_raw_string_begin, + STATE(1969), 1, + aux_sym__types_body_repeat2, + STATE(2109), 1, + sym_comment, + ACTIONS(4384), 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, + 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, + [57636] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4574), 1, sym__newline, + ACTIONS(4578), 1, + anon_sym_LBRACK, + ACTIONS(4581), 1, + anon_sym_DOT_DOT, + STATE(2110), 1, + sym_comment, + ACTIONS(4529), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2626), 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(2628), 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, + [57692] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern, + STATE(2111), 1, + sym_comment, + ACTIONS(2606), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2604), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191439,44 +192455,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56832] = 12, + [57744] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2018), 1, - aux_sym__repeat_newline, - STATE(2096), 1, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2112), 1, sym_comment, - ACTIONS(2824), 2, + ACTIONS(1242), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2822), 23, + anon_sym_PLUS2, + ACTIONS(1258), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191495,39 +192509,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, - [56896] = 11, + [57796] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2097), 1, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2113), 1, sym_comment, - ACTIONS(2828), 2, + ACTIONS(1234), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4450), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2826), 24, + anon_sym_PLUS2, + ACTIONS(1250), 30, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191546,34 +192555,138 @@ 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, - [56958] = 9, + [57848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + STATE(2114), 1, + sym_comment, + ACTIONS(2578), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + sym__unquoted_pattern, + ACTIONS(2576), 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, + [57896] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4584), 1, sym__newline, - STATE(2098), 1, + STATE(2115), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1888), 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, + [57944] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2916), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2116), 1, sym_comment, - STATE(2159), 1, + STATE(2136), 1, aux_sym__repeat_newline, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2824), 3, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2822), 26, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2840), 19, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -191585,43 +192698,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, - [57016] = 8, + [58010] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2099), 1, + ACTIONS(2916), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2117), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2138), 1, + aux_sym__repeat_newline, + ACTIONS(2842), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2828), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2826), 27, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2840), 23, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -191641,30 +192754,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, - [57072] = 7, + [58074] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2916), 1, sym__newline, - STATE(2100), 1, + STATE(2118), 1, sym_comment, - STATE(2160), 1, + STATE(2140), 1, aux_sym__repeat_newline, - ACTIONS(4482), 2, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2824), 5, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2842), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2822), 28, + ACTIONS(2840), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -191686,32 +192801,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, - [57126] = 6, + [58132] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2101), 1, + ACTIONS(2916), 1, + sym__newline, + STATE(2119), 1, sym_comment, - ACTIONS(4452), 2, + STATE(2142), 1, + aux_sym__repeat_newline, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2828), 5, + ACTIONS(2842), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2826), 29, + ACTIONS(2840), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -191739,113 +192853,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57178] = 18, + [58186] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - STATE(2102), 1, + STATE(2120), 1, sym_comment, - STATE(2161), 1, + STATE(2144), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2822), 4, + ACTIONS(2840), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [57254] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2103), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2826), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191854,115 +192911,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57328] = 19, + [58262] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - ACTIONS(4556), 1, + ACTIONS(4522), 1, anon_sym_and2, - STATE(2104), 1, + STATE(2121), 1, sym_comment, - STATE(2162), 1, + STATE(2146), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2822), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [57406] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2105), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2826), 4, - sym__newline, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2840), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4464), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191971,117 +192970,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57482] = 20, + [58340] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - ACTIONS(4556), 1, + ACTIONS(4522), 1, anon_sym_and2, - ACTIONS(4558), 1, + ACTIONS(4524), 1, anon_sym_xor2, - STATE(2106), 1, + STATE(2122), 1, sym_comment, - STATE(2163), 1, + STATE(2148), 1, aux_sym__repeat_newline, - ACTIONS(2822), 2, + ACTIONS(2840), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [57562] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - ACTIONS(4540), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2107), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2826), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192090,40 +193030,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57640] = 14, + [58420] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(2044), 1, - aux_sym__repeat_newline, - STATE(2108), 1, + STATE(2123), 1, sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2150), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4470), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192132,7 +193072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 11, + ACTIONS(2840), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -192144,41 +193084,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57708] = 14, + [58488] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(908), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4587), 1, + sym_filesize_unit, + ACTIONS(4589), 1, + sym_duration_unit, + STATE(2124), 1, + sym_comment, + ACTIONS(906), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(904), 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, + [58542] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(2109), 1, + STATE(2125), 1, sym_comment, - STATE(2164), 1, + STATE(2152), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, + ACTIONS(2842), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4470), 8, + ACTIONS(2840), 25, anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192186,102 +193169,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2822), 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57776] = 13, + [58604] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2916), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2110), 1, + STATE(2126), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2154), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4460), 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(2826), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4492), 4, 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, - [57842] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2111), 1, - sym_comment, - STATE(2158), 1, - aux_sym__repeat_newline, - ACTIONS(2824), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2822), 25, - anon_sym_in, + ACTIONS(2840), 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(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192289,209 +193237,101 @@ 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, - [57904] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(4359), 1, - sym_raw_string_begin, - STATE(1979), 1, - aux_sym__types_body_repeat2, - STATE(2112), 1, - sym_comment, - ACTIONS(4353), 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, - 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, - [57956] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(904), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4565), 1, - sym_filesize_unit, - ACTIONS(4567), 1, - sym_duration_unit, - STATE(2113), 1, - sym_comment, - ACTIONS(902), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(900), 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, - [58010] = 10, + [58674] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2114), 1, - sym_comment, - ACTIONS(2828), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2826), 26, - anon_sym_in, + ACTIONS(4574), 1, sym__newline, + ACTIONS(4578), 1, + anon_sym_LBRACK, + STATE(2127), 1, + sym_comment, + ACTIONS(4529), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2626), 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(2628), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_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, - [58070] = 15, + 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, + [58728] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2916), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(2115), 1, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + STATE(2128), 1, sym_comment, - STATE(2166), 1, + STATE(2156), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2822), 7, + ACTIONS(2840), 6, 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(4470), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192500,52 +193340,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58140] = 14, + [58800] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2916), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2116), 1, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + STATE(2129), 1, sym_comment, - ACTIONS(4450), 2, + STATE(2158), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2826), 8, - sym__newline, + ACTIONS(2840), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192554,24 +193397,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58208] = 7, - ACTIONS(103), 1, + [58874] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4573), 1, + ACTIONS(4595), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4575), 1, + ACTIONS(4597), 1, sym_filesize_unit, - ACTIONS(4577), 1, + ACTIONS(4599), 1, sym_duration_unit, - STATE(2117), 1, + STATE(2130), 1, sym_comment, - ACTIONS(4571), 5, + ACTIONS(4593), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 29, + ACTIONS(4591), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -192601,168 +193444,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58262] = 4, - ACTIONS(3), 1, + [58928] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2118), 1, + ACTIONS(4605), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4607), 1, + sym_filesize_unit, + ACTIONS(4609), 1, + sym_duration_unit, + STATE(2131), 1, sym_comment, - ACTIONS(1512), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1514), 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, - [58310] = 4, - ACTIONS(3), 1, + ACTIONS(4603), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4601), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58982] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2119), 1, - sym_comment, - ACTIONS(1545), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1547), 33, + ACTIONS(3761), 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_finally, - anon_sym_match, + ACTIONS(4611), 1, + sym__entry_separator, + STATE(2132), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3756), 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_DASH_DASH, + 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, - [58358] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - STATE(2025), 1, - aux_sym__repeat_newline, - STATE(2120), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2822), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4470), 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, - [58430] = 7, - ACTIONS(103), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [59032] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4583), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4585), 1, - sym_filesize_unit, - ACTIONS(4587), 1, - sym_duration_unit, - STATE(2121), 1, + STATE(2133), 1, sym_comment, - ACTIONS(4581), 5, + ACTIONS(759), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4579), 29, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(761), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -192792,24 +193579,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58484] = 7, - ACTIONS(103), 1, + sym_duration_unit, + [59080] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4593), 1, + ACTIONS(4618), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4595), 1, + ACTIONS(4620), 1, sym_filesize_unit, - ACTIONS(4597), 1, + ACTIONS(4622), 1, sym_duration_unit, - STATE(2122), 1, + STATE(2134), 1, sym_comment, - ACTIONS(4591), 5, + ACTIONS(4616), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(4614), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -192839,304 +193627,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2123), 1, - sym_comment, - ACTIONS(1476), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1478), 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, - [58586] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2124), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2826), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4460), 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, - [58656] = 17, + [59134] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - STATE(2028), 1, - aux_sym__repeat_newline, - STATE(2125), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2822), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4470), 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, - [58730] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - STATE(503), 1, + STATE(2024), 1, aux_sym__repeat_newline, - STATE(2126), 1, + STATE(2135), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2826), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4460), 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, - [58802] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2051), 1, - aux_sym__repeat_newline, - STATE(2127), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2688), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58868] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2128), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4460), 8, + ACTIONS(2836), 19, anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193144,12 +193673,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2696), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -193157,36 +193680,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58934] = 12, + [59200] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(2054), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2129), 1, + STATE(2136), 1, sym_comment, - ACTIONS(2690), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 23, + ACTIONS(4502), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2844), 20, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193198,10 +193725,6 @@ 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, @@ -193209,31 +193732,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58998] = 9, + [59264] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2967), 1, sym__newline, - STATE(2077), 1, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2025), 1, aux_sym__repeat_newline, - STATE(2130), 1, + STATE(2137), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(2838), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2690), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2688), 26, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2836), 23, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193253,32 +193781,38 @@ 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, - [59056] = 7, + [59328] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - STATE(2084), 1, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2131), 1, + STATE(2138), 1, sym_comment, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2690), 5, + ACTIONS(2846), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4468), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2688), 28, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2844), 24, anon_sym_in, - anon_sym_DASH2, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193298,85 +193832,34 @@ 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, - [59110] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(2132), 1, - sym_comment, - ACTIONS(4351), 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, - [59160] = 11, + [59390] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2046), 1, + STATE(2026), 1, aux_sym__repeat_newline, - STATE(2133), 1, + STATE(2139), 1, sym_comment, - ACTIONS(2694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2692), 25, + ACTIONS(2838), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2836), 26, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193401,32 +193884,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59222] = 10, + [59448] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2134), 1, + STATE(2140), 1, sym_comment, - ACTIONS(2698), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4450), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2696), 26, + ACTIONS(2846), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2844), 27, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193451,54 +193932,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59282] = 15, + [59504] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2047), 1, + STATE(2027), 1, aux_sym__repeat_newline, - STATE(2135), 1, + STATE(2141), 1, sym_comment, - ACTIONS(4472), 2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2838), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2692), 7, + anon_sym_PLUS2, + ACTIONS(2836), 28, + anon_sym_in, + anon_sym_DASH2, 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(4470), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193506,199 +193964,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59352] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, - anon_sym_bit_DASHor2, - STATE(2089), 1, - aux_sym__repeat_newline, - STATE(2136), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2688), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [59428] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, - anon_sym_bit_DASHor2, - ACTIONS(4556), 1, - anon_sym_and2, - STATE(2091), 1, - aux_sym__repeat_newline, - STATE(2137), 1, - sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [59506] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4556), 1, - anon_sym_and2, - ACTIONS(4558), 1, - anon_sym_xor2, - STATE(2093), 1, + [59558] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2138), 1, + STATE(2142), 1, sym_comment, - ACTIONS(2688), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [59586] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2139), 1, - sym_comment, - ACTIONS(1732), 6, + ACTIONS(2846), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 31, + ACTIONS(2844), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -193717,9 +194018,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, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -193727,135 +194025,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59634] = 14, + [59610] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2967), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(2128), 1, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4520), 1, + anon_sym_bit_DASHor2, + STATE(2028), 1, aux_sym__repeat_newline, - STATE(2140), 1, + STATE(2143), 1, sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4470), 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(2688), 11, + ACTIONS(2836), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, 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, - [59702] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2141), 1, - sym_comment, - ACTIONS(2572), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2570), 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, - [59750] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - STATE(2134), 1, - aux_sym__repeat_newline, - STATE(2142), 1, - sym_comment, - ACTIONS(2690), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2688), 25, + ACTIONS(4486), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193863,158 +194083,55 @@ 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, - [59812] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(890), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4599), 1, - sym_filesize_unit, - ACTIONS(4601), 1, - sym_duration_unit, - STATE(2143), 1, - sym_comment, - ACTIONS(888), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(886), 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, - [59866] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(2144), 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, - [59916] = 15, + [59686] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(2145), 1, - sym_comment, - STATE(2146), 1, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4514), 1, + anon_sym_bit_DASHor2, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + STATE(2144), 1, + sym_comment, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 7, + ACTIONS(2844), 5, + 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(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194023,52 +194140,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59986] = 14, + [59760] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2967), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4520), 1, + anon_sym_bit_DASHor2, + ACTIONS(4522), 1, + anon_sym_and2, + STATE(2029), 1, aux_sym__repeat_newline, - STATE(2146), 1, + STATE(2145), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2836), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2696), 8, + ACTIONS(4486), 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, + [59838] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 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, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2146), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2844), 4, 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(4460), 8, + ACTIONS(4502), 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, @@ -194077,98 +194257,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60054] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2147), 1, - sym_comment, - ACTIONS(3771), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3769), 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_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, - [60102] = 16, + [59914] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4474), 1, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - STATE(2020), 1, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4520), 1, + anon_sym_bit_DASHor2, + ACTIONS(4522), 1, + anon_sym_and2, + ACTIONS(4524), 1, + anon_sym_xor2, + STATE(2030), 1, aux_sym__repeat_newline, - STATE(2148), 1, + STATE(2147), 1, sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(2836), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 6, - anon_sym_LBRACE, + ACTIONS(4486), 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, + [59994] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 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, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2148), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2844), 3, + sym__newline, + anon_sym_LBRACE, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4470), 8, + ACTIONS(4502), 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, @@ -194177,101 +194376,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60174] = 5, + [60072] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4603), 1, + ACTIONS(2967), 1, sym__newline, - STATE(2149), 2, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(2149), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3760), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4486), 8, anon_sym_in, - ACTIONS(3762), 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, - [60224] = 17, + anon_sym_not_DASHin2, + anon_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(2836), 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, + [60140] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2928), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - STATE(2022), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2150), 1, sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + 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, + ACTIONS(2844), 12, + sym__newline, + 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, - ACTIONS(2688), 5, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60206] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2967), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2151), 1, + sym_comment, + STATE(2166), 1, + aux_sym__repeat_newline, + ACTIONS(2838), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2836), 25, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4470), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194279,158 +194521,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60298] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2151), 1, - sym_comment, - ACTIONS(866), 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(868), 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, - [60346] = 5, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [60268] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - sym__unquoted_pattern, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2152), 1, sym_comment, - ACTIONS(785), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2844), 26, anon_sym_in, - ACTIONS(884), 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, - [60396] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(775), 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(777), 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, - [60444] = 4, + 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, + [60328] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(2967), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + STATE(2033), 1, + aux_sym__repeat_newline, + STATE(2153), 1, sym_comment, - ACTIONS(1834), 6, - anon_sym_GT2, + ACTIONS(4478), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1832), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2836), 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(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194438,43 +194639,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [60398] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2154), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 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, - 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, + ACTIONS(2844), 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, - [60492] = 4, + 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, + [60466] = 16, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2967), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + STATE(2034), 1, + aux_sym__repeat_newline, STATE(2155), 1, sym_comment, - ACTIONS(1921), 6, - anon_sym_GT2, + ACTIONS(4478), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1919), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2836), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4486), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194482,72 +194749,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [60538] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2156), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 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, - anon_sym_LPAREN2, + ACTIONS(2844), 7, + 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, + [60608] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2967), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + STATE(2035), 1, + aux_sym__repeat_newline, + STATE(2157), 1, + sym_comment, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2836), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [60540] = 16, + ACTIONS(4486), 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, + [60682] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2861), 1, - sym__newline, - ACTIONS(4474), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4486), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - ACTIONS(4490), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(2048), 1, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2156), 1, + STATE(2158), 1, sym_comment, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4482), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, + ACTIONS(4502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4480), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2692), 6, + ACTIONS(2844), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4470), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194556,40 +194917,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60612] = 12, + [60754] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(2037), 1, aux_sym__repeat_newline, - STATE(2157), 1, + STATE(2159), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2790), 20, + ACTIONS(2728), 19, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -194608,32 +194970,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60676] = 10, + [60820] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(2039), 1, aux_sym__repeat_newline, - STATE(2158), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2792), 2, + ACTIONS(2730), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 26, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2728), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -194653,34 +195019,33 @@ 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, - [60736] = 8, + [60884] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + ACTIONS(2878), 1, + sym__newline, + STATE(2041), 1, aux_sym__repeat_newline, - STATE(2159), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2792), 3, + ACTIONS(2730), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2790), 27, + ACTIONS(2728), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -194706,25 +195071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60792] = 6, + [60942] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + ACTIONS(2878), 1, + sym__newline, + STATE(2043), 1, aux_sym__repeat_newline, - STATE(2160), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2792), 5, + ACTIONS(2730), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2790), 29, + ACTIONS(2728), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -194752,55 +195118,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60844] = 17, + [60996] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - STATE(503), 1, + STATE(2045), 1, aux_sym__repeat_newline, - STATE(2161), 1, + STATE(2163), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2728), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2790), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194809,56 +195176,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60918] = 18, + [61072] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2878), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - ACTIONS(4538), 1, + ACTIONS(4522), 1, anon_sym_and2, - STATE(503), 1, + STATE(2047), 1, aux_sym__repeat_newline, - STATE(2162), 1, + STATE(2164), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2790), 4, - sym__newline, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2728), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4464), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194867,57 +195235,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60994] = 19, + [61150] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4476), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4484), 1, anon_sym_PLUS2, - ACTIONS(4468), 1, + ACTIONS(4496), 1, anon_sym_bit_DASHand2, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, + ACTIONS(4520), 1, anon_sym_bit_DASHor2, - ACTIONS(4538), 1, + ACTIONS(4522), 1, anon_sym_and2, - ACTIONS(4540), 1, + ACTIONS(4524), 1, anon_sym_xor2, - STATE(503), 1, + STATE(2049), 1, aux_sym__repeat_newline, - STATE(2163), 1, + STATE(2165), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(2728), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4478), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, + ACTIONS(4488), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2790), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4464), 4, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4466), 4, + ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4460), 8, + ACTIONS(4486), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194926,76 +195295,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61072] = 13, + [61230] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(4466), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4474), 1, anon_sym_PLUS2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2164), 1, + STATE(2166), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(2722), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4468), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4452), 2, + ACTIONS(4470), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, + ACTIONS(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4460), 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(2790), 12, - sym__newline, - 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, - [61138] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2165), 1, - sym_comment, - ACTIONS(1218), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1216), 32, + ACTIONS(2720), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -195014,181 +195340,21 @@ 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, - [61186] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2166), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2790), 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(4460), 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, - [61254] = 20, + [61290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - anon_sym_DASH2, - ACTIONS(2841), 1, - anon_sym_and2, - ACTIONS(2851), 1, - anon_sym_PLUS2, - ACTIONS(2855), 1, - anon_sym_bit_DASHand2, - ACTIONS(2857), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2859), 1, - anon_sym_bit_DASHor2, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(2937), 1, - anon_sym_xor2, - ACTIONS(4606), 1, - anon_sym_or2, STATE(2167), 1, sym_comment, - STATE(2199), 1, - aux_sym__repeat_newline, - ACTIONS(2835), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2839), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2847), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2849), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2853), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2843), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2845), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2830), 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, - [61333] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2168), 1, - sym_comment, - ACTIONS(4608), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4610), 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, - [61380] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2169), 1, - sym_comment, - ACTIONS(1516), 3, + ACTIONS(2350), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1518), 33, + ACTIONS(2348), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195222,16 +195388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61427] = 4, + [61337] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2170), 1, + STATE(2168), 1, sym_comment, - ACTIONS(1468), 3, + ACTIONS(2586), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1470), 33, + ACTIONS(2584), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195265,16 +195431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61474] = 4, + [61384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2169), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(2590), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1474), 33, + ACTIONS(2588), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195308,59 +195474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61521] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2172), 1, - sym_comment, - ACTIONS(3771), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3769), 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, - [61568] = 4, + [61431] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2170), 1, sym_comment, - ACTIONS(2338), 3, + ACTIONS(1915), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2336), 33, + ACTIONS(1913), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195394,16 +195517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61615] = 4, + [61478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2400), 3, + ACTIONS(2594), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2398), 33, + ACTIONS(2592), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195437,16 +195560,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61662] = 4, + [61525] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2172), 1, sym_comment, - ACTIONS(1522), 3, + ACTIONS(1527), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1524), 33, + ACTIONS(1529), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195480,16 +195603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61709] = 4, + [61572] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2173), 1, sym_comment, - ACTIONS(785), 3, + ACTIONS(4624), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(884), 33, + ACTIONS(4626), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195523,16 +195646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61756] = 4, + [61619] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2174), 1, sym_comment, - ACTIONS(1887), 3, + ACTIONS(2387), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1885), 33, + ACTIONS(2385), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195566,16 +195689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61803] = 4, + [61666] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2175), 1, sym_comment, - ACTIONS(2472), 3, + ACTIONS(2391), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2470), 33, + ACTIONS(2389), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195609,16 +195732,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61850] = 4, + [61713] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2176), 1, sym_comment, - ACTIONS(4612), 3, + ACTIONS(2626), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4614), 33, + ACTIONS(2628), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195644,7 +195767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -195652,16 +195775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61897] = 4, + [61760] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2177), 1, sym_comment, - ACTIONS(4616), 3, + ACTIONS(2395), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4618), 33, + ACTIONS(2393), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195695,16 +195818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61944] = 4, + [61807] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2178), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(1486), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1532), 33, + ACTIONS(1488), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195738,16 +195861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61991] = 4, + [61854] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2179), 1, sym_comment, - ACTIONS(1588), 3, + ACTIONS(2399), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1714), 33, + ACTIONS(2397), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195781,61 +195904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62038] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(4527), 1, - sym_raw_string_begin, - STATE(2026), 1, - aux_sym__types_body_repeat2, - STATE(2183), 1, - sym_comment, - ACTIONS(4521), 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, - [62089] = 4, + [61901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2352), 3, + ACTIONS(2658), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2350), 33, + ACTIONS(2656), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195869,16 +195947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62136] = 4, + [61948] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(2181), 1, sym_comment, - ACTIONS(1895), 3, + ACTIONS(1935), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1893), 33, + ACTIONS(1933), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195912,16 +195990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62183] = 4, + [61995] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(2182), 1, sym_comment, - ACTIONS(2374), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2372), 33, + ACTIONS(2413), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195955,16 +196033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62230] = 4, + [62042] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2187), 1, + STATE(2183), 1, sym_comment, - ACTIONS(2404), 3, + ACTIONS(1531), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2402), 33, + ACTIONS(1533), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195998,16 +196076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62277] = 4, + [62089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(2184), 1, sym_comment, - ACTIONS(2428), 3, + ACTIONS(2425), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2426), 33, + ACTIONS(2423), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196041,15 +196119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62324] = 5, + [62136] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4620), 1, + ACTIONS(4628), 1, sym__newline, - STATE(2189), 2, + STATE(2185), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3760), 7, + ACTIONS(3782), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -196057,7 +196135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3762), 27, + ACTIONS(3784), 27, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196085,16 +196163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [62373] = 4, + [62185] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2186), 1, sym_comment, - ACTIONS(2472), 3, + ACTIONS(1541), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2470), 33, + ACTIONS(1543), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196128,75 +196206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62420] = 20, + [62232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(4474), 1, - anon_sym_DASH2, - ACTIONS(4486), 1, - anon_sym_PLUS2, - ACTIONS(4490), 1, - anon_sym_bit_DASHand2, - ACTIONS(4492), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4554), 1, - anon_sym_bit_DASHor2, - ACTIONS(4556), 1, - anon_sym_and2, - ACTIONS(4558), 1, - anon_sym_xor2, - ACTIONS(4623), 1, - anon_sym_or2, - STATE(2191), 1, - sym_comment, - STATE(2195), 1, - aux_sym__repeat_newline, - ACTIONS(4472), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4476), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4478), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4480), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4470), 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, - [62499] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2192), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2556), 3, + ACTIONS(1545), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2554), 33, + ACTIONS(1547), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196230,16 +196249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62546] = 4, + [62279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2188), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(2429), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1582), 33, + ACTIONS(2427), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196273,16 +196292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62593] = 4, + [62326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2189), 1, sym_comment, - ACTIONS(2632), 3, + ACTIONS(2469), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2630), 33, + ACTIONS(2467), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196316,117 +196335,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62640] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(4448), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - ACTIONS(4468), 1, - anon_sym_bit_DASHand2, - ACTIONS(4494), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4536), 1, - anon_sym_bit_DASHor2, - ACTIONS(4538), 1, - anon_sym_and2, - ACTIONS(4540), 1, - anon_sym_xor2, - ACTIONS(4625), 1, - anon_sym_or2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2195), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4452), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4454), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4458), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4464), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4466), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4460), 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, - [62719] = 3, - ACTIONS(3), 1, + [62373] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2196), 1, + ACTIONS(4542), 1, + sym__entry_separator, + ACTIONS(4544), 1, + sym_raw_string_begin, + STATE(2132), 1, + aux_sym__types_body_repeat2, + STATE(2190), 1, sym_comment, - ACTIONS(1965), 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, - [62764] = 4, + ACTIONS(4538), 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, + [62424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2191), 1, sym_comment, - ACTIONS(2476), 3, + ACTIONS(1911), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2474), 33, + ACTIONS(1909), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196460,16 +196423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62811] = 4, + [62471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2192), 1, sym_comment, - ACTIONS(1899), 3, + ACTIONS(2363), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1897), 33, + ACTIONS(2361), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196503,75 +196466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62858] = 20, + [62518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - anon_sym_DASH2, - ACTIONS(2872), 1, - anon_sym_PLUS2, - ACTIONS(2884), 1, - anon_sym_bit_DASHand2, - ACTIONS(2886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2922), 1, - anon_sym_bit_DASHor2, - ACTIONS(2924), 1, - anon_sym_and2, - ACTIONS(2926), 1, - anon_sym_xor2, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(4627), 1, - anon_sym_or2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2199), 1, - sym_comment, - ACTIONS(2866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2868), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2870), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2876), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2882), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2878), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2880), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2874), 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, - [62937] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2200), 1, + STATE(2193), 1, sym_comment, - ACTIONS(2560), 3, + ACTIONS(1903), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2558), 33, + ACTIONS(1901), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196605,16 +196509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62984] = 4, + [62565] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2201), 1, + STATE(2194), 1, sym_comment, - ACTIONS(2480), 3, + ACTIONS(4631), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2478), 33, + ACTIONS(4633), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196648,118 +196552,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63031] = 4, - ACTIONS(3), 1, + [62612] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2195), 1, sym_comment, - ACTIONS(2118), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2116), 33, + ACTIONS(3780), 2, 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, + sym__entry_separator, + ACTIONS(3778), 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_DASH_DASH, + 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, - [63078] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3882), 1, - anon_sym_DASH2, - ACTIONS(3886), 1, - anon_sym_PLUS2, - ACTIONS(3894), 1, - anon_sym_bit_DASHand2, - ACTIONS(3896), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3898), 1, - anon_sym_bit_DASHor2, - ACTIONS(3900), 1, - anon_sym_and2, - ACTIONS(3902), 1, - anon_sym_xor2, - ACTIONS(4629), 1, - anon_sym_or2, - STATE(2203), 1, - sym_comment, - STATE(2205), 1, - aux_sym__repeat_newline, - ACTIONS(3852), 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(3880), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3888), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3884), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3892), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3890), 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, - [63157] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [62659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2196), 1, sym_comment, - ACTIONS(2380), 3, + ACTIONS(4635), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2378), 33, + ACTIONS(4637), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196793,75 +196638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63204] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - ACTIONS(3932), 1, - anon_sym_xor2, - ACTIONS(4631), 1, - anon_sym_or2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2205), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 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, - [63283] = 4, + [62706] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2197), 1, sym_comment, - ACTIONS(2754), 3, + ACTIONS(4639), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2756), 33, + ACTIONS(4641), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196887,7 +196673,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, @@ -196895,16 +196681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63330] = 4, + [62753] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2198), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(2666), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1482), 33, + ACTIONS(2664), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196938,16 +196724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63377] = 4, + [62800] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2199), 1, sym_comment, - ACTIONS(2662), 3, + ACTIONS(4643), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2660), 33, + ACTIONS(4645), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196981,16 +196767,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63424] = 4, + [62847] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2200), 1, + sym_comment, + ACTIONS(2126), 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, + [62892] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, + STATE(2201), 1, + sym_comment, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(914), 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, + [62941] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2202), 1, sym_comment, - ACTIONS(2384), 3, + ACTIONS(1535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2382), 33, + ACTIONS(1537), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197024,16 +196896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63471] = 4, + [62988] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2203), 1, sym_comment, - ACTIONS(2388), 3, + ACTIONS(2457), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2386), 33, + ACTIONS(2455), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197067,16 +196939,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63518] = 4, + [63035] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4476), 1, + anon_sym_DASH2, + ACTIONS(4484), 1, + anon_sym_PLUS2, + ACTIONS(4496), 1, + anon_sym_bit_DASHand2, + ACTIONS(4498), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4520), 1, + anon_sym_bit_DASHor2, + ACTIONS(4522), 1, + anon_sym_and2, + ACTIONS(4524), 1, + anon_sym_xor2, + ACTIONS(4647), 1, + anon_sym_or2, + STATE(2204), 1, sym_comment, - ACTIONS(2392), 3, + STATE(2207), 1, + aux_sym__repeat_newline, + ACTIONS(4478), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4480), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4482), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4490), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4492), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4486), 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, + [63114] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2205), 1, + sym_comment, + ACTIONS(2457), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2390), 33, + ACTIONS(2455), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197110,16 +197041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63565] = 4, + [63161] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(2206), 1, sym_comment, - ACTIONS(2670), 3, + ACTIONS(2473), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2668), 33, + ACTIONS(2471), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197153,16 +197084,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63612] = 4, + [63208] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2213), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4466), 1, + anon_sym_DASH2, + ACTIONS(4474), 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(4649), 1, + anon_sym_or2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2207), 1, sym_comment, - ACTIONS(1907), 3, + ACTIONS(4468), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4470), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4472), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4500), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4502), 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, + [63287] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2208), 1, + sym_comment, + ACTIONS(811), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1905), 33, + ACTIONS(914), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197196,16 +197186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63659] = 4, + [63334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2214), 1, + STATE(2209), 1, sym_comment, - ACTIONS(2548), 3, + ACTIONS(1616), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2546), 33, + ACTIONS(1738), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197239,16 +197229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63706] = 4, + [63381] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2210), 1, sym_comment, - ACTIONS(4633), 3, + ACTIONS(2279), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4635), 33, + ACTIONS(2277), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197282,60 +197272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63753] = 5, + [63428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(2216), 1, - sym_comment, - ACTIONS(785), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 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, - [63802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2217), 1, + STATE(2211), 1, sym_comment, - ACTIONS(2356), 3, + ACTIONS(2461), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2354), 33, + ACTIONS(2459), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197369,16 +197315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63849] = 4, + [63475] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2218), 1, + STATE(2212), 1, sym_comment, - ACTIONS(2552), 3, + ACTIONS(2465), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2550), 33, + ACTIONS(2463), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197412,16 +197358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63896] = 4, + [63522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2213), 1, sym_comment, - ACTIONS(4637), 3, + ACTIONS(2582), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4639), 33, + ACTIONS(2580), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197455,114 +197401,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63943] = 27, + [63569] = 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(3110), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, - anon_sym_null, - ACTIONS(4647), 1, - sym__newline, - ACTIONS(4649), 1, - anon_sym_GT2, - ACTIONS(4651), 1, - anon_sym_DOT_DOT, - ACTIONS(4655), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, - sym_val_date, - STATE(2220), 1, + STATE(2214), 1, sym_comment, - STATE(2270), 1, - aux_sym__types_body_repeat1, - STATE(2292), 1, - aux_sym__collection_body_repeat1, - STATE(4165), 1, - sym__val_number_decimal, - STATE(4860), 1, - sym__collection_entry, - STATE(5471), 1, - sym__collection_body, - STATE(5520), 1, - sym_val_bool, - ACTIONS(4641), 2, + ACTIONS(2712), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2710), 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(4653), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4586), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5277), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64035] = 13, + 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, + [63616] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3870), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(2221), 1, + ACTIONS(3906), 1, + anon_sym_bit_DASHand2, + ACTIONS(3908), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3910), 1, + anon_sym_bit_DASHor2, + ACTIONS(3912), 1, + anon_sym_and2, + ACTIONS(3914), 1, + anon_sym_xor2, + ACTIONS(4651), 1, + anon_sym_or2, + STATE(2215), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4669), 2, + STATE(2216), 1, + aux_sym__repeat_newline, + ACTIONS(3872), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(3898), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3900), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, + ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2656), 7, - anon_sym_LBRACE, + ACTIONS(3902), 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, + [63695] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3924), 1, + anon_sym_DASH2, + ACTIONS(3934), 1, + anon_sym_PLUS2, + ACTIONS(3942), 1, + anon_sym_bit_DASHand2, + ACTIONS(3944), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3946), 1, + anon_sym_bit_DASHor2, + ACTIONS(3948), 1, anon_sym_and2, + ACTIONS(3950), 1, anon_sym_xor2, + ACTIONS(4653), 1, anon_sym_or2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2216), 1, + sym_comment, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3926), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3930), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3932), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3936), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3928), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3940), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3938), 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, + [63774] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2848), 1, + anon_sym_DASH2, + ACTIONS(2856), 1, + anon_sym_PLUS2, + ACTIONS(2862), 1, + anon_sym_and2, + ACTIONS(2870), 1, anon_sym_bit_DASHand2, + ACTIONS(2872), 1, anon_sym_bit_DASHxor2, + ACTIONS(2874), 1, anon_sym_bit_DASHor2, - ACTIONS(4663), 8, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(2911), 1, + anon_sym_xor2, + ACTIONS(4655), 1, + anon_sym_or2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2217), 1, + sym_comment, + ACTIONS(2850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2852), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2854), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2860), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2868), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2864), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2866), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2858), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197571,51 +197621,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64099] = 15, + [63853] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(2883), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(2895), 1, anon_sym_PLUS2, - ACTIONS(4703), 1, + ACTIONS(2899), 1, anon_sym_bit_DASHand2, - ACTIONS(4705), 1, + ACTIONS(2901), 1, anon_sym_bit_DASHxor2, - STATE(2222), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(2905), 1, + anon_sym_and2, + ACTIONS(2907), 1, + anon_sym_xor2, + ACTIONS(2909), 1, + anon_sym_bit_DASHor2, + ACTIONS(4657), 1, + anon_sym_or2, + STATE(2217), 1, + aux_sym__repeat_newline, + STATE(2218), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(2881), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4689), 2, + ACTIONS(2885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(2891), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(2893), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, + ACTIONS(2897), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, + ACTIONS(2887), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4693), 4, + ACTIONS(2889), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2656), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4683), 8, + ACTIONS(2876), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197624,93 +197680,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64167] = 5, + [63932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__newline, - STATE(2223), 2, - aux_sym__repeat_newline, + STATE(2219), 1, sym_comment, - ACTIONS(1883), 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(1878), 25, + ACTIONS(1600), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1602), 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, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64215] = 14, + [63979] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - ACTIONS(4710), 1, + ACTIONS(4679), 1, anon_sym_bit_DASHand2, - STATE(2224), 1, + STATE(2220), 1, sym_comment, - ACTIONS(4665), 2, + ACTIONS(4661), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, + ACTIONS(4669), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2656), 6, - anon_sym_LBRACE, + ACTIONS(2700), 6, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4663), 8, + ACTIONS(4659), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197719,24 +197775,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64281] = 5, + [64045] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2225), 1, + STATE(2221), 1, sym_comment, - ACTIONS(4675), 2, + ACTIONS(4665), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2658), 5, + ACTIONS(4673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2702), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2656), 28, + ACTIONS(2700), 26, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -197755,35 +197815,29 @@ 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, - [64329] = 7, + [64097] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2226), 1, + STATE(2222), 1, sym_comment, - ACTIONS(4669), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2658), 3, + ACTIONS(2702), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2656), 26, + ACTIONS(2700), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -197802,36 +197856,144 @@ 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, - [64381] = 10, + [64145] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - STATE(2227), 1, + ACTIONS(4679), 1, + anon_sym_bit_DASHand2, + ACTIONS(4681), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4683), 1, + anon_sym_bit_DASHor2, + STATE(2223), 1, sym_comment, - ACTIONS(2658), 2, + ACTIONS(4661), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, ACTIONS(4677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2700), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4667), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4669), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4659), 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, + [64215] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4663), 1, + anon_sym_DASH2, + ACTIONS(4675), 1, + anon_sym_PLUS2, + ACTIONS(4679), 1, + anon_sym_bit_DASHand2, + ACTIONS(4681), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4683), 1, + anon_sym_bit_DASHor2, + ACTIONS(4685), 1, + anon_sym_and2, + STATE(2224), 1, + sym_comment, + ACTIONS(4661), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4665), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2656), 23, + ACTIONS(2700), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4667), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4669), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4659), 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, + [64287] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4687), 1, + anon_sym_DASH2, + ACTIONS(4695), 1, + anon_sym_PLUS2, + STATE(2225), 1, + sym_comment, + ACTIONS(2702), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4689), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2700), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -197852,166 +198014,179 @@ 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, - [64439] = 27, + [64343] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(3110), 1, + ACTIONS(3151), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, + ACTIONS(4699), 1, anon_sym_null, - ACTIONS(4647), 1, + ACTIONS(4703), 1, sym__newline, - ACTIONS(4651), 1, + ACTIONS(4705), 1, + anon_sym_GT2, + ACTIONS(4707), 1, anon_sym_DOT_DOT, - ACTIONS(4655), 1, + ACTIONS(4711), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, + ACTIONS(4713), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, + ACTIONS(4717), 1, sym_val_date, - ACTIONS(4712), 1, - anon_sym_GT2, - STATE(2228), 1, + STATE(2226), 1, sym_comment, - STATE(2270), 1, + STATE(2271), 1, aux_sym__types_body_repeat1, - STATE(2292), 1, + STATE(2297), 1, aux_sym__collection_body_repeat1, - STATE(4165), 1, + STATE(4054), 1, sym__val_number_decimal, - STATE(4860), 1, + STATE(4745), 1, sym__collection_entry, - STATE(5396), 1, - sym__collection_body, - STATE(5520), 1, + STATE(5402), 1, sym_val_bool, - ACTIONS(4641), 2, + STATE(5412), 1, + sym__collection_body, + ACTIONS(4697), 2, anon_sym_true, anon_sym_false, - ACTIONS(4653), 2, + ACTIONS(4709), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, + ACTIONS(4715), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4586), 2, + STATE(4465), 2, sym_val_string, sym__unquoted_in_record, - STATE(5277), 2, + STATE(5228), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, + ACTIONS(4701), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [64531] = 9, + [64435] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - STATE(2229), 1, + ACTIONS(4679), 1, + anon_sym_bit_DASHand2, + ACTIONS(4681), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4683), 1, + anon_sym_bit_DASHor2, + ACTIONS(4685), 1, + anon_sym_and2, + ACTIONS(4719), 1, + anon_sym_xor2, + STATE(2227), 1, sym_comment, - ACTIONS(2658), 2, + ACTIONS(2700), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4661), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2656), 25, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4669), 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, - [64587] = 15, + ACTIONS(4659), 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, + [64509] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(4710), 1, + ACTIONS(4725), 1, + anon_sym_and2, + ACTIONS(4733), 1, anon_sym_bit_DASHand2, - ACTIONS(4714), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHxor2, - STATE(2230), 1, + ACTIONS(4737), 1, + anon_sym_bit_DASHor2, + STATE(2228), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(2700), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, + ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2656), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4663), 8, + ACTIONS(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198020,84 +198195,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64655] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4720), 1, - aux_sym_cmd_identifier_token6, - STATE(2231), 1, - sym_comment, - ACTIONS(4718), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4716), 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, - [64703] = 11, + [64581] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - STATE(2232), 1, + STATE(2229), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(4661), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4689), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, + ACTIONS(4677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, + ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2656), 19, + ACTIONS(4659), 8, 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, @@ -198105,6 +198233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2700), 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, @@ -198112,74 +198245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64763] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1232), 1, - aux_sym_cmd_identifier_token6, - STATE(2233), 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, - [64811] = 10, + [64643] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - STATE(2234), 1, + STATE(2230), 1, sym_comment, - ACTIONS(2658), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4689), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2656), 23, + ACTIONS(2700), 25, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -198200,39 +198287,54 @@ 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, - [64869] = 12, + [64699] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - STATE(2235), 1, + STATE(2231), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4663), 8, + ACTIONS(4729), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2700), 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(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198241,82 +198343,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 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, - [64931] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4726), 1, - aux_sym_cmd_identifier_token6, - STATE(2236), 1, - sym_comment, - ACTIONS(4724), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4722), 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, - [64979] = 5, + [64763] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2237), 1, + ACTIONS(4663), 1, + anon_sym_DASH2, + ACTIONS(4675), 1, + anon_sym_PLUS2, + STATE(2232), 1, sym_comment, - ACTIONS(4695), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2658), 5, + ACTIONS(4661), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4665), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2656), 28, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4667), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4669), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2700), 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(4659), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -198324,67 +198394,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [64827] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4663), 1, + anon_sym_DASH2, + ACTIONS(4675), 1, + anon_sym_PLUS2, + ACTIONS(4679), 1, + anon_sym_bit_DASHand2, + ACTIONS(4681), 1, + anon_sym_bit_DASHxor2, + STATE(2233), 1, + sym_comment, + ACTIONS(4661), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4665), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4669), 4, 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, + ACTIONS(2700), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [65027] = 16, + ACTIONS(4659), 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, + [64895] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(4703), 1, + ACTIONS(4733), 1, anon_sym_bit_DASHand2, - ACTIONS(4705), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4728), 1, - anon_sym_bit_DASHor2, - STATE(2238), 1, + STATE(2234), 1, sym_comment, - ACTIONS(4685), 2, - anon_sym_GT2, - anon_sym_LT2, ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2656), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4691), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4693), 4, + ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4683), 8, + ACTIONS(2700), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198393,52 +198499,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65097] = 16, + [64961] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(4710), 1, + ACTIONS(4725), 1, + anon_sym_and2, + ACTIONS(4733), 1, anon_sym_bit_DASHand2, - ACTIONS(4714), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHxor2, - ACTIONS(4730), 1, + ACTIONS(4737), 1, anon_sym_bit_DASHor2, - STATE(2239), 1, + ACTIONS(4739), 1, + anon_sym_xor2, + STATE(2235), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(2700), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2656), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4671), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, + ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4663), 8, + ACTIONS(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198447,20 +198555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65167] = 5, - ACTIONS(103), 1, + [65035] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1224), 1, + ACTIONS(1240), 1, aux_sym_cmd_identifier_token6, - STATE(2240), 1, + STATE(2236), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1238), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1220), 29, + ACTIONS(1236), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -198490,54 +198598,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [65215] = 17, + [65083] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(4703), 1, - anon_sym_bit_DASHand2, - ACTIONS(4705), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4728), 1, - anon_sym_bit_DASHor2, - ACTIONS(4732), 1, - anon_sym_and2, - STATE(2241), 1, + STATE(2237), 1, sym_comment, - ACTIONS(4685), 2, - anon_sym_GT2, - anon_sym_LT2, ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2656), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4691), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4693), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4683), 8, + ACTIONS(2700), 19, anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -198545,54 +198640,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65287] = 18, + 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, + [65143] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4699), 1, + anon_sym_null, + ACTIONS(4703), 1, + sym__newline, + ACTIONS(4707), 1, + anon_sym_DOT_DOT, + ACTIONS(4711), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4713), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4717), 1, + sym_val_date, + ACTIONS(4741), 1, + anon_sym_GT2, + STATE(2238), 1, + sym_comment, + STATE(2271), 1, + aux_sym__types_body_repeat1, + STATE(2297), 1, + aux_sym__collection_body_repeat1, + STATE(4054), 1, + sym__val_number_decimal, + STATE(4745), 1, + sym__collection_entry, + STATE(5402), 1, + sym_val_bool, + STATE(5484), 1, + sym__collection_body, + ACTIONS(4697), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4709), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4715), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4465), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5228), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4701), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65235] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(4703), 1, + ACTIONS(4733), 1, anon_sym_bit_DASHand2, - ACTIONS(4705), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHxor2, - ACTIONS(4728), 1, + ACTIONS(4737), 1, anon_sym_bit_DASHor2, - ACTIONS(4732), 1, - anon_sym_and2, - ACTIONS(4734), 1, - anon_sym_xor2, - STATE(2242), 1, + STATE(2239), 1, sym_comment, - ACTIONS(2656), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(4685), 2, - anon_sym_GT2, - anon_sym_LT2, ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, + ACTIONS(2700), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4693), 4, + ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4683), 8, + ACTIONS(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198601,53 +198766,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65361] = 17, + [65305] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(4710), 1, + ACTIONS(4733), 1, anon_sym_bit_DASHand2, - ACTIONS(4714), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHxor2, - ACTIONS(4730), 1, - anon_sym_bit_DASHor2, - ACTIONS(4736), 1, - anon_sym_and2, - STATE(2243), 1, + STATE(2240), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2656), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4671), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, + ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4663), 8, + ACTIONS(2700), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198656,37 +198819,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65433] = 12, + [65373] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1248), 1, + aux_sym_cmd_identifier_token6, + STATE(2241), 1, + sym_comment, + ACTIONS(1246), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1244), 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, + [65421] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, ACTIONS(4699), 1, - anon_sym_PLUS2, - STATE(2244), 1, + anon_sym_null, + ACTIONS(4703), 1, + sym__newline, + ACTIONS(4707), 1, + anon_sym_DOT_DOT, + ACTIONS(4711), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4713), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4717), 1, + sym_val_date, + ACTIONS(4743), 1, + anon_sym_GT2, + STATE(2242), 1, + sym_comment, + STATE(2271), 1, + aux_sym__types_body_repeat1, + STATE(2297), 1, + aux_sym__collection_body_repeat1, + STATE(4054), 1, + sym__val_number_decimal, + STATE(4745), 1, + sym__collection_entry, + STATE(5315), 1, + sym__collection_body, + STATE(5402), 1, + sym_val_bool, + ACTIONS(4697), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4709), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4715), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4465), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5228), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4701), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65513] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4749), 1, + aux_sym_cmd_identifier_token6, + STATE(2243), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(4747), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4745), 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, + [65561] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4699), 1, + anon_sym_null, + ACTIONS(4703), 1, + sym__newline, + ACTIONS(4707), 1, + anon_sym_DOT_DOT, + ACTIONS(4711), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4713), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4717), 1, + sym_val_date, + ACTIONS(4751), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4695), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, + STATE(2244), 1, + sym_comment, + STATE(2271), 1, + aux_sym__types_body_repeat1, + STATE(2297), 1, + aux_sym__collection_body_repeat1, + STATE(4054), 1, + sym__val_number_decimal, + STATE(4745), 1, + sym__collection_entry, + STATE(5109), 1, + sym__collection_body, + STATE(5402), 1, + sym_val_bool, ACTIONS(4697), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4683), 8, + anon_sym_true, + anon_sym_false, + ACTIONS(4709), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4715), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4465), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5228), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4701), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65653] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2245), 1, + sym_comment, + ACTIONS(4691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2702), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2700), 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, @@ -198694,32 +199063,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2656), 11, - anon_sym_EQ_GT, - 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, - [65495] = 5, - ACTIONS(103), 1, + [65701] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1240), 1, + ACTIONS(1256), 1, aux_sym_cmd_identifier_token6, - STATE(2245), 1, + STATE(2246), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1254), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1236), 29, + ACTIONS(1252), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -198749,124 +199121,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [65543] = 9, - ACTIONS(3), 1, + [65749] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4699), 1, - anon_sym_PLUS2, - STATE(2246), 1, + ACTIONS(4757), 1, + aux_sym_cmd_identifier_token6, + STATE(2247), 1, sym_comment, - ACTIONS(2658), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4695), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2656), 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, - [65599] = 27, - ACTIONS(3), 1, + ACTIONS(4755), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4753), 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, + [65797] = 5, + ACTIONS(105), 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(3110), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, - anon_sym_null, - ACTIONS(4647), 1, - sym__newline, - ACTIONS(4651), 1, - anon_sym_DOT_DOT, - ACTIONS(4655), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, - sym_val_date, - ACTIONS(4738), 1, - anon_sym_GT2, - STATE(2247), 1, + ACTIONS(4763), 1, + aux_sym_cmd_identifier_token6, + STATE(2248), 1, sym_comment, - STATE(2270), 1, - aux_sym__types_body_repeat1, - STATE(2292), 1, - aux_sym__collection_body_repeat1, - STATE(4165), 1, - sym__val_number_decimal, - STATE(4860), 1, - sym__collection_entry, - STATE(5286), 1, - sym__collection_body, - STATE(5520), 1, - sym_val_bool, - ACTIONS(4641), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4653), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4586), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5277), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65691] = 4, + ACTIONS(4761), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4759), 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, + [65845] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4769), 1, + aux_sym_cmd_identifier_token6, + STATE(2249), 1, + sym_comment, + ACTIONS(4767), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4765), 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, + [65893] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2248), 1, + STATE(2250), 1, sym_comment, - ACTIONS(2754), 7, + ACTIONS(2626), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -198874,7 +199263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2756), 28, + ACTIONS(2628), 28, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198903,20 +199292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [65737] = 5, - ACTIONS(103), 1, + [65939] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(4775), 1, aux_sym_cmd_identifier_token6, - STATE(2249), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4742), 5, + ACTIONS(4773), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4740), 29, + ACTIONS(4771), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -198946,50 +199335,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [65785] = 13, + [65987] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4699), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - STATE(2250), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4693), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2656), 7, - anon_sym_EQ_GT, + ACTIONS(2700), 23, + anon_sym_in, + 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(4683), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -198997,201 +199372,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65849] = 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(3110), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, - anon_sym_null, - ACTIONS(4647), 1, - sym__newline, - ACTIONS(4651), 1, - anon_sym_DOT_DOT, - ACTIONS(4655), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, - sym_val_date, - ACTIONS(4746), 1, - anon_sym_GT2, - STATE(2251), 1, - sym_comment, - STATE(2270), 1, - aux_sym__types_body_repeat1, - STATE(2292), 1, - aux_sym__collection_body_repeat1, - STATE(4165), 1, - sym__val_number_decimal, - STATE(4860), 1, - sym__collection_entry, - STATE(5314), 1, - sym__collection_body, - STATE(5520), 1, - sym_val_bool, - ACTIONS(4641), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4653), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4586), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5277), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65941] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4699), 1, - anon_sym_PLUS2, - ACTIONS(4703), 1, - anon_sym_bit_DASHand2, - STATE(2252), 1, - sym_comment, - ACTIONS(4685), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4695), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4693), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2656), 6, - 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(4683), 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, - [66007] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4752), 1, - aux_sym_cmd_identifier_token6, - STATE(2253), 1, - sym_comment, - ACTIONS(4750), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4748), 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, - [66055] = 11, + [66045] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - STATE(2254), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4665), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2656), 19, + ACTIONS(4721), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -199199,6 +199421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2700), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -199206,55 +199433,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [66115] = 18, + [66107] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - ACTIONS(4710), 1, - anon_sym_bit_DASHand2, - ACTIONS(4714), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4730), 1, - anon_sym_bit_DASHor2, - ACTIONS(4736), 1, - anon_sym_and2, - ACTIONS(4754), 1, - anon_sym_xor2, - STATE(2255), 1, + STATE(2254), 1, sym_comment, - ACTIONS(2656), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4665), 2, + ACTIONS(4661), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(4677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4663), 8, + ACTIONS(2700), 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, @@ -199262,71 +199475,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66189] = 5, - ACTIONS(103), 1, + 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, + [66167] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4760), 1, - aux_sym_cmd_identifier_token6, - STATE(2256), 1, + ACTIONS(4777), 1, + sym__newline, + STATE(2255), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4758), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4756), 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, - [66237] = 7, + ACTIONS(1893), 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(1888), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66215] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2257), 1, + STATE(2256), 1, sym_comment, ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4695), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2658), 3, + ACTIONS(2702), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2656), 26, + ACTIONS(2700), 26, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199350,26 +199570,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [66289] = 7, + [66267] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2258), 1, + ACTIONS(4663), 1, + anon_sym_DASH2, + ACTIONS(4675), 1, + anon_sym_PLUS2, + STATE(2257), 1, sym_comment, - ACTIONS(4766), 2, + ACTIONS(2702), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4768), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4770), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4762), 8, + ACTIONS(4665), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2700), 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, @@ -199377,70 +199607,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4764), 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, - [66340] = 18, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [66325] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4667), 1, + ACTIONS(2921), 1, anon_sym_DASH2, - ACTIONS(4679), 1, + ACTIONS(2931), 1, anon_sym_PLUS2, - ACTIONS(4710), 1, + ACTIONS(2974), 1, anon_sym_bit_DASHand2, - ACTIONS(4714), 1, + ACTIONS(2976), 1, anon_sym_bit_DASHxor2, - ACTIONS(4730), 1, + ACTIONS(2978), 1, anon_sym_bit_DASHor2, - ACTIONS(4736), 1, + ACTIONS(2980), 1, anon_sym_and2, - ACTIONS(4754), 1, + ACTIONS(2982), 1, anon_sym_xor2, - ACTIONS(4772), 1, + ACTIONS(4780), 1, anon_sym_or2, - STATE(2259), 1, + STATE(2258), 1, sym_comment, - ACTIONS(4665), 2, + ACTIONS(2919), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4669), 2, + ACTIONS(2923), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4675), 2, + ACTIONS(2927), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4677), 2, + ACTIONS(2929), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4681), 2, + ACTIONS(2933), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4671), 4, + ACTIONS(2925), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4673), 4, + ACTIONS(2972), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4663), 8, + ACTIONS(2970), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199449,53 +199673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66413] = 18, + [66398] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4699), 1, - anon_sym_PLUS2, - ACTIONS(4703), 1, - anon_sym_bit_DASHand2, - ACTIONS(4705), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4728), 1, - anon_sym_bit_DASHor2, - ACTIONS(4732), 1, - anon_sym_and2, - ACTIONS(4734), 1, - anon_sym_xor2, - ACTIONS(4774), 1, - anon_sym_or2, - STATE(2260), 1, + STATE(2259), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(4786), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4695), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4697), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4701), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4691), 4, + ACTIONS(4788), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4693), 4, + ACTIONS(4790), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4683), 8, + ACTIONS(4782), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199504,53 +199700,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66486] = 18, + ACTIONS(4784), 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, + [66449] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(3982), 1, + ACTIONS(4675), 1, anon_sym_PLUS2, - ACTIONS(3990), 1, + ACTIONS(4679), 1, anon_sym_bit_DASHand2, - ACTIONS(3992), 1, + ACTIONS(4681), 1, anon_sym_bit_DASHxor2, - ACTIONS(3994), 1, + ACTIONS(4683), 1, anon_sym_bit_DASHor2, - ACTIONS(3996), 1, + ACTIONS(4685), 1, anon_sym_and2, - ACTIONS(3998), 1, + ACTIONS(4719), 1, anon_sym_xor2, - ACTIONS(4776), 1, + ACTIONS(4792), 1, anon_sym_or2, - STATE(2261), 1, + STATE(2260), 1, sym_comment, - ACTIONS(3970), 2, + ACTIONS(4661), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3974), 2, + ACTIONS(4665), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3978), 2, + ACTIONS(4671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3980), 2, + ACTIONS(4673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3984), 2, + ACTIONS(4677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3976), 4, + ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 4, + ACTIONS(4669), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3986), 8, + ACTIONS(4659), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199559,53 +199772,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66559] = 18, + [66522] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2946), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(2956), 1, + ACTIONS(4695), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(4725), 1, + anon_sym_and2, + ACTIONS(4733), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, + ACTIONS(4737), 1, anon_sym_bit_DASHor2, - ACTIONS(2970), 1, - anon_sym_and2, - ACTIONS(2972), 1, + ACTIONS(4739), 1, anon_sym_xor2, - ACTIONS(4778), 1, + ACTIONS(4794), 1, anon_sym_or2, - STATE(2262), 1, + STATE(2261), 1, sym_comment, - ACTIONS(2944), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2948), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2952), 2, + ACTIONS(4691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2954), 2, + ACTIONS(4693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2958), 2, + ACTIONS(4723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4731), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2950), 4, + ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2962), 4, + ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2960), 8, + ACTIONS(4721), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199614,53 +199827,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66632] = 18, + [66595] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(3986), 1, anon_sym_DASH2, - ACTIONS(3946), 1, + ACTIONS(3998), 1, anon_sym_PLUS2, - ACTIONS(3954), 1, + ACTIONS(4002), 1, anon_sym_bit_DASHand2, - ACTIONS(3956), 1, + ACTIONS(4004), 1, anon_sym_bit_DASHxor2, - ACTIONS(3958), 1, + ACTIONS(4006), 1, anon_sym_bit_DASHor2, - ACTIONS(3960), 1, + ACTIONS(4018), 1, anon_sym_and2, - ACTIONS(3962), 1, + ACTIONS(4020), 1, anon_sym_xor2, - ACTIONS(4780), 1, + ACTIONS(4796), 1, anon_sym_or2, - STATE(2263), 1, + STATE(2262), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3984), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3938), 2, + ACTIONS(3988), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3942), 2, + ACTIONS(3994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3944), 2, + ACTIONS(3996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3948), 2, + ACTIONS(4000), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3940), 4, + ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3952), 4, + ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3950), 8, + ACTIONS(3982), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199669,12 +199882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66705] = 4, + [66668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2264), 1, + STATE(2263), 1, sym_comment, - ACTIONS(1967), 8, + ACTIONS(2128), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -199683,7 +199896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1965), 26, + ACTIONS(2126), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -199710,53 +199923,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [66750] = 18, + [66713] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3026), 1, + ACTIONS(3954), 1, anon_sym_DASH2, - ACTIONS(3036), 1, + ACTIONS(3964), 1, anon_sym_PLUS2, - ACTIONS(3046), 1, + ACTIONS(3972), 1, + anon_sym_bit_DASHand2, + ACTIONS(3974), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3976), 1, + anon_sym_bit_DASHor2, + ACTIONS(3978), 1, anon_sym_and2, - ACTIONS(3048), 1, + ACTIONS(3980), 1, + anon_sym_xor2, + ACTIONS(4798), 1, + anon_sym_or2, + STATE(2264), 1, + sym_comment, + ACTIONS(3952), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3956), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3958), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3970), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3968), 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, + [66786] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2996), 1, + anon_sym_DASH2, + ACTIONS(3008), 1, + anon_sym_PLUS2, + ACTIONS(3012), 1, anon_sym_bit_DASHand2, - ACTIONS(3050), 1, + ACTIONS(3014), 1, anon_sym_bit_DASHxor2, - ACTIONS(3052), 1, + ACTIONS(3016), 1, anon_sym_bit_DASHor2, - ACTIONS(3054), 1, + ACTIONS(3080), 1, + anon_sym_and2, + ACTIONS(3082), 1, anon_sym_xor2, - ACTIONS(4782), 1, + ACTIONS(4800), 1, anon_sym_or2, STATE(2265), 1, sym_comment, - ACTIONS(3024), 2, + ACTIONS(2994), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3028), 2, + ACTIONS(2998), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3032), 2, + ACTIONS(3004), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3034), 2, + ACTIONS(3006), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3038), 2, + ACTIONS(3010), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3030), 4, + ACTIONS(3000), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3040), 4, + ACTIONS(3002), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3022), 8, + ACTIONS(2992), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199765,20 +200033,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66823] = 7, - ACTIONS(103), 1, + [66859] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4786), 1, - anon_sym_RBRACE, - ACTIONS(4788), 1, - sym__entry_separator, - ACTIONS(4790), 1, - sym_raw_string_begin, + ACTIONS(255), 1, + aux_sym_cmd_identifier_token1, + STATE(2124), 1, + sym__val_number_decimal, STATE(2266), 1, sym_comment, - STATE(2272), 1, + STATE(3125), 1, + sym_cmd_identifier, + ACTIONS(281), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(275), 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, + [66913] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3761), 1, + sym_raw_string_begin, + ACTIONS(4802), 1, + sym__entry_separator, + STATE(2267), 2, + sym_comment, aux_sym__types_body_repeat2, - ACTIONS(4784), 29, + ACTIONS(3756), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199789,6 +200099,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, @@ -199808,20 +200119,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66873] = 7, - ACTIONS(103), 1, + [66959] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + STATE(2077), 1, + sym__val_number_decimal, + STATE(2268), 1, + sym_comment, + STATE(3108), 1, + sym_cmd_identifier, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(39), 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, + [67013] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4788), 1, + ACTIONS(4807), 1, + anon_sym_RBRACE, + ACTIONS(4809), 1, sym__entry_separator, - ACTIONS(4790), 1, + ACTIONS(4811), 1, sym_raw_string_begin, - ACTIONS(4792), 1, - anon_sym_RBRACE, STATE(2267), 1, - sym_comment, - STATE(2272), 1, aux_sym__types_body_repeat2, - ACTIONS(4784), 29, + STATE(2269), 1, + sym_comment, + ACTIONS(4805), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199851,25 +200207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66923] = 7, + [67063] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2268), 1, + STATE(2270), 1, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4815), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4798), 4, + ACTIONS(4817), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4800), 4, + ACTIONS(4819), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4794), 8, + ACTIONS(4813), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199878,7 +200234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4764), 15, + ACTIONS(4784), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199894,15 +200250,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [66973] = 5, + [67113] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4802), 1, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4699), 1, + anon_sym_null, + ACTIONS(4703), 1, + sym__newline, + ACTIONS(4707), 1, + anon_sym_DOT_DOT, + ACTIONS(4711), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4713), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4717), 1, + sym_val_date, + STATE(2271), 1, + sym_comment, + STATE(2296), 1, + aux_sym__collection_body_repeat1, + STATE(2441), 1, + aux_sym__types_body_repeat1, + STATE(4054), 1, + sym__val_number_decimal, + STATE(4841), 1, + sym__collection_entry, + STATE(5402), 1, + sym_val_bool, + ACTIONS(4697), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4709), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4715), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4465), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5228), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4701), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67199] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(255), 1, + aux_sym_cmd_identifier_token1, + STATE(2124), 1, + sym__val_number_decimal, + STATE(2272), 1, + sym_comment, + STATE(2988), 1, + sym_cmd_identifier, + ACTIONS(281), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3671), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3673), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(275), 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, + [67253] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4821), 1, sym__newline, - STATE(2269), 2, + STATE(2273), 2, aux_sym__repeat_newline, sym_comment, - ACTIONS(1883), 7, + ACTIONS(1893), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -199910,7 +200372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_record_token1, - ACTIONS(1878), 24, + ACTIONS(1888), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -199935,81 +200397,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [67019] = 25, - ACTIONS(3), 1, + [67299] = 7, + ACTIONS(105), 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, + ACTIONS(4809), 1, + sym__entry_separator, + ACTIONS(4811), 1, sym_raw_string_begin, - ACTIONS(3110), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, + ACTIONS(4824), 1, + anon_sym_RBRACE, + STATE(2267), 1, + aux_sym__types_body_repeat2, + STATE(2274), 1, + sym_comment, + ACTIONS(4805), 29, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(4647), 1, - sym__newline, - ACTIONS(4651), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4655), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, + aux_sym__val_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, - STATE(2270), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym_unquoted_token1, + [67349] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4809), 1, + sym__entry_separator, + ACTIONS(4811), 1, + sym_raw_string_begin, + ACTIONS(4826), 1, + anon_sym_RBRACE, + STATE(2267), 1, + aux_sym__types_body_repeat2, + STATE(2275), 1, sym_comment, - STATE(2296), 1, - aux_sym__collection_body_repeat1, - STATE(2456), 1, - aux_sym__types_body_repeat1, - STATE(4165), 1, - sym__val_number_decimal, - STATE(4832), 1, - sym__collection_entry, - STATE(5520), 1, - sym_val_bool, - ACTIONS(4641), 2, + ACTIONS(4805), 29, anon_sym_true, anon_sym_false, - ACTIONS(4653), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4586), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5277), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67105] = 7, - ACTIONS(103), 1, + 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, + [67399] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2276), 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, + 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, + [67442] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4788), 1, + ACTIONS(4832), 1, sym__entry_separator, - ACTIONS(4790), 1, + ACTIONS(4834), 1, sym_raw_string_begin, - ACTIONS(4805), 1, - anon_sym_RBRACE, - STATE(2271), 1, + STATE(2277), 1, sym_comment, - STATE(2272), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4784), 29, + ACTIONS(4830), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4828), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200020,8 +200547,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, @@ -200038,18 +200563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [67155] = 5, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [67491] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3745), 1, + ACTIONS(3761), 1, sym_raw_string_begin, - ACTIONS(4807), 1, + ACTIONS(4836), 1, sym__entry_separator, - STATE(2272), 2, + STATE(2278), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3740), 30, + ACTIONS(3756), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200057,11 +200582,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -200079,22 +200603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [67201] = 7, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [67536] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(4809), 1, sym__entry_separator, - ACTIONS(4816), 1, + ACTIONS(4811), 1, sym_raw_string_begin, - STATE(2273), 1, - sym_comment, - STATE(2287), 1, + STATE(2267), 1, aux_sym__types_body_repeat2, - ACTIONS(4812), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4810), 27, + STATE(2279), 1, + sym_comment, + ACTIONS(4805), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200105,6 +200626,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, @@ -200121,98 +200644,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [67250] = 4, + aux_sym_unquoted_token1, + [67583] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2274), 1, - sym_comment, - ACTIONS(1468), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1470), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(4574), 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, + ACTIONS(4578), 1, 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, - [67293] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - ACTIONS(4816), 1, - sym_raw_string_begin, - STATE(2275), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT, + STATE(2280), 1, sym_comment, - STATE(2287), 1, - aux_sym__types_body_repeat2, - ACTIONS(4818), 2, + ACTIONS(4529), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4810), 27, + anon_sym_COMMA, + ACTIONS(2626), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2628), 22, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_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, - [67342] = 4, + [67634] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2276), 1, + STATE(2281), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1545), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1474), 29, + ACTIONS(1547), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -200242,66 +200727,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67385] = 4, + [67677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2277), 1, + STATE(2282), 1, sym_comment, - ACTIONS(1530), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1532), 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, - [67428] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4514), 1, - sym__newline, - ACTIONS(4518), 1, - anon_sym_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2128), 7, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - STATE(2278), 1, - sym_comment, - ACTIONS(4509), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2754), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2756), 22, + aux_sym__unquoted_in_record_token1, + ACTIONS(2126), 25, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200309,8 +200748,9 @@ 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, @@ -200324,15 +200764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [67479] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4820), 1, + ACTIONS(4839), 1, sym__newline, - STATE(2279), 2, + STATE(2283), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3760), 7, + ACTIONS(3782), 7, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -200340,7 +200782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3762), 23, + ACTIONS(3784), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200364,104 +200806,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [67524] = 7, - ACTIONS(103), 1, + [67765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - ACTIONS(4816), 1, - sym_raw_string_begin, - STATE(2280), 1, + STATE(2284), 1, sym_comment, - STATE(2287), 1, - aux_sym__types_body_repeat2, - ACTIONS(4823), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4810), 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(1486), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1488), 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, - [67573] = 6, - ACTIONS(103), 1, + 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, + [67808] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4788), 1, - sym__entry_separator, - ACTIONS(4790), 1, - sym_raw_string_begin, - STATE(2272), 1, - aux_sym__types_body_repeat2, - STATE(2281), 1, + STATE(2285), 1, sym_comment, - ACTIONS(4784), 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, + ACTIONS(1541), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1543), 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__, - 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, - [67620] = 7, - ACTIONS(103), 1, + 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, + [67851] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(4832), 1, sym__entry_separator, - ACTIONS(4816), 1, + ACTIONS(4834), 1, sym_raw_string_begin, - STATE(2282), 1, - sym_comment, - STATE(2287), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4825), 2, + STATE(2286), 1, + sym_comment, + ACTIONS(4842), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4810), 27, + ACTIONS(4828), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200489,21 +200926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67669] = 7, - ACTIONS(103), 1, + [67900] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(4832), 1, sym__entry_separator, - ACTIONS(4816), 1, + ACTIONS(4834), 1, sym_raw_string_begin, - STATE(2283), 1, - sym_comment, - STATE(2287), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4825), 2, + STATE(2287), 1, + sym_comment, + ACTIONS(4844), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4810), 27, + ACTIONS(4828), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200531,16 +200968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67718] = 4, + [67949] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2284), 1, + STATE(2288), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(1535), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1518), 29, + ACTIONS(1537), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -200570,21 +201007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67761] = 7, - ACTIONS(103), 1, + [67992] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(4832), 1, sym__entry_separator, - ACTIONS(4816), 1, + ACTIONS(4834), 1, sym_raw_string_begin, - STATE(2285), 1, - sym_comment, - STATE(2287), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4812), 2, + STATE(2289), 1, + sym_comment, + ACTIONS(4846), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4810), 27, + ACTIONS(4828), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200612,15 +201049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67810] = 4, - ACTIONS(103), 1, + [68041] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2286), 1, - sym_comment, - ACTIONS(3771), 2, - sym_raw_string_begin, + ACTIONS(4832), 1, sym__entry_separator, - ACTIONS(3769), 30, + ACTIONS(4834), 1, + sym_raw_string_begin, + STATE(2278), 1, + aux_sym__types_body_repeat2, + STATE(2290), 1, + sym_comment, + ACTIONS(4846), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4828), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200631,9 +201074,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, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -200650,18 +201090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [67853] = 5, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [68090] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3745), 1, + STATE(2291), 1, + sym_comment, + ACTIONS(3780), 2, sym_raw_string_begin, - ACTIONS(4827), 1, sym__entry_separator, - STATE(2287), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3740), 29, + ACTIONS(3778), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200669,10 +201107,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -200690,56 +201129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [67898] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2288), 1, - sym_comment, - ACTIONS(1522), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1524), 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, - [67941] = 4, + aux_sym_unquoted_token1, + [68133] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2289), 1, + STATE(2292), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1531), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1482), 29, + ACTIONS(1533), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -200769,57 +201169,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67984] = 4, - ACTIONS(3), 1, + [68176] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2290), 1, + ACTIONS(4832), 1, + sym__entry_separator, + ACTIONS(4834), 1, + sym_raw_string_begin, + STATE(2278), 1, + aux_sym__types_body_repeat2, + STATE(2293), 1, sym_comment, - ACTIONS(1967), 7, - anon_sym_DOLLAR, + ACTIONS(4844), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1965), 25, - sym_raw_string_begin, + ACTIONS(4828), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [68027] = 6, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [68225] = 22, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - ACTIONS(4816), 1, + ACTIONS(4851), 1, + anon_sym_null, + ACTIONS(4857), 1, + anon_sym_DOT_DOT, + ACTIONS(4863), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4866), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4872), 1, + sym_val_date, + ACTIONS(4875), 1, + anon_sym_DQUOTE, + ACTIONS(4878), 1, + anon_sym_SQUOTE, + ACTIONS(4881), 1, + anon_sym_BQUOTE, + ACTIONS(4884), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4887), 1, sym_raw_string_begin, - STATE(2287), 1, - aux_sym__types_body_repeat2, - STATE(2291), 1, + STATE(4054), 1, + sym__val_number_decimal, + STATE(5035), 1, + sym__collection_entry, + STATE(5402), 1, + sym_val_bool, + ACTIONS(4848), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4860), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4869), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2294), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4929), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5228), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4854), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3776), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68303] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4890), 1, + sym__newline, + STATE(2295), 2, sym_comment, - ACTIONS(4810), 28, + aux_sym__types_body_repeat1, + ACTIONS(3782), 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(3784), 23, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200830,154 +201294,144 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68073] = 23, + [68347] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1440), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1442), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1444), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(3110), 1, + ACTIONS(3151), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, + ACTIONS(4699), 1, anon_sym_null, - ACTIONS(4651), 1, + ACTIONS(4707), 1, anon_sym_DOT_DOT, - ACTIONS(4655), 1, + ACTIONS(4711), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, + ACTIONS(4713), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, + ACTIONS(4717), 1, sym_val_date, - STATE(2292), 1, - sym_comment, - STATE(2293), 1, + STATE(2294), 1, aux_sym__collection_body_repeat1, - STATE(4165), 1, + STATE(2296), 1, + sym_comment, + STATE(4054), 1, sym__val_number_decimal, - STATE(4839), 1, + STATE(4736), 1, sym__collection_entry, - STATE(5520), 1, + STATE(5402), 1, sym_val_bool, - ACTIONS(4641), 2, + ACTIONS(4697), 2, anon_sym_true, anon_sym_false, - ACTIONS(4653), 2, + ACTIONS(4709), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, + ACTIONS(4715), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4586), 2, + STATE(4465), 2, sym_val_string, sym__unquoted_in_record, - STATE(5277), 2, + STATE(5228), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, + ACTIONS(4701), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68153] = 22, + [68427] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4833), 1, + ACTIONS(1440), 1, + anon_sym_DQUOTE, + ACTIONS(1442), 1, + anon_sym_SQUOTE, + ACTIONS(1444), 1, + anon_sym_BQUOTE, + ACTIONS(1454), 1, + sym_raw_string_begin, + ACTIONS(3151), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4699), 1, anon_sym_null, - ACTIONS(4839), 1, + ACTIONS(4707), 1, anon_sym_DOT_DOT, - ACTIONS(4845), 1, + ACTIONS(4711), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4848), 1, + ACTIONS(4713), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4854), 1, + ACTIONS(4717), 1, sym_val_date, - ACTIONS(4857), 1, - anon_sym_DQUOTE, - ACTIONS(4860), 1, - anon_sym_SQUOTE, - ACTIONS(4863), 1, - anon_sym_BQUOTE, - ACTIONS(4866), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4869), 1, - sym_raw_string_begin, - STATE(4165), 1, + STATE(2294), 1, + aux_sym__collection_body_repeat1, + STATE(2297), 1, + sym_comment, + STATE(4054), 1, sym__val_number_decimal, - STATE(5064), 1, + STATE(4842), 1, sym__collection_entry, - STATE(5520), 1, + STATE(5402), 1, sym_val_bool, - ACTIONS(4830), 2, + ACTIONS(4697), 2, anon_sym_true, anon_sym_false, - ACTIONS(4842), 2, + ACTIONS(4709), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4851), 2, + ACTIONS(4715), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2293), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4926), 2, + STATE(4465), 2, sym_val_string, sym__unquoted_in_record, - STATE(5277), 2, + STATE(5228), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4836), 3, + ACTIONS(4701), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68231] = 5, - ACTIONS(3), 1, + [68507] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4872), 1, - sym__newline, - STATE(2294), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3760), 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(3762), 23, + ACTIONS(4832), 1, + sym__entry_separator, + ACTIONS(4834), 1, sym_raw_string_begin, + STATE(2278), 1, + aux_sym__types_body_repeat2, + STATE(2298), 1, + sym_comment, + ACTIONS(4828), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200988,27 +201442,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68275] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [68553] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2295), 1, + STATE(2299), 1, sym_comment, - ACTIONS(3771), 2, + ACTIONS(3780), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3769), 29, + ACTIONS(3778), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201038,69 +201498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [68317] = 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(3110), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4643), 1, - anon_sym_null, - ACTIONS(4651), 1, - anon_sym_DOT_DOT, - ACTIONS(4655), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4657), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4661), 1, - sym_val_date, - STATE(2293), 1, - aux_sym__collection_body_repeat1, - STATE(2296), 1, - sym_comment, - STATE(4165), 1, - sym__val_number_decimal, - STATE(4899), 1, - sym__collection_entry, - STATE(5520), 1, - sym_val_bool, - ACTIONS(4641), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4653), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4659), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4586), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5277), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4645), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68397] = 4, + [68595] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2297), 1, + STATE(2300), 1, sym_comment, - ACTIONS(2754), 7, + ACTIONS(2626), 7, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -201108,7 +201511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2756), 24, + ACTIONS(2628), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201133,14 +201536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [68439] = 6, + [68637] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2298), 1, + STATE(2301), 1, sym_comment, - STATE(3291), 1, + STATE(3405), 1, sym_redirection, - ACTIONS(4877), 8, + ACTIONS(4895), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201149,7 +201552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4879), 8, + ACTIONS(4897), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201158,7 +201561,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(4875), 13, + ACTIONS(4893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201172,19 +201575,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [68484] = 4, + [68682] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2299), 1, + STATE(2302), 1, + sym_comment, + STATE(3267), 1, + sym_redirection, + ACTIONS(4895), 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(4897), 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(4899), 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, + [68727] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2303), 1, sym_comment, - ACTIONS(2754), 6, + ACTIONS(2626), 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(2756), 24, + ACTIONS(2628), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201209,14 +201651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [68525] = 6, + [68768] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2300), 1, + STATE(2304), 1, sym_comment, - STATE(3327), 1, + STATE(3603), 1, sym_redirection, - ACTIONS(4877), 8, + ACTIONS(4895), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201225,7 +201667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4879), 8, + ACTIONS(4897), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201234,7 +201676,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(4881), 13, + ACTIONS(4901), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201247,108 +201689,71 @@ static 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, - [68570] = 25, + [68812] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4909), 1, anon_sym_LBRACE, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2301), 1, + STATE(2305), 1, sym_comment, - STATE(2307), 1, - aux_sym__repeat_newline, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2799), 1, + STATE(2817), 1, sym__binary_predicate_parenthesized, - STATE(2800), 1, + STATE(2818), 1, sym_where_predicate, - STATE(3264), 1, + STATE(3235), 1, + aux_sym__repeat_newline, + STATE(3293), 1, sym_val_closure, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68652] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2302), 1, - sym_comment, - ACTIONS(1580), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1582), 27, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68692] = 6, + [68894] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2303), 1, + STATE(2306), 1, sym_comment, - STATE(3498), 1, + STATE(3446), 1, sym_redirection, - ACTIONS(4893), 8, + ACTIONS(4913), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201357,7 +201762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4895), 8, + ACTIONS(4915), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201366,7 +201771,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(4875), 12, + ACTIONS(4899), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201379,14 +201784,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, - [68736] = 6, + [68938] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2304), 1, + STATE(2307), 1, sym_comment, - STATE(3508), 1, + STATE(3464), 1, sym_redirection, - ACTIONS(4893), 8, + ACTIONS(4913), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201395,7 +201800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4895), 8, + ACTIONS(4915), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201404,7 +201809,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(4881), 12, + ACTIONS(4893), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201417,14 +201822,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, - [68780] = 6, + [68982] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2305), 1, + STATE(2308), 1, sym_comment, - STATE(3425), 1, + STATE(3466), 1, sym_redirection, - ACTIONS(4877), 8, + ACTIONS(4895), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201433,7 +201838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4879), 8, + ACTIONS(4897), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201442,7 +201847,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(4897), 12, + ACTIONS(4917), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201455,32 +201860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [68824] = 6, + [69026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2306), 1, + STATE(2309), 1, sym_comment, - STATE(3460), 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(4899), 12, + ACTIONS(1600), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1602), 27, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201492,79 +201882,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - [68868] = 25, + 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, + [69066] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4909), 1, anon_sym_LBRACE, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2307), 1, + STATE(2305), 1, + aux_sym__repeat_newline, + STATE(2310), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2732), 1, + STATE(2881), 1, sym__binary_predicate_parenthesized, - STATE(2733), 1, + STATE(2883), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - STATE(3414), 1, + STATE(3305), 1, sym_val_closure, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68950] = 7, + [69148] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4901), 1, + ACTIONS(4919), 1, anon_sym_QMARK2, - ACTIONS(4903), 1, + ACTIONS(4921), 1, anon_sym_BANG, - STATE(480), 1, + STATE(479), 1, sym__path_suffix, - STATE(2308), 1, + STATE(2311), 1, sym_comment, - ACTIONS(1448), 2, + ACTIONS(1472), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1450), 23, + ACTIONS(1474), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -201588,236 +201991,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [68995] = 23, + [69193] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1466), 1, + anon_sym_DOT_DOT2, + ACTIONS(4923), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(2309), 1, + sym_cell_path, + STATE(2312), 1, + sym_comment, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1468), 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, + [69239] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2309), 1, + STATE(2313), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2824), 1, + STATE(2840), 1, sym__binary_predicate_parenthesized, - STATE(2829), 1, + STATE(2841), 1, sym_where_predicate, - STATE(3255), 1, + STATE(3235), 1, aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69071] = 23, + [69315] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1705), 1, + anon_sym_DOT_DOT2, + ACTIONS(4923), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(482), 1, + sym_cell_path, + STATE(2314), 1, + sym_comment, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1703), 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, + [69361] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1671), 1, + anon_sym_DOT_DOT2, + ACTIONS(4923), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(493), 1, + sym_cell_path, + STATE(2315), 1, + sym_comment, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1669), 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, + [69407] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2310), 1, + STATE(2316), 1, sym_comment, - STATE(2325), 1, - aux_sym__repeat_newline, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2886), 1, + STATE(2849), 1, sym__binary_predicate_parenthesized, - STATE(2887), 1, + STATE(2850), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69147] = 23, + [69483] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2311), 1, + STATE(2317), 1, sym_comment, - STATE(2326), 1, - aux_sym__repeat_newline, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2889), 1, + STATE(2867), 1, sym__binary_predicate_parenthesized, - STATE(2890), 1, + STATE(2869), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69223] = 23, + [69559] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2312), 1, + STATE(2318), 1, sym_comment, - STATE(2332), 1, + STATE(2338), 1, aux_sym__repeat_newline, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2891), 1, + STATE(2813), 1, sym__binary_predicate_parenthesized, - STATE(2892), 1, + STATE(2814), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69299] = 8, + [69635] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_DOT_DOT2, - ACTIONS(4905), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(2302), 1, - sym_cell_path, - STATE(2313), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + ACTIONS(4925), 1, + anon_sym_DOT, + STATE(2319), 1, sym_comment, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 22, - anon_sym_if, - anon_sym_in, + STATE(2476), 1, + sym__immediate_decimal, + ACTIONS(4927), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4929), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2561), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1642), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201830,884 +202354,821 @@ static 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [69345] = 23, + [69687] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2309), 1, - aux_sym__repeat_newline, - STATE(2314), 1, + STATE(2320), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2878), 1, + STATE(2736), 1, sym__binary_predicate_parenthesized, - STATE(2879), 1, + STATE(2737), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69421] = 23, + [69763] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4909), 1, + anon_sym_LBRACE, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2315), 1, + STATE(2321), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2758), 1, - sym__binary_predicate_parenthesized, - STATE(2759), 1, + STATE(2775), 1, + sym__binary_predicate, + STATE(2776), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + STATE(3371), 1, + sym_val_closure, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69497] = 23, + [69839] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2316), 1, + STATE(2322), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2762), 1, + STATE(2835), 1, sym__binary_predicate_parenthesized, - STATE(2763), 1, + STATE(2921), 1, sym_where_predicate, - STATE(3255), 1, + STATE(3235), 1, aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69573] = 23, + [69915] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2323), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2795), 1, + STATE(2863), 1, sym__binary_predicate_parenthesized, - STATE(2796), 1, + STATE(2864), 1, sym_where_predicate, - STATE(3255), 1, + STATE(3235), 1, aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69649] = 23, + [69991] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2318), 1, + STATE(2324), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2816), 1, + STATE(2740), 1, sym__binary_predicate_parenthesized, - STATE(2817), 1, + STATE(2741), 1, sym_where_predicate, - STATE(3255), 1, + STATE(3235), 1, aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69725] = 23, + [70067] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2315), 1, + STATE(2317), 1, aux_sym__repeat_newline, - STATE(2319), 1, + STATE(2325), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2848), 1, + STATE(2771), 1, sym__binary_predicate_parenthesized, - STATE(2850), 1, + STATE(2772), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69801] = 23, + [70143] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2316), 1, - aux_sym__repeat_newline, - STATE(2320), 1, + STATE(2326), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2876), 1, + STATE(2744), 1, sym__binary_predicate_parenthesized, - STATE(2877), 1, + STATE(2745), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69877] = 23, + [70219] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2321), 1, + STATE(2324), 1, + aux_sym__repeat_newline, + STATE(2327), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2766), 1, + STATE(2807), 1, sym__binary_predicate_parenthesized, - STATE(2767), 1, + STATE(2808), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69953] = 23, + [70295] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2321), 1, - aux_sym__repeat_newline, - STATE(2322), 1, + STATE(2328), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2881), 1, + STATE(2754), 1, sym__binary_predicate_parenthesized, - STATE(2882), 1, + STATE(2755), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70029] = 23, + [70371] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2323), 1, + STATE(2329), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2776), 1, + STATE(2859), 1, sym__binary_predicate_parenthesized, - STATE(2777), 1, + STATE(2860), 1, sym_where_predicate, - STATE(3255), 1, + STATE(3235), 1, aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70105] = 23, + [70447] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2324), 1, + STATE(2330), 1, sym_comment, - STATE(2425), 1, + STATE(2341), 1, + aux_sym__repeat_newline, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2780), 1, + STATE(2815), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2816), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70181] = 23, + [70523] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2325), 1, + STATE(2323), 1, + aux_sym__repeat_newline, + STATE(2331), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2883), 1, + STATE(2768), 1, sym__binary_predicate_parenthesized, - STATE(2884), 1, + STATE(2770), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70257] = 23, + [70599] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2326), 1, + STATE(2329), 1, + aux_sym__repeat_newline, + STATE(2332), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2896), 1, + STATE(2766), 1, sym__binary_predicate_parenthesized, - STATE(2897), 1, + STATE(2767), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70333] = 23, + [70675] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2327), 1, + STATE(2316), 1, + aux_sym__repeat_newline, + STATE(2333), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2784), 1, + STATE(2752), 1, sym__binary_predicate_parenthesized, - STATE(2785), 1, + STATE(2753), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70409] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - anon_sym_DOT_DOT2, - ACTIONS(4905), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(2328), 1, - sym_comment, - STATE(2329), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1528), 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, - [70453] = 6, + [70751] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1536), 1, - anon_sym_DOT_DOT2, - ACTIONS(4907), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(2329), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(2818), 1, + aux_sym_expr_unary_token1, + ACTIONS(4903), 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, - [70495] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1691), 1, - anon_sym_DOT_DOT2, ACTIONS(4905), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(487), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2330), 1, + anon_sym_LPAREN, + ACTIONS(4907), 1, + anon_sym_DASH2, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(980), 1, + sym__expr_unary_minus, + STATE(2326), 1, + aux_sym__repeat_newline, + STATE(2334), 1, sym_comment, - ACTIONS(1689), 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, - [70541] = 8, + STATE(2431), 1, + sym_val_string, + STATE(2450), 1, + sym__where_predicate_lhs_path_head, + STATE(2631), 1, + sym__where_predicate_lhs, + STATE(2809), 1, + sym__binary_predicate_parenthesized, + STATE(2810), 1, + sym_where_predicate, + ACTIONS(1949), 2, + anon_sym_true, + anon_sym_false, + STATE(2259), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2779), 2, + sym_expr_unary, + sym_val_bool, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70827] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, + ACTIONS(1577), 1, anon_sym_DOT_DOT2, - ACTIONS(4905), 1, + ACTIONS(4923), 1, anon_sym_DOT2, - STATE(470), 1, + STATE(472), 1, sym_path, - STATE(493), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2331), 1, + STATE(2335), 1, sym_comment, - ACTIONS(1675), 22, + STATE(2340), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1579), 23, anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202729,482 +203190,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [70587] = 23, + [70871] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2332), 1, + STATE(2328), 1, + aux_sym__repeat_newline, + STATE(2336), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2901), 1, + STATE(2811), 1, sym__binary_predicate_parenthesized, - STATE(2902), 1, + STATE(2812), 1, sym_where_predicate, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70663] = 23, + [70947] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2318), 1, + STATE(2322), 1, aux_sym__repeat_newline, - STATE(2333), 1, + STATE(2337), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2874), 1, + STATE(2748), 1, sym__binary_predicate_parenthesized, - STATE(2875), 1, + STATE(2749), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70739] = 23, + [71023] = 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(1602), 1, - anon_sym_DOLLAR, - ACTIONS(2774), 1, - aux_sym_expr_unary_token1, - ACTIONS(4885), 1, - anon_sym_LPAREN, - ACTIONS(4887), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - anon_sym_LBRACE, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, - sym__expr_unary_minus, - STATE(2334), 1, - sym_comment, - STATE(2425), 1, - sym_val_string, - STATE(2441), 1, - sym__where_predicate_lhs_path_head, - STATE(2627), 1, - sym__where_predicate_lhs, - STATE(2826), 1, - sym__binary_predicate, - STATE(2918), 1, - sym_where_predicate, - STATE(3288), 1, - sym_val_closure, - ACTIONS(1931), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70815] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2323), 1, - aux_sym__repeat_newline, - STATE(2335), 1, + STATE(2338), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2909), 1, + STATE(2758), 1, sym__binary_predicate_parenthesized, - STATE(2912), 1, + STATE(2759), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70891] = 23, + [71099] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2810), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, + ACTIONS(4931), 1, anon_sym_LPAREN, - ACTIONS(4912), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR, - ACTIONS(4914), 1, + ACTIONS(4935), 1, anon_sym_DASH2, - ACTIONS(4916), 1, + ACTIONS(4937), 1, anon_sym_LBRACE, - STATE(1291), 1, + STATE(1293), 1, sym__expr_unary_minus, - STATE(2336), 1, + STATE(2339), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2651), 1, + STATE(2630), 1, sym__where_predicate_lhs, - STATE(3032), 1, - sym__binary_predicate, - STATE(3033), 1, + STATE(2951), 1, sym_where_predicate, - STATE(3417), 1, + STATE(2993), 1, + sym__binary_predicate, + STATE(3543), 1, sym_val_closure, - ACTIONS(2499), 2, + ACTIONS(2510), 2, anon_sym_true, anon_sym_false, - STATE(2268), 2, + STATE(2270), 2, sym_expr_parenthesized, sym_val_variable, - STATE(3035), 2, + STATE(2952), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70967] = 23, + [71175] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1490), 1, + anon_sym_DOT_DOT2, + ACTIONS(4939), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(2340), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 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, + [71217] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2324), 1, - aux_sym__repeat_newline, - STATE(2337), 1, + STATE(2341), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2913), 1, + STATE(2762), 1, sym__binary_predicate_parenthesized, - STATE(2914), 1, + STATE(2763), 1, sym_where_predicate, - ACTIONS(1931), 2, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71043] = 23, + [71293] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2327), 1, + STATE(2313), 1, aux_sym__repeat_newline, - STATE(2338), 1, + STATE(2342), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2728), 1, - sym_where_predicate, - STATE(2827), 1, + STATE(2750), 1, sym__binary_predicate_parenthesized, - ACTIONS(1931), 2, + STATE(2751), 1, + sym_where_predicate, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71119] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(4918), 1, - anon_sym_DOT, - STATE(2339), 1, - sym_comment, - STATE(2466), 1, - sym__immediate_decimal, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4922), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2557), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 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, - [71171] = 23, + [71369] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4903), 1, sym__newline, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2320), 1, aux_sym__repeat_newline, - STATE(2340), 1, + STATE(2343), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2872), 1, + STATE(2805), 1, sym__binary_predicate_parenthesized, - STATE(2873), 1, + STATE(2806), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71247] = 5, + [71445] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1710), 1, + ACTIONS(1726), 1, anon_sym_BANG, - STATE(2341), 1, + STATE(2344), 1, sym_comment, - ACTIONS(1462), 2, + ACTIONS(1460), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1464), 23, + ACTIONS(1462), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -203228,29 +203631,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [71286] = 10, + [71484] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, + ACTIONS(1636), 1, + anon_sym_DOT, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(2342), 1, + STATE(2345), 1, sym_comment, - STATE(2600), 1, + STATE(2560), 1, sym__immediate_decimal, - ACTIONS(4924), 2, + ACTIONS(1638), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4926), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(805), 2, + STATE(2559), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 16, + ACTIONS(1628), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203267,29 +203670,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71335] = 10, + [71533] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(1608), 1, - anon_sym_DOT, - ACTIONS(2898), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - STATE(2343), 1, + ACTIONS(4942), 1, + anon_sym_DOT, + STATE(2346), 1, sym_comment, - STATE(2556), 1, + STATE(2481), 1, sym__immediate_decimal, - ACTIONS(1610), 2, + ACTIONS(4944), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1612), 2, + ACTIONS(4946), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2555), 2, + STATE(2657), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1600), 16, + ACTIONS(1642), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203301,37 +203707,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71384] = 11, + [71584] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(1657), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(3830), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(4928), 1, - anon_sym_DOT, - STATE(2344), 1, + STATE(2347), 1, sym_comment, - STATE(2501), 1, + STATE(2590), 1, sym__immediate_decimal, - ACTIONS(4930), 2, + ACTIONS(4948), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4932), 2, + ACTIONS(4950), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2614), 2, + STATE(925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1620), 15, - ts_builtin_sym_end, + ACTIONS(1642), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203343,32 +203744,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71435] = 10, + [71633] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1641), 1, + ACTIONS(1711), 1, sym__unquoted_pattern, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(2345), 1, + STATE(2348), 1, sym_comment, - STATE(2598), 1, + STATE(2592), 1, sym__immediate_decimal, - ACTIONS(4924), 2, + ACTIONS(4948), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4926), 2, + ACTIONS(4950), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(768), 2, + STATE(747), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1620), 16, + ACTIONS(1689), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203385,30 +203788,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71484] = 10, + [71682] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(2818), 1, + aux_sym_expr_unary_token1, + ACTIONS(4905), 1, + anon_sym_LPAREN, + ACTIONS(4907), 1, + anon_sym_DASH2, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(980), 1, + sym__expr_unary_minus, + STATE(2349), 1, + sym_comment, + STATE(2431), 1, + sym_val_string, + STATE(2450), 1, + sym__where_predicate_lhs_path_head, + STATE(2631), 1, + sym__where_predicate_lhs, + STATE(2790), 1, + sym__binary_predicate, + STATE(2791), 1, + sym_where_predicate, + ACTIONS(1949), 2, + anon_sym_true, + anon_sym_false, + STATE(2259), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2779), 2, + sym_expr_unary, + sym_val_bool, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71752] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(2750), 1, + aux_sym_expr_unary_token1, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4931), 1, + anon_sym_LPAREN, + ACTIONS(4933), 1, + anon_sym_DOLLAR, + ACTIONS(4935), 1, + anon_sym_DASH2, + STATE(1293), 1, + sym__expr_unary_minus, + STATE(2350), 1, + sym_comment, + STATE(2431), 1, + sym_val_string, + STATE(2450), 1, + sym__where_predicate_lhs_path_head, + STATE(2630), 1, + sym__where_predicate_lhs, + STATE(2922), 1, + sym__binary_predicate, + STATE(2935), 1, + sym_where_predicate, + ACTIONS(2510), 2, + anon_sym_true, + anon_sym_false, + STATE(2270), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2952), 2, + sym_expr_unary, + sym_val_bool, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71822] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(1695), 1, + anon_sym_LPAREN2, + ACTIONS(3805), 1, + anon_sym_DOLLAR, + STATE(2351), 1, + sym_comment, + STATE(2693), 1, + sym__immediate_decimal, + ACTIONS(4952), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4954), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1325), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1642), 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, + [71870] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(2750), 1, + aux_sym_expr_unary_token1, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4931), 1, + anon_sym_LPAREN, + ACTIONS(4933), 1, + anon_sym_DOLLAR, + ACTIONS(4935), 1, + anon_sym_DASH2, + STATE(1293), 1, + sym__expr_unary_minus, + STATE(2352), 1, + sym_comment, + STATE(2431), 1, + sym_val_string, + STATE(2450), 1, + sym__where_predicate_lhs_path_head, + STATE(2630), 1, + sym__where_predicate_lhs, + STATE(2960), 1, + sym_where_predicate, + STATE(3024), 1, + sym__binary_predicate, + ACTIONS(2510), 2, + anon_sym_true, + anon_sym_false, + STATE(2270), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2952), 2, + sym_expr_unary, + sym_val_bool, + STATE(436), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - ACTIONS(1705), 1, + ACTIONS(4956), 1, anon_sym_DOT, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - STATE(2346), 1, + ACTIONS(4958), 1, + aux_sym__immediate_decimal_token5, + STATE(2353), 1, sym_comment, - STATE(2654), 1, - sym__immediate_decimal, - ACTIONS(1661), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1663), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2653), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1600), 15, - ts_builtin_sym_end, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203420,22 +203997,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, - [71532] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71980] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4934), 1, + ACTIONS(4960), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4936), 1, + ACTIONS(4962), 1, aux_sym__immediate_decimal_token5, - STATE(2347), 1, + STATE(2354), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(761), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203457,83 +204041,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71572] = 21, + [72020] = 10, 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(2810), 1, - aux_sym_expr_unary_token1, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, - anon_sym_LPAREN, - ACTIONS(4912), 1, - anon_sym_DOLLAR, - ACTIONS(4914), 1, - anon_sym_DASH2, - STATE(1291), 1, - sym__expr_unary_minus, - STATE(2348), 1, - sym_comment, - STATE(2425), 1, - sym_val_string, - STATE(2441), 1, - sym__where_predicate_lhs_path_head, - STATE(2651), 1, - sym__where_predicate_lhs, - STATE(3042), 1, - sym__binary_predicate, - STATE(3044), 1, - sym_where_predicate, - ACTIONS(2499), 2, - anon_sym_true, - anon_sym_false, - STATE(2268), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(3035), 2, - sym_expr_unary, - sym_val_bool, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71642] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1620), 1, - sym__space, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3149), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(1732), 1, anon_sym_DOT, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, - aux_sym__immediate_decimal_token2, - STATE(2349), 1, + ACTIONS(3805), 1, + anon_sym_DOLLAR, + STATE(2355), 1, sym_comment, - STATE(2531), 1, + STATE(2656), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1699), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2718), 2, + STATE(2655), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 13, + ACTIONS(1628), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203545,78 +204076,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, - [71696] = 21, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [72068] = 10, 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(2810), 1, - aux_sym_expr_unary_token1, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, - anon_sym_LPAREN, - ACTIONS(4912), 1, + ACTIONS(1695), 1, + anon_sym_LPAREN2, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(3805), 1, anon_sym_DOLLAR, - ACTIONS(4914), 1, - anon_sym_DASH2, - STATE(1291), 1, - sym__expr_unary_minus, - STATE(2350), 1, + STATE(2356), 1, sym_comment, - STATE(2425), 1, - sym_val_string, - STATE(2441), 1, - sym__where_predicate_lhs_path_head, - STATE(2651), 1, - sym__where_predicate_lhs, - STATE(3036), 1, - sym__binary_predicate, - STATE(3039), 1, - sym_where_predicate, - ACTIONS(2499), 2, - anon_sym_true, - anon_sym_false, - STATE(2268), 2, - sym_expr_parenthesized, + STATE(2697), 1, + sym__immediate_decimal, + ACTIONS(4952), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4954), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1306), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(3035), 2, - sym_expr_unary, - sym_val_bool, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71766] = 9, + ACTIONS(1689), 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, + [72116] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(765), 1, + STATE(923), 1, sym__immediate_decimal, - STATE(2351), 1, + STATE(2357), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(764), 2, + STATE(922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1600), 16, + ACTIONS(1628), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203633,76 +204154,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71812] = 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(1602), 1, - anon_sym_DOLLAR, - ACTIONS(2774), 1, - aux_sym_expr_unary_token1, - ACTIONS(4885), 1, - anon_sym_LPAREN, - ACTIONS(4887), 1, - anon_sym_DASH2, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, - sym__expr_unary_minus, - STATE(2352), 1, - sym_comment, - STATE(2425), 1, - sym_val_string, - STATE(2441), 1, - sym__where_predicate_lhs_path_head, - STATE(2627), 1, - sym__where_predicate_lhs, - STATE(2860), 1, - sym__binary_predicate, - STATE(2861), 1, - sym_where_predicate, - ACTIONS(1931), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71882] = 9, + [72162] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(786), 1, + STATE(761), 1, sym__immediate_decimal, - STATE(2353), 1, + STATE(2358), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(785), 2, + STATE(760), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 16, + ACTIONS(1707), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203719,27 +204191,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71928] = 9, + [72208] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(802), 1, + STATE(763), 1, sym__immediate_decimal, - STATE(2354), 1, + STATE(2359), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(801), 2, + STATE(762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1681), 16, + ACTIONS(1677), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203756,27 +204228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71974] = 9, + [72254] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(804), 1, + STATE(765), 1, sym__immediate_decimal, - STATE(2355), 1, + STATE(2360), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(803), 2, + STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1685), 16, + ACTIONS(1681), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203793,313 +204265,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72020] = 21, + [72300] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4885), 1, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4931), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4933), 1, + anon_sym_DOLLAR, + ACTIONS(4935), 1, anon_sym_DASH2, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(1293), 1, sym__expr_unary_minus, - STATE(2356), 1, + STATE(2361), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2630), 1, sym__where_predicate_lhs, - STATE(2862), 1, + STATE(2961), 1, sym__binary_predicate, - STATE(2863), 1, + STATE(2964), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(2510), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2270), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2952), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72090] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - STATE(2357), 1, - sym_comment, - STATE(2663), 1, - sym__immediate_decimal, - ACTIONS(4946), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4948), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1297), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 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, - [72138] = 21, + [72370] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4885), 1, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4931), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4933), 1, + anon_sym_DOLLAR, + ACTIONS(4935), 1, anon_sym_DASH2, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(1293), 1, sym__expr_unary_minus, - STATE(2358), 1, + STATE(2362), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2630), 1, sym__where_predicate_lhs, - STATE(2864), 1, + STATE(3036), 1, sym__binary_predicate, - STATE(2865), 1, + STATE(3046), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(2510), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2270), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2952), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72208] = 21, + [72440] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2810), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, + ACTIONS(4931), 1, anon_sym_LPAREN, - ACTIONS(4912), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR, - ACTIONS(4914), 1, + ACTIONS(4935), 1, anon_sym_DASH2, - STATE(1291), 1, + STATE(1293), 1, sym__expr_unary_minus, - STATE(2359), 1, + STATE(2363), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2651), 1, + STATE(2630), 1, sym__where_predicate_lhs, - STATE(2920), 1, - sym_where_predicate, - STATE(2991), 1, + STATE(2979), 1, sym__binary_predicate, - ACTIONS(2499), 2, + STATE(2980), 1, + sym_where_predicate, + ACTIONS(2510), 2, anon_sym_true, anon_sym_false, - STATE(2268), 2, + STATE(2270), 2, sym_expr_parenthesized, sym_val_variable, - STATE(3035), 2, + STATE(2952), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72278] = 21, + [72510] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2810), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4912), 1, - anon_sym_DOLLAR, - ACTIONS(4914), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - STATE(1291), 1, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2360), 1, + STATE(2364), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2651), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(3045), 1, + STATE(2786), 1, sym__binary_predicate, - STATE(3046), 1, + STATE(2787), 1, sym_where_predicate, - ACTIONS(2499), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2268), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(3035), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72348] = 21, + [72580] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2810), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4891), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4912), 1, - anon_sym_DOLLAR, - ACTIONS(4914), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - STATE(1291), 1, + ACTIONS(4911), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2361), 1, + STATE(2365), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2651), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2923), 1, + STATE(2788), 1, sym__binary_predicate, - STATE(2924), 1, + STATE(2789), 1, sym_where_predicate, - ACTIONS(2499), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2268), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(3035), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72418] = 10, - ACTIONS(3), 1, + [72650] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1642), 1, + sym__space, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(1657), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3830), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - STATE(2362), 1, - sym_comment, - STATE(2665), 1, - sym__immediate_decimal, - ACTIONS(4946), 2, + ACTIONS(4964), 1, + anon_sym_DOT, + ACTIONS(4966), 1, aux_sym__immediate_decimal_token1, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4948), 2, + STATE(2366), 1, + sym_comment, + STATE(2569), 1, + sym__immediate_decimal, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1324), 2, + STATE(2716), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 15, - ts_builtin_sym_end, + ACTIONS(1644), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204111,218 +204549,233 @@ static const uint16_t 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, - [72466] = 21, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72704] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2363), 1, + STATE(2367), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2866), 1, + STATE(2792), 1, sym__binary_predicate, - STATE(2867), 1, + STATE(2793), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72536] = 21, + [72774] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2364), 1, + STATE(2368), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2868), 1, + STATE(2794), 1, sym__binary_predicate, - STATE(2869), 1, + STATE(2795), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72606] = 21, + [72844] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(2774), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4885), 1, + ACTIONS(4905), 1, anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(2365), 1, + STATE(2369), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2627), 1, + STATE(2631), 1, sym__where_predicate_lhs, - STATE(2858), 1, + STATE(2796), 1, sym__binary_predicate, - STATE(2859), 1, + STATE(2797), 1, sym_where_predicate, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2779), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72676] = 21, + [72914] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, ACTIONS(199), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2810), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4891), 1, + ACTIONS(4911), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4910), 1, + ACTIONS(4931), 1, anon_sym_LPAREN, - ACTIONS(4912), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR, - ACTIONS(4914), 1, + ACTIONS(4935), 1, anon_sym_DASH2, - STATE(1291), 1, + STATE(1293), 1, sym__expr_unary_minus, - STATE(2366), 1, + STATE(2370), 1, sym_comment, - STATE(2425), 1, + STATE(2431), 1, sym_val_string, - STATE(2441), 1, + STATE(2450), 1, sym__where_predicate_lhs_path_head, - STATE(2651), 1, + STATE(2630), 1, sym__where_predicate_lhs, - STATE(2919), 1, - sym_where_predicate, - STATE(2921), 1, + STATE(2957), 1, sym__binary_predicate, - ACTIONS(2499), 2, + STATE(2967), 1, + sym_where_predicate, + ACTIONS(2510), 2, anon_sym_true, anon_sym_false, - STATE(2268), 2, + STATE(2270), 2, sym_expr_parenthesized, sym_val_variable, - STATE(3035), 2, + STATE(2952), 2, sym_expr_unary, sym_val_bool, - STATE(442), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72746] = 6, - ACTIONS(3), 1, + [72984] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4950), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(4972), 1, anon_sym_DOT, - ACTIONS(4952), 1, - aux_sym__immediate_decimal_token5, - STATE(2367), 1, + ACTIONS(4974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token2, + STATE(2371), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + STATE(2636), 1, + sym__immediate_decimal, + ACTIONS(1642), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2828), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204334,30 +204787,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, + [73037] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(4980), 1, + anon_sym_DOT_DOT2, + ACTIONS(4984), 1, sym_filesize_unit, + ACTIONS(4986), 1, sym_duration_unit, - [72786] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4954), 1, - anon_sym_DOT, - ACTIONS(4956), 1, - aux_sym__immediate_decimal_token5, - STATE(2368), 1, + STATE(2372), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + STATE(5068), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4982), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(914), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204369,25 +204819,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, - sym_filesize_unit, - sym_duration_unit, - [72825] = 5, + [73084] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4958), 1, aux_sym__immediate_decimal_token5, - STATE(2369), 1, + STATE(2373), 1, sym_comment, - ACTIONS(775), 2, + ACTIONS(751), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(777), 21, + ACTIONS(753), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204409,17 +204856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72862] = 5, + [73121] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4952), 1, + ACTIONS(4988), 1, aux_sym__immediate_decimal_token5, - STATE(2370), 1, + STATE(2374), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(793), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204441,69 +204888,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72899] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(4960), 1, - anon_sym_DOT_DOT2, - ACTIONS(4964), 1, - sym_filesize_unit, - ACTIONS(4966), 1, - sym_duration_unit, - STATE(2371), 1, - sym_comment, - STATE(5075), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 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, - [72946] = 12, - ACTIONS(103), 1, + [73158] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1620), 1, + ACTIONS(1628), 1, sym__space, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(4968), 1, + ACTIONS(4966), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4970), 1, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token2, - STATE(2372), 1, + ACTIONS(4990), 1, + anon_sym_DOT, + STATE(2375), 1, sym_comment, - STATE(2830), 1, + STATE(2715), 1, sym__immediate_decimal, - ACTIONS(4972), 2, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3057), 2, + STATE(2714), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 13, + ACTIONS(1632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204517,27 +204927,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72997] = 9, + [73209] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(3830), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - STATE(1350), 1, + STATE(1322), 1, sym__immediate_decimal, - STATE(2373), 1, + STATE(2376), 1, sym_comment, - ACTIONS(1663), 2, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + ACTIONS(1782), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1332), 2, + STATE(1320), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1600), 15, + ACTIONS(1628), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204553,74 +204963,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73042] = 12, - ACTIONS(103), 1, + [73254] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, - sym__space, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(3149), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4970), 1, - aux_sym__immediate_decimal_token2, - STATE(2374), 1, - sym_comment, - STATE(2847), 1, + STATE(1298), 1, sym__immediate_decimal, - ACTIONS(4972), 2, + STATE(2377), 1, + sym_comment, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3088), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1647), 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, - [73093] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4974), 1, - anon_sym_DOT, - ACTIONS(4976), 1, + ACTIONS(1782), 2, aux_sym__immediate_decimal_token1, - ACTIONS(4978), 1, aux_sym__immediate_decimal_token2, - STATE(2375), 1, - sym_comment, - STATE(2574), 1, - sym__immediate_decimal, - ACTIONS(1620), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4980), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2751), 2, + STATE(1296), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1622), 11, + ACTIONS(1707), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204632,58 +204996,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, - [73146] = 12, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [73299] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - sym__space, - ACTIONS(3149), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4982), 1, - anon_sym_DOT, - STATE(2376), 1, - sym_comment, - STATE(2717), 1, + STATE(1301), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + STATE(2378), 1, + sym_comment, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2716), 2, + ACTIONS(1782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 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, - [73197] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4984), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, - aux_sym__immediate_decimal_token5, - STATE(2377), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, + ACTIONS(1677), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204699,32 +205035,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73236] = 9, + [73344] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(3830), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - STATE(1315), 1, + STATE(1304), 1, sym__immediate_decimal, - STATE(2378), 1, + STATE(2379), 1, sym_comment, - ACTIONS(1663), 2, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + ACTIONS(1782), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1363), 2, + STATE(1302), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 15, + ACTIONS(1681), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204740,27 +205071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73281] = 9, + [73389] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - STATE(1349), 1, - sym__immediate_decimal, - STATE(2379), 1, + ACTIONS(4992), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + aux_sym__immediate_decimal_token5, + STATE(2380), 1, sym_comment, - ACTIONS(1663), 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(1328), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 15, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204776,28 +205099,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73326] = 9, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73428] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1689), 1, + sym__space, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3830), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - STATE(1321), 1, - sym__immediate_decimal, - STATE(2380), 1, + ACTIONS(4996), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4998), 1, + aux_sym__immediate_decimal_token2, + STATE(2381), 1, sym_comment, - ACTIONS(1663), 2, + STATE(2907), 1, + sym__immediate_decimal, + ACTIONS(5000), 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(1311), 2, + STATE(3136), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1685), 15, - ts_builtin_sym_end, + ACTIONS(1691), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204809,33 +205141,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [73371] = 11, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73479] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1642), 1, sym__space, - ACTIONS(3149), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(4998), 1, aux_sym__immediate_decimal_token2, - STATE(2381), 1, + STATE(2382), 1, sym_comment, - STATE(3083), 1, + STATE(2903), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(5000), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3082), 2, + STATE(3113), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 13, + ACTIONS(1644), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204849,17 +205182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73419] = 5, + [73530] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4992), 1, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5004), 1, aux_sym__immediate_decimal_token5, - STATE(2382), 1, + STATE(2383), 1, sym_comment, - ACTIONS(775), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(777), 20, + ACTIONS(761), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204880,65 +205215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73455] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - aux_sym__immediate_decimal_token5, - STATE(2383), 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, - [73493] = 12, - ACTIONS(103), 1, + [73569] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4998), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5000), 1, - aux_sym__immediate_decimal_token2, STATE(2384), 1, sym_comment, - STATE(3005), 1, - sym__immediate_decimal, - ACTIONS(1645), 2, + ACTIONS(1486), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1488), 21, ts_builtin_sym_end, - sym__space, - ACTIONS(5002), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3345), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1647), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204950,15 +205237,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, - [73543] = 4, + 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, + [73603] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5006), 1, + aux_sym__immediate_decimal_token5, STATE(2385), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(793), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204970,8 +205268,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, @@ -204980,15 +205276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73577] = 4, + [73639] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5008), 1, + anon_sym_QMARK2, + ACTIONS(5010), 1, + anon_sym_BANG, STATE(2386), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 21, + STATE(2486), 1, + sym__path_suffix, + ACTIONS(1474), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205000,25 +205300,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_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, - sym_filesize_unit, - sym_duration_unit, - [73611] = 4, + anon_sym_DOT2, + [73677] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5012), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5014), 1, + aux_sym__immediate_decimal_token5, STATE(2387), 1, sym_comment, - ACTIONS(866), 2, + ACTIONS(1776), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(868), 21, + ACTIONS(1774), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205038,21 +205340,28 @@ 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, - [73645] = 6, + [73715] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5006), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1864), 1, + sym__unquoted_pattern, + ACTIONS(5016), 1, + anon_sym_DOT_DOT2, + ACTIONS(5020), 1, + sym_filesize_unit, + ACTIONS(5022), 1, + sym_duration_unit, STATE(2388), 1, sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 19, + STATE(4987), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5018), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(914), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205064,23 +205373,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73683] = 4, + [73761] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2389), 1, sym_comment, - ACTIONS(1522), 2, + ACTIONS(1531), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1524), 21, + ACTIONS(1533), 21, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -205102,17 +205406,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [73717] = 4, - ACTIONS(3), 1, + [73795] = 11, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1628), 1, + sym__space, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(5024), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token2, STATE(2390), 1, sym_comment, - ACTIONS(1530), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1532), 21, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(3111), 1, + sym__immediate_decimal, + ACTIONS(4970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3110), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205124,25 +205441,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_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, - [73751] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73843] = 11, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1707), 1, + sym__space, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(5024), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token2, STATE(2391), 1, sym_comment, - ACTIONS(1480), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1482), 21, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(3131), 1, + sym__immediate_decimal, + ACTIONS(4970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205154,25 +205478,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, - anon_sym_COLON, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73891] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__space, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(5024), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token2, + STATE(2392), 1, + sym_comment, + STATE(3133), 1, + sym__immediate_decimal, + ACTIONS(4970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3132), 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, + [73939] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5028), 1, + anon_sym_DOT, + ACTIONS(5030), 1, + aux_sym__immediate_decimal_token5, + STATE(2393), 1, + sym_comment, + ACTIONS(753), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [73785] = 4, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(751), 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, + [73977] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2392), 1, + STATE(2394), 1, sym_comment, - ACTIONS(1516), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1518), 21, - ts_builtin_sym_end, - anon_sym_EQ, + sym__unquoted_pattern, + ACTIONS(761), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205184,23 +205569,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, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [73819] = 4, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74011] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2393), 1, + STATE(2395), 1, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1541), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1470), 21, + ACTIONS(1543), 21, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -205222,15 +205609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [73853] = 4, + [74045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2394), 1, + STATE(2396), 1, sym_comment, - ACTIONS(1472), 2, + ACTIONS(1545), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1474), 21, + ACTIONS(1547), 21, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -205252,30 +205639,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [73887] = 11, - ACTIONS(103), 1, + [74079] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1681), 1, sym__space, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(5024), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(5026), 1, aux_sym__immediate_decimal_token2, - STATE(2395), 1, + STATE(2397), 1, sym_comment, - STATE(3055), 1, + STATE(3135), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3054), 2, + STATE(3134), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 13, + ACTIONS(1683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205289,30 +205676,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73935] = 11, - ACTIONS(103), 1, + [74127] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__space, - ACTIONS(3149), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(5032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(5034), 1, aux_sym__immediate_decimal_token2, - STATE(2396), 1, + STATE(2398), 1, sym_comment, - STATE(3085), 1, + STATE(2959), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1642), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5036), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3084), 2, + STATE(3286), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 13, + ACTIONS(1644), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205324,32 +205714,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [73983] = 11, - ACTIONS(103), 1, + [74177] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1685), 1, - sym__space, - ACTIONS(3149), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(4974), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(4976), 1, aux_sym__immediate_decimal_token2, - STATE(2397), 1, + ACTIONS(5038), 1, + anon_sym_DOT, + STATE(2399), 1, sym_comment, - STATE(3087), 1, + STATE(2827), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1628), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3086), 2, + STATE(2826), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1687), 13, + ACTIONS(1632), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205361,35 +205752,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, - [74031] = 12, - ACTIONS(103), 1, + [74227] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4998), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5000), 1, - aux_sym__immediate_decimal_token2, - STATE(2398), 1, + STATE(2400), 1, sym_comment, - STATE(3013), 1, - sym__immediate_decimal, - ACTIONS(1620), 2, + ACTIONS(1535), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1537), 21, ts_builtin_sym_end, - sym__space, - ACTIONS(5002), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3268), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205401,23 +205774,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, - [74081] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5008), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5010), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, - sym_comment, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + anon_sym_QMARK2, + anon_sym_BANG, + [74261] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5040), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(748), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2401), 1, + sym_comment, + ACTIONS(1905), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205430,36 +205809,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_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74119] = 12, - ACTIONS(103), 1, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74301] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3366), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(4976), 1, + ACTIONS(5032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4978), 1, + ACTIONS(5034), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(2400), 1, + STATE(2402), 1, sym_comment, - STATE(2750), 1, + STATE(2971), 1, sym__immediate_decimal, - ACTIONS(1600), 2, + ACTIONS(1689), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4980), 2, + ACTIONS(5036), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2744), 2, + STATE(3279), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 11, + ACTIONS(1691), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205471,23 +205853,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, - [74169] = 8, + [74351] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_DOT_DOT2, - ACTIONS(5014), 1, + ACTIONS(5040), 1, anon_sym_DOT2, - STATE(443), 1, - sym_cell_path, - STATE(703), 1, + STATE(472), 1, sym_path, - STATE(2401), 1, - sym_comment, - STATE(2432), 1, + STATE(758), 1, + sym_cell_path, + STATE(2335), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 18, - ts_builtin_sym_end, + STATE(2403), 1, + sym_comment, + ACTIONS(1925), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205499,25 +205879,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_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [74391] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5044), 1, + aux_sym__immediate_decimal_token5, + STATE(2404), 1, + sym_comment, + ACTIONS(761), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74211] = 6, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(759), 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, + [74429] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(5046), 1, anon_sym_QMARK2, - ACTIONS(5018), 1, + ACTIONS(5048), 1, anon_sym_BANG, - STATE(2402), 1, - sym_comment, - STATE(2509), 1, + STATE(742), 1, sym__path_suffix, - ACTIONS(1450), 20, - anon_sym_EQ, + STATE(2405), 1, + sym_comment, + ACTIONS(1472), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1474), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205530,28 +205946,23 @@ 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [74249] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74469] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(772), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2403), 1, + ACTIONS(4994), 1, + aux_sym__immediate_decimal_token5, + STATE(2406), 1, sym_comment, - ACTIONS(1889), 19, - anon_sym_if, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205563,28 +205974,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74289] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(783), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2404), 1, + ACTIONS(5050), 1, + anon_sym_DOT, + ACTIONS(5052), 1, + aux_sym__immediate_decimal_token5, + STATE(2407), 1, sym_comment, - ACTIONS(1901), 19, - anon_sym_if, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205597,33 +206007,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74329] = 10, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74543] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1846), 1, - sym__unquoted_pattern, - ACTIONS(5022), 1, + ACTIONS(1466), 1, anon_sym_DOT_DOT2, - ACTIONS(5026), 1, - sym_filesize_unit, - ACTIONS(5028), 1, - sym_duration_unit, - STATE(2405), 1, + ACTIONS(5054), 1, + anon_sym_DOT2, + STATE(431), 1, + sym_cell_path, + STATE(737), 1, + sym_path, + STATE(2408), 1, sym_comment, - STATE(5070), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5024), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 15, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1468), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205636,22 +206042,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, - [74375] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74585] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT, - ACTIONS(5032), 1, - aux_sym__immediate_decimal_token5, - STATE(2406), 1, + STATE(2409), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1784), 19, + ACTIONS(793), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205671,18 +206076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74413] = 5, + sym_filesize_unit, + sym_duration_unit, + [74619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym__immediate_decimal_token5, - STATE(2407), 1, + STATE(2410), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(803), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(805), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205694,6 +206098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -205702,22 +206108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74449] = 7, + [74653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, - anon_sym_QMARK2, - ACTIONS(5036), 1, - anon_sym_BANG, - STATE(726), 1, - sym__path_suffix, - STATE(2408), 1, + STATE(2411), 1, sym_comment, - ACTIONS(1448), 2, + ACTIONS(1527), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1450), 18, + ACTIONS(1529), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205735,29 +206136,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74489] = 11, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [74687] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(1796), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(5038), 1, - anon_sym_DOT_DOT2, - ACTIONS(5042), 1, - sym_filesize_unit, - ACTIONS(5044), 1, - sym_duration_unit, - ACTIONS(5046), 1, - sym__unquoted_pattern, - STATE(2409), 1, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5056), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5058), 1, + aux_sym__immediate_decimal_token2, + STATE(2412), 1, sym_comment, - STATE(5052), 1, + STATE(3367), 1, + sym__immediate_decimal, + ACTIONS(1628), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3359), 2, sym__expr_parenthesized_immediate, - ACTIONS(5040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 13, + sym_val_variable, + ACTIONS(1632), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205769,57 +206174,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, - [74536] = 13, - ACTIONS(3), 1, + [74734] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3255), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5048), 1, - anon_sym_DOT, - ACTIONS(5050), 1, + ACTIONS(5056), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5052), 1, + ACTIONS(5058), 1, aux_sym__immediate_decimal_token2, - STATE(2410), 1, + STATE(2413), 1, sym_comment, - STATE(2699), 1, + STATE(3278), 1, sym__immediate_decimal, - ACTIONS(1622), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5054), 2, + ACTIONS(1681), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2927), 2, + STATE(3277), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1620), 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, - [74587] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - aux_sym__immediate_decimal_token5, - STATE(2411), 1, - sym_comment, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 19, + ACTIONS(1683), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205831,94 +206210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74622] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_GT2, - ACTIONS(5060), 1, - sym__entry_separator, - ACTIONS(5062), 1, - sym_raw_string_begin, - STATE(2412), 1, - sym_comment, - STATE(2424), 1, - aux_sym__types_body_repeat2, - ACTIONS(5056), 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, - [74661] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5060), 1, - sym__entry_separator, - ACTIONS(5062), 1, - sym_raw_string_begin, - ACTIONS(5064), 1, - anon_sym_GT2, - STATE(2413), 1, - sym_comment, - STATE(2424), 1, - aux_sym__types_body_repeat2, - ACTIONS(5056), 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, - [74700] = 8, + [74781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - anon_sym_DOT_DOT2, - ACTIONS(5014), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(948), 1, - sym_cell_path, STATE(2414), 1, sym_comment, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1689), 17, + ACTIONS(803), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(805), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205934,58 +206234,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74741] = 7, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [74814] = 6, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5060), 1, - sym__entry_separator, + anon_sym_DOT, ACTIONS(5062), 1, - sym_raw_string_begin, - ACTIONS(5066), 1, - anon_sym_GT2, - STATE(2415), 1, - sym_comment, - STATE(2424), 1, - aux_sym__types_body_repeat2, - ACTIONS(5056), 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, - [74780] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5068), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5070), 1, aux_sym__immediate_decimal_token5, - STATE(2416), 1, + STATE(2415), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 18, 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, @@ -205997,19 +206264,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, - sym__unquoted_pattern, - [74817] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5072), 1, + ACTIONS(5064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5066), 1, aux_sym__immediate_decimal_token5, - STATE(2417), 1, + STATE(2416), 1, sym_comment, - ACTIONS(1834), 2, + ACTIONS(1776), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1832), 19, + ACTIONS(1774), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206021,39 +206295,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, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74852] = 11, - ACTIONS(103), 1, + [74888] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5074), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5076), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, + ACTIONS(1705), 1, + anon_sym_DOT_DOT2, + ACTIONS(5054), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(981), 1, + sym_cell_path, + STATE(2417), 1, sym_comment, - STATE(3263), 1, - sym__immediate_decimal, - ACTIONS(1600), 2, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1703), 17, ts_builtin_sym_end, - sym__space, - ACTIONS(4980), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3377), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206065,21 +206329,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, - [74899] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74929] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4996), 1, - aux_sym__immediate_decimal_token5, - STATE(2419), 1, - sym_comment, - ACTIONS(741), 6, + ACTIONS(914), 1, sym__space, + ACTIONS(1796), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5068), 1, + anon_sym_DOT_DOT2, + ACTIONS(5072), 1, sym_filesize_unit, + ACTIONS(5074), 1, sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(5076), 1, + sym__unquoted_pattern, + STATE(2418), 1, + sym_comment, + STATE(5081), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5070), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206093,22 +206370,24 @@ 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, - [74934] = 6, - ACTIONS(3), 1, + [74976] = 6, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(5078), 1, aux_sym__immediate_decimal_token1, ACTIONS(5080), 1, aux_sym__immediate_decimal_token5, - STATE(2420), 1, + STATE(2419), 1, sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 18, + ACTIONS(761), 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(759), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206120,32 +206399,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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75013] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3348), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74971] = 7, - ACTIONS(103), 1, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + ACTIONS(5082), 1, + anon_sym_DOT, + ACTIONS(5084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5086), 1, + aux_sym__immediate_decimal_token2, + STATE(2420), 1, + sym_comment, + STATE(2723), 1, + sym__immediate_decimal, + ACTIONS(1644), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5088), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2985), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1642), 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, + [75064] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(5092), 1, + anon_sym_GT2, + ACTIONS(5094), 1, sym__entry_separator, - ACTIONS(5062), 1, + ACTIONS(5096), 1, sym_raw_string_begin, - ACTIONS(5082), 1, - anon_sym_GT2, STATE(2421), 1, sym_comment, - STATE(2424), 1, + STATE(2422), 1, + aux_sym__types_body_repeat2, + ACTIONS(5090), 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, + [75103] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3761), 1, + sym_raw_string_begin, + ACTIONS(5098), 1, + sym__entry_separator, + STATE(2422), 2, + sym_comment, aux_sym__types_body_repeat2, - ACTIONS(5056), 18, + ACTIONS(3756), 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, @@ -206158,22 +206501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75010] = 8, + [75138] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, + ACTIONS(1671), 1, anon_sym_DOT_DOT2, - ACTIONS(5014), 1, + ACTIONS(5054), 1, anon_sym_DOT2, - STATE(703), 1, + STATE(737), 1, sym_path, - STATE(959), 1, + STATE(937), 1, sym_cell_path, - STATE(2422), 1, + STATE(2423), 1, sym_comment, - STATE(2432), 1, + STATE(2434), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1675), 17, + ACTIONS(1669), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206191,16 +206534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75051] = 4, + [75179] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2423), 1, + ACTIONS(5101), 1, + aux_sym__immediate_decimal_token5, + STATE(2424), 1, sym_comment, - ACTIONS(866), 2, + ACTIONS(1868), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(868), 20, - ts_builtin_sym_end, + ACTIONS(1866), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206212,132 +206556,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, 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, - [75084] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3745), 1, - sym_raw_string_begin, - ACTIONS(5084), 1, - sym__entry_separator, - STATE(2424), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3740), 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, - [75119] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1665), 1, - anon_sym_QMARK2, - ACTIONS(1667), 1, - anon_sym_BANG, - STATE(2425), 1, - sym_comment, - STATE(2565), 1, - sym__path_suffix, - ACTIONS(5089), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5087), 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, - [75158] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5091), 1, - anon_sym_DOT, - ACTIONS(5093), 1, - aux_sym__immediate_decimal_token5, - STATE(2426), 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, - 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, - [75195] = 11, - ACTIONS(103), 1, + [75214] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3366), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5074), 1, + ACTIONS(5056), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5076), 1, + ACTIONS(5058), 1, aux_sym__immediate_decimal_token2, - STATE(2427), 1, + STATE(2425), 1, sym_comment, - STATE(3415), 1, + STATE(3268), 1, sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1707), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4980), 2, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3337), 2, + STATE(3266), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 11, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206349,21 +206600,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, - [75242] = 7, + [75261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(1490), 1, + anon_sym_DOT_DOT2, + ACTIONS(5103), 1, anon_sym_DOT2, - STATE(2302), 1, - sym_cell_path, - STATE(2428), 1, + STATE(737), 1, + sym_path, + STATE(2426), 2, sym_comment, - STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - ACTIONS(1444), 18, - anon_sym_EQ, + ACTIONS(1492), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206375,67 +206625,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [75281] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - aux_sym__immediate_decimal_token5, - STATE(2429), 1, - sym_comment, - ACTIONS(777), 6, - sym__space, - anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(775), 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, - [75316] = 11, - ACTIONS(103), 1, + [75298] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3366), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5074), 1, + ACTIONS(5056), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5076), 1, + ACTIONS(5058), 1, aux_sym__immediate_decimal_token2, - STATE(2430), 1, + STATE(2427), 1, sym_comment, - STATE(3342), 1, + STATE(3275), 1, sym__immediate_decimal, - ACTIONS(1681), 2, + ACTIONS(1677), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4980), 2, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3341), 2, + STATE(3271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 11, + ACTIONS(1679), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206447,31 +206667,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, - [75363] = 11, - ACTIONS(103), 1, + [75345] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5074), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5076), 1, - aux_sym__immediate_decimal_token2, - STATE(2431), 1, + ACTIONS(5106), 1, + anon_sym_DOT, + ACTIONS(5108), 1, + aux_sym__immediate_decimal_token5, + STATE(2428), 1, sym_comment, - STATE(3344), 1, - sym__immediate_decimal, - ACTIONS(1685), 2, + ACTIONS(753), 7, ts_builtin_sym_end, sym__space, - ACTIONS(4980), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1687), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(751), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206483,21 +206696,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, - [75410] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1526), 1, anon_sym_DOT_DOT2, - ACTIONS(5014), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(2432), 1, + sym__unquoted_pattern, + [75382] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5110), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, sym_comment, - STATE(2436), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1528), 18, - ts_builtin_sym_end, + ACTIONS(793), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(791), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206509,22 +206724,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, - [75449] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75417] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2433), 1, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2309), 1, + sym_cell_path, + STATE(2430), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + ACTIONS(1468), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206536,27 +206754,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - 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, - [75482] = 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [75456] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - ACTIONS(5101), 1, - aux_sym__immediate_decimal_token5, - STATE(2434), 1, + ACTIONS(1685), 1, + anon_sym_QMARK2, + ACTIONS(1687), 1, + anon_sym_BANG, + STATE(2431), 1, + sym_comment, + STATE(2573), 1, + sym__path_suffix, + ACTIONS(5116), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5114), 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, + [75495] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + ACTIONS(5118), 1, + anon_sym_GT2, + STATE(2422), 1, + aux_sym__types_body_repeat2, + STATE(2432), 1, + sym_comment, + ACTIONS(5090), 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, + [75534] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + ACTIONS(5120), 1, + anon_sym_GT2, + STATE(2422), 1, + aux_sym__types_body_repeat2, + STATE(2433), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(5090), 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, + [75573] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1577), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 18, + ACTIONS(5054), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(2426), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2434), 1, + sym_comment, + ACTIONS(1579), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206569,55 +206882,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75519] = 4, - ACTIONS(3), 1, + [75612] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + ACTIONS(5122), 1, + anon_sym_GT2, + STATE(2422), 1, + aux_sym__types_body_repeat2, STATE(2435), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 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(5090), 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, + [75651] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + aux_sym__immediate_decimal_token5, + STATE(2436), 1, + sym_comment, + ACTIONS(753), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [75552] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1536), 1, - anon_sym_DOT_DOT2, - ACTIONS(5103), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(2436), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 18, - ts_builtin_sym_end, + ACTIONS(751), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206629,28 +206946,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75589] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75686] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5093), 1, - aux_sym__immediate_decimal_token5, STATE(2437), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 20, 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, @@ -206662,17 +206971,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, - [75623] = 4, + 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, + [75719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_BANG, STATE(2438), 1, sym_comment, - ACTIONS(1464), 20, - anon_sym_EQ, + ACTIONS(791), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(793), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206684,28 +207000,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_RBRACE, - anon_sym_DOT2, - [75655] = 7, + 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, + [75752] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(974), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5052), 1, + aux_sym__immediate_decimal_token5, STATE(2439), 1, sym_comment, - ACTIONS(1885), 17, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206718,29 +207031,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [75693] = 8, - ACTIONS(103), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75787] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5124), 1, anon_sym_DOT2, STATE(2440), 1, sym_comment, - STATE(2508), 1, + STATE(2509), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, + STATE(2581), 1, sym_path, - STATE(2660), 1, + STATE(2691), 1, sym_cell_path, - ACTIONS(1444), 3, + ACTIONS(1468), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 14, + ACTIONS(1466), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206755,51 +207070,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75733] = 7, + [75827] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(2441), 1, + ACTIONS(5126), 1, + sym__newline, + STATE(2441), 2, sym_comment, - STATE(2445), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5112), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5110), 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, - [75771] = 7, - ACTIONS(3), 1, + aux_sym__types_body_repeat1, + ACTIONS(3782), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3784), 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, + [75861] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(5124), 1, anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(978), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2442), 1, sym_comment, - ACTIONS(1893), 17, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2701), 1, + sym_cell_path, + ACTIONS(1669), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1671), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206812,122 +207129,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [75809] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2443), 1, - sym_comment, - ACTIONS(1834), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75841] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3255), 1, - anon_sym_LPAREN2, - ACTIONS(3842), 1, - anon_sym_DOLLAR, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5052), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5114), 1, - anon_sym_DOT, - STATE(2444), 1, - sym_comment, - STATE(3022), 1, - sym__immediate_decimal, - ACTIONS(1604), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5054), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3020), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1600), 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, - [75889] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1870), 1, - anon_sym_DOT2, - STATE(437), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(470), 1, - sym_path, - STATE(2445), 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, - [75927] = 4, - ACTIONS(103), 1, + [75901] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2446), 1, - sym_comment, - ACTIONS(3771), 2, - sym_raw_string_begin, + ACTIONS(5094), 1, sym__entry_separator, - ACTIONS(3769), 19, + ACTIONS(5096), 1, + sym_raw_string_begin, + STATE(2422), 1, + aux_sym__types_body_repeat2, + STATE(2443), 1, + sym_comment, + ACTIONS(5090), 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_GT2, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -206940,23 +207161,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75959] = 6, + [75937] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5122), 1, + ACTIONS(5129), 1, + anon_sym_DOT, + ACTIONS(5131), 1, aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2444), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(751), 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(753), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206970,88 +207191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75995] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DOT2, - STATE(2448), 1, - sym_comment, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, - sym_path, - STATE(2681), 1, - sym_cell_path, - ACTIONS(1689), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1691), 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, - [76035] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5124), 1, - anon_sym_DOT_DOT2, - ACTIONS(5128), 1, - sym_filesize_unit, - ACTIONS(5130), 1, - sym_duration_unit, - ACTIONS(5132), 1, - sym__unquoted_pattern, - STATE(2449), 1, - sym_comment, - STATE(4962), 1, - sym__expr_parenthesized_immediate, - ACTIONS(884), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5126), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 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, - [76081] = 6, - ACTIONS(103), 1, + [75973] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5136), 1, - aux_sym__immediate_decimal_token5, - STATE(2450), 1, + ACTIONS(5133), 1, + anon_sym_BANG, + STATE(2445), 1, sym_comment, - ACTIONS(1730), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 15, + ACTIONS(1462), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207063,66 +207211,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76117] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5138), 1, - aux_sym__immediate_decimal_token5, - STATE(2451), 1, - sym_comment, - ACTIONS(777), 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(775), 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, - [76151] = 12, + anon_sym_DOT2, + [76005] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1659), 1, sym__unquoted_pattern_in_record, - ACTIONS(3255), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR, - ACTIONS(5140), 1, + ACTIONS(5135), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5142), 1, + ACTIONS(5137), 1, aux_sym__immediate_decimal_token2, - STATE(2452), 1, + STATE(2446), 1, sym_comment, - STATE(3069), 1, + STATE(3104), 1, sym__immediate_decimal, - ACTIONS(1622), 2, + ACTIONS(1644), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5144), 2, + ACTIONS(5139), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3536), 2, + STATE(3489), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1620), 9, + ACTIONS(1642), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -207132,50 +207255,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76199] = 7, + [76053] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(954), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2453), 1, + ACTIONS(5141), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5143), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, sym_comment, - ACTIONS(1872), 17, + ACTIONS(759), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(761), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76237] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2454), 1, - sym_comment, - ACTIONS(868), 6, - sym__space, + 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, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(866), 15, + [76089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5133), 1, + anon_sym_QMARK2, + STATE(2448), 1, + sym_comment, + ACTIONS(1462), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207187,19 +207305,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76269] = 4, + anon_sym_DOT2, + [76121] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2455), 1, + STATE(2449), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(1776), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 19, + ACTIONS(1774), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207219,44 +207341,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76301] = 5, + [76153] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5146), 1, - sym__newline, - STATE(2456), 2, + ACTIONS(1886), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(2450), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3760), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3762), 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, - [76335] = 4, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5147), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5145), 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, + [76191] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2457), 1, + ACTIONS(5062), 1, + aux_sym__immediate_decimal_token5, + STATE(2451), 1, sym_comment, - ACTIONS(1921), 2, + ACTIONS(1790), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1919), 19, + ACTIONS(1788), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207268,55 +207395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76367] = 4, - ACTIONS(103), 1, + [76225] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2452), 1, sym_comment, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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(1868), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76399] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - sym_comment, - STATE(2460), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - ACTIONS(1528), 18, - anon_sym_EQ, + ACTIONS(1866), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207328,24 +207421,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - [76435] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2460), 2, + STATE(2453), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 18, - anon_sym_EQ, + ACTIONS(1923), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1921), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207357,21 +207449,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_RBRACE, - [76469] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76289] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_QMARK2, - STATE(2461), 1, + STATE(2454), 1, sym_comment, - ACTIONS(1464), 20, - anon_sym_EQ, + ACTIONS(793), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(791), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207383,27 +207481,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_DOT2, - [76501] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76321] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(5149), 1, + anon_sym_QMARK2, + ACTIONS(5151), 1, + anon_sym_BANG, + STATE(2455), 1, sym_comment, - ACTIONS(777), 6, + STATE(2584), 1, + sym__path_suffix, + ACTIONS(1474), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(775), 15, + ACTIONS(1472), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207418,25 +207515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76533] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5108), 1, anon_sym_DOT2, - STATE(2463), 1, + [76359] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2456), 1, sym_comment, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, - sym_path, - STATE(2685), 1, - sym_cell_path, - ACTIONS(1675), 3, + ACTIONS(805), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1677), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(803), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207451,18 +207543,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [76573] = 5, + sym__unquoted_pattern, + [76391] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5101), 1, - aux_sym__immediate_decimal_token5, - STATE(2464), 1, + ACTIONS(5040), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(959), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2457), 1, sym_comment, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 18, - ts_builtin_sym_end, + ACTIONS(1880), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207474,57 +207569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76607] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, - aux_sym__immediate_decimal_token5, - STATE(2465), 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, - sym__newline, - anon_sym_PIPE, - 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, - [76643] = 7, + [76429] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT_DOT2, - STATE(2466), 1, + ACTIONS(5040), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(944), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2458), 1, sym_comment, - ACTIONS(5158), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 16, + ACTIONS(1901), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207537,22 +207601,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76681] = 5, + [76467] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2086), 1, - anon_sym_BANG, - STATE(2467), 1, - sym_comment, - ACTIONS(1462), 2, - anon_sym_DOT_DOT2, + ACTIONS(5040), 1, anon_sym_DOT2, - ACTIONS(1464), 18, - ts_builtin_sym_end, + STATE(472), 1, + sym_path, + STATE(939), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2459), 1, + sym_comment, + ACTIONS(1909), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207564,27 +207631,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_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76715] = 7, - ACTIONS(3), 1, + [76505] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(5160), 1, - anon_sym_DOT_DOT2, - STATE(2468), 1, + ACTIONS(5153), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5155), 1, + aux_sym__immediate_decimal_token5, + STATE(2460), 1, sym_comment, - ACTIONS(5162), 2, + ACTIONS(1774), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 16, + ACTIONS(1776), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207598,53 +207665,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76753] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5060), 1, - sym__entry_separator, - ACTIONS(5062), 1, - sym_raw_string_begin, - STATE(2424), 1, - aux_sym__types_body_repeat2, - STATE(2469), 1, - sym_comment, - ACTIONS(5056), 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, - [76789] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76541] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(953), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(5157), 1, + anon_sym_DOT_DOT2, + STATE(2461), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(5159), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207657,27 +207694,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76827] = 7, - ACTIONS(103), 1, + [76579] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_QMARK2, - ACTIONS(5166), 1, - anon_sym_BANG, - STATE(2471), 1, + ACTIONS(5108), 1, + aux_sym__immediate_decimal_token5, + STATE(2462), 1, sym_comment, - STATE(2593), 1, - sym__path_suffix, - ACTIONS(1450), 3, + ACTIONS(753), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1448), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(751), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207689,22 +207725,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, - anon_sym_DOT2, - [76865] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [76613] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5168), 1, - aux_sym__immediate_decimal_token5, - STATE(2472), 1, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2463), 1, sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 18, - ts_builtin_sym_end, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2698), 1, + sym_cell_path, + ACTIONS(1703), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1705), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207716,39 +207756,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76899] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [76653] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3255), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR, - ACTIONS(5140), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5142), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token2, - STATE(2473), 1, + ACTIONS(5161), 1, + anon_sym_DOT, + STATE(2464), 1, sym_comment, - STATE(3072), 1, + STATE(2984), 1, sym__immediate_decimal, - ACTIONS(1647), 2, + ACTIONS(1632), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5144), 2, + ACTIONS(5088), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3437), 2, + STATE(2983), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 9, + ACTIONS(1628), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -207758,21 +207795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76947] = 6, - ACTIONS(103), 1, + [76701] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5170), 1, - anon_sym_DOT, - ACTIONS(5172), 1, - aux_sym__immediate_decimal_token5, - STATE(2474), 1, + STATE(2465), 1, sym_comment, - ACTIONS(1784), 4, + ACTIONS(761), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(759), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207788,30 +207823,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76983] = 11, - ACTIONS(3), 1, + [76733] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(5176), 1, + ACTIONS(5163), 1, anon_sym_DOT_DOT2, - ACTIONS(5180), 1, + ACTIONS(5167), 1, sym_filesize_unit, - ACTIONS(5182), 1, + ACTIONS(5169), 1, sym_duration_unit, - ACTIONS(5184), 1, - sym__unquoted_pattern_in_record, - STATE(2475), 1, + ACTIONS(5171), 1, + sym__unquoted_pattern, + STATE(2466), 1, sym_comment, - STATE(5042), 1, + STATE(5079), 1, sym__expr_parenthesized_immediate, - ACTIONS(785), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5178), 2, + ACTIONS(914), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5165), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(884), 10, + ACTIONS(811), 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, + [76779] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3348), 1, + anon_sym_LPAREN2, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + ACTIONS(5135), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5137), 1, + aux_sym__immediate_decimal_token2, + STATE(2467), 1, + sym_comment, + STATE(3152), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5139), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3506), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -207819,19 +207892,50 @@ 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, - [77028] = 4, - ACTIONS(103), 1, + [76827] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2476), 1, + ACTIONS(5173), 1, + aux_sym__immediate_decimal_token5, + STATE(2468), 1, sym_comment, - ACTIONS(1524), 3, - sym__space, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 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, - ACTIONS(1522), 17, + [76861] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + sym_comment, + STATE(2470), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + ACTIONS(1579), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207843,18 +207947,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, + [76897] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5175), 1, anon_sym_DOT2, - [77059] = 4, - ACTIONS(103), 1, + STATE(2485), 1, + sym_path, + STATE(2470), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [76931] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2477), 1, + ACTIONS(5178), 1, + aux_sym__immediate_decimal_token5, + STATE(2471), 1, sym_comment, - ACTIONS(868), 7, + ACTIONS(793), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -207862,7 +207997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(866), 13, + ACTIONS(791), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207876,48 +208011,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77090] = 5, + [76965] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5186), 1, - aux_sym__immediate_decimal_token5, - STATE(2478), 1, + ACTIONS(2140), 1, + anon_sym_BANG, + STATE(2472), 1, sym_comment, - ACTIONS(775), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1460), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(777), 13, - anon_sym_EQ, + anon_sym_DOT2, + ACTIONS(1462), 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_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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77123] = 4, - ACTIONS(103), 1, + [76999] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2479), 1, + ACTIONS(1886), 1, + anon_sym_DOT2, + STATE(428), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(472), 1, + sym_path, + STATE(2473), 1, sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, + ACTIONS(5182), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5180), 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, + [77037] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5184), 1, + anon_sym_DOT, + ACTIONS(5186), 1, + aux_sym__immediate_decimal_token5, + STATE(2474), 1, + sym_comment, + ACTIONS(1788), 4, 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(1790), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207929,27 +208097,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_DOT_DOT2, sym__unquoted_pattern, - [77154] = 9, - ACTIONS(103), 1, + [77073] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(4153), 1, - anon_sym_DOT_DOT2, - ACTIONS(5042), 1, - sym_filesize_unit, - ACTIONS(5044), 1, - sym_duration_unit, - ACTIONS(5046), 1, + STATE(2475), 1, + sym_comment, + ACTIONS(3780), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3778), 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, + [77105] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, sym__unquoted_pattern, - STATE(2480), 1, + ACTIONS(5188), 1, + anon_sym_DOT_DOT2, + STATE(2476), 1, sym_comment, - ACTIONS(4155), 2, + ACTIONS(5190), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(785), 13, + ACTIONS(2114), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207963,21 +208157,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [77195] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77143] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5188), 1, + ACTIONS(5040), 1, anon_sym_DOT2, - STATE(2592), 1, + STATE(472), 1, sym_path, - STATE(2481), 2, - sym_comment, + STATE(989), 1, + sym_cell_path, + STATE(2335), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 14, + STATE(2477), 1, + sym_comment, + ACTIONS(1917), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207990,18 +208186,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [77230] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77181] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2482), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(5192), 1, + anon_sym_DOT_DOT2, + STATE(2478), 1, sym_comment, - ACTIONS(1518), 3, - sym__space, + ACTIONS(5194), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1516), 17, + ACTIONS(2104), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208013,22 +208218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77261] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77218] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2479), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(793), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1468), 17, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(791), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208040,22 +208246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77292] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern, + [77249] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2484), 1, + ACTIONS(5196), 1, + anon_sym_DOT2, + STATE(2581), 1, + sym_path, + STATE(2480), 2, sym_comment, - ACTIONS(1474), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1472), 17, + ACTIONS(1490), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208070,18 +208277,21 @@ 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, - [77323] = 4, + [77284] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2485), 1, - sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, sym__unquoted_pattern, - ACTIONS(1730), 18, + ACTIONS(5199), 1, + anon_sym_DOT_DOT2, + STATE(2481), 1, + sym_comment, + ACTIONS(5201), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2114), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208097,25 +208307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77354] = 6, - ACTIONS(103), 1, + [77321] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5191), 1, - anon_sym_DOT, - ACTIONS(5193), 1, - aux_sym__immediate_decimal_token5, - STATE(2486), 1, + ACTIONS(5203), 1, + anon_sym_DOT2, + STATE(2482), 1, sym_comment, - ACTIONS(1784), 5, + STATE(2568), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_path, + STATE(2878), 1, + sym_cell_path, + ACTIONS(1703), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(1705), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208128,23 +208338,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, - sym__unquoted_pattern, - [77389] = 6, - ACTIONS(103), 1, + [77360] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5195), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5197), 1, + ACTIONS(5205), 1, + anon_sym_DOT, + ACTIONS(5207), 1, aux_sym__immediate_decimal_token5, - STATE(2487), 1, + STATE(2483), 1, sym_comment, - ACTIONS(1730), 5, + ACTIONS(1788), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 13, + ACTIONS(1790), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208158,25 +208367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77424] = 8, - ACTIONS(103), 1, + [77395] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT2, - STATE(2488), 1, + STATE(2484), 1, sym_comment, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2724), 1, - sym_path, - STATE(2739), 1, - sym_cell_path, - ACTIONS(1675), 4, + ACTIONS(805), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1677), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(803), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208189,50 +208393,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [77463] = 5, + sym__unquoted_pattern, + [77426] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5154), 1, - aux_sym__immediate_decimal_token5, - STATE(2489), 1, + STATE(2485), 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, + ACTIONS(1557), 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_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77496] = 7, + anon_sym_RBRACE, + anon_sym_DOT2, + [77455] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(5201), 1, - anon_sym_DOT_DOT2, - STATE(2490), 1, + STATE(2486), 1, sym_comment, - ACTIONS(5203), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 15, - ts_builtin_sym_end, + ACTIONS(1563), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208244,22 +208438,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, - [77533] = 5, - ACTIONS(103), 1, + 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, + [77484] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - aux_sym__immediate_decimal_token5, - STATE(2491), 1, + STATE(2487), 1, sym_comment, - ACTIONS(1784), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 15, + ACTIONS(1567), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208271,20 +208464,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77566] = 4, - ACTIONS(3), 1, + anon_sym_DOT2, + [77513] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2492), 1, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token5, + STATE(2488), 1, sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 18, - ts_builtin_sym_end, + ACTIONS(1866), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208296,22 +208496,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77597] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77546] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2493), 1, - sym_comment, - ACTIONS(1921), 2, - anon_sym_DOT_DOT2, + ACTIONS(1790), 1, sym__unquoted_pattern, - ACTIONS(1919), 18, - ts_builtin_sym_end, + ACTIONS(5211), 1, + anon_sym_DOT, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + STATE(2489), 1, + sym_comment, + ACTIONS(1788), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208323,29 +208523,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77628] = 7, - ACTIONS(103), 1, + [77581] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5205), 1, - anon_sym_QMARK2, - ACTIONS(5207), 1, - anon_sym_BANG, - STATE(2494), 1, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2490), 1, sym_comment, - STATE(2657), 1, - sym__path_suffix, - ACTIONS(1450), 4, + ACTIONS(1774), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1448), 13, + ACTIONS(1776), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208358,45 +208557,45 @@ 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_DOT2, - [77665] = 5, - ACTIONS(103), 1, + sym__unquoted_pattern, + [77616] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5209), 1, + ACTIONS(5131), 1, aux_sym__immediate_decimal_token5, - STATE(2495), 1, + STATE(2491), 1, sym_comment, - ACTIONS(1832), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 15, + ACTIONS(751), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(753), 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, - sym__unquoted_pattern, - [77698] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77649] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2492), 1, sym_comment, - ACTIONS(1482), 3, + ACTIONS(1533), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1480), 17, + ACTIONS(1531), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208414,47 +208613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77729] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT2, - STATE(2497), 1, - sym_comment, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2724), 1, - sym_path, - STATE(2908), 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [77768] = 4, + [77680] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(2493), 1, sym_comment, - ACTIONS(2754), 3, + ACTIONS(2626), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(2756), 17, + ACTIONS(2628), 17, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -208472,18 +208640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [77799] = 6, - ACTIONS(3), 1, + [77711] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(5211), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5213), 1, - aux_sym__immediate_decimal_token5, - STATE(2499), 1, + STATE(2494), 1, sym_comment, - ACTIONS(1730), 17, + ACTIONS(761), 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(759), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208495,62 +208665,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [77834] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3255), 1, - anon_sym_LPAREN2, - ACTIONS(3842), 1, - anon_sym_DOLLAR, - ACTIONS(5215), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token2, - STATE(2500), 1, - sym_comment, - STATE(3424), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5054), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3423), 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, - [77879] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(5219), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + sym__unquoted_pattern, + [77742] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5203), 1, + anon_sym_DOT2, + STATE(2495), 1, sym_comment, - ACTIONS(5221), 2, + STATE(2568), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_path, + STATE(2882), 1, + sym_cell_path, + ACTIONS(1669), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 15, - ts_builtin_sym_end, + ACTIONS(1671), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208562,53 +208697,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, - [77916] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3255), 1, - anon_sym_LPAREN2, - ACTIONS(3842), 1, - anon_sym_DOLLAR, - ACTIONS(5215), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token2, - STATE(2502), 1, - sym_comment, - STATE(3432), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5054), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3427), 2, - sym__expr_parenthesized_immediate, - 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, - [77961] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [77781] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2503), 1, + ACTIONS(5186), 1, + aux_sym__immediate_decimal_token5, + STATE(2496), 1, sym_comment, - ACTIONS(1532), 3, + ACTIONS(1788), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1530), 17, + ACTIONS(1790), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208623,34 +208725,32 @@ 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, - [77992] = 11, + sym__unquoted_pattern, + [77814] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3255), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR, - ACTIONS(5215), 1, + ACTIONS(5219), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, + ACTIONS(5221), 1, aux_sym__immediate_decimal_token2, - STATE(2504), 1, + STATE(2497), 1, sym_comment, - STATE(3435), 1, + STATE(3501), 1, sym__immediate_decimal, - ACTIONS(1687), 2, + ACTIONS(1709), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5054), 2, + ACTIONS(5088), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3434), 2, + STATE(3500), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1685), 9, + ACTIONS(1707), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -208660,58 +208760,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [78037] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2505), 1, - sym_comment, - ACTIONS(777), 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(775), 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, - [78068] = 11, + [77859] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3255), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR, - ACTIONS(5215), 1, + ACTIONS(5219), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, + ACTIONS(5221), 1, aux_sym__immediate_decimal_token2, - STATE(2506), 1, + STATE(2498), 1, sym_comment, - STATE(3532), 1, + STATE(3503), 1, sym__immediate_decimal, - ACTIONS(1604), 2, + ACTIONS(1679), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5054), 2, + ACTIONS(5088), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3531), 2, + STATE(3502), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1600), 9, + ACTIONS(1677), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -208721,51 +208794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [78113] = 6, - ACTIONS(3), 1, + [77904] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern, ACTIONS(5223), 1, - anon_sym_DOT, + anon_sym_QMARK2, ACTIONS(5225), 1, - aux_sym__immediate_decimal_token5, - STATE(2507), 1, - sym_comment, - ACTIONS(1784), 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, - [78148] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DOT2, - STATE(2481), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2508), 1, + anon_sym_BANG, + STATE(2499), 1, sym_comment, - STATE(2592), 1, - sym_path, - ACTIONS(1528), 3, + STATE(2663), 1, + sym__path_suffix, + ACTIONS(1474), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1526), 14, + ACTIONS(1472), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208777,42 +208822,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, - [78185] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2509), 1, - sym_comment, - ACTIONS(1478), 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, - [78214] = 3, + [77941] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2510), 1, + STATE(2500), 1, sym_comment, - ACTIONS(1514), 20, - anon_sym_EQ, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208824,59 +208845,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [78243] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77972] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2511), 1, + ACTIONS(3348), 1, + anon_sym_LPAREN2, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + ACTIONS(5219), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5221), 1, + aux_sym__immediate_decimal_token2, + STATE(2501), 1, sym_comment, - ACTIONS(1547), 20, + STATE(3505), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5088), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3504), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + 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_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_GT2, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [78272] = 8, - ACTIONS(103), 1, + [78017] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT2, - STATE(2512), 1, + STATE(2502), 1, sym_comment, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2724), 1, - sym_path, - STATE(2734), 1, - sym_cell_path, - ACTIONS(1689), 4, - ts_builtin_sym_end, + ACTIONS(1537), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1691), 12, + ACTIONS(1535), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208888,18 +208906,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, - [78311] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78048] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2513), 1, + STATE(2503), 1, sym_comment, - ACTIONS(1532), 4, - ts_builtin_sym_end, + ACTIONS(1529), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1530), 15, + ACTIONS(1527), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208911,21 +208933,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, - [78341] = 5, + [78079] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5229), 1, - anon_sym_DOT_DOT2, - STATE(2514), 1, + STATE(2504), 1, sym_comment, - ACTIONS(5231), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5227), 16, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208937,26 +208960,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78373] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78110] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1300), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2515), 1, + ACTIONS(3348), 1, + anon_sym_LPAREN2, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + ACTIONS(5219), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5221), 1, + aux_sym__immediate_decimal_token2, + STATE(2505), 1, sym_comment, - ACTIONS(1893), 15, - ts_builtin_sym_end, + STATE(3488), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5088), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3487), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1628), 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, + [78155] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(5227), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5229), 1, + aux_sym__immediate_decimal_token5, + STATE(2506), 1, + sym_comment, + ACTIONS(1774), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208968,17 +209023,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78409] = 3, + anon_sym_LPAREN2, + [78190] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2516), 1, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(5233), 1, + anon_sym_DOT_DOT2, + ACTIONS(5237), 1, + sym_filesize_unit, + ACTIONS(5239), 1, + sym_duration_unit, + ACTIONS(5241), 1, + sym__unquoted_pattern_in_record, + STATE(2507), 1, sym_comment, - ACTIONS(5235), 19, + STATE(5041), 1, + sym__expr_parenthesized_immediate, + ACTIONS(811), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5235), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(914), 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, + [78235] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2508), 1, + sym_comment, + ACTIONS(1923), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1921), 18, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208989,62 +209084,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78437] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(859), 1, - sym_raw_string_begin, - ACTIONS(3161), 1, - anon_sym_DQUOTE, - ACTIONS(3163), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_BQUOTE, - ACTIONS(3167), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3169), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5237), 1, - sym__unquoted_naive, - STATE(2517), 1, - sym_comment, - STATE(3135), 1, - sym__inter_single_quotes, - STATE(3139), 1, - sym__inter_double_quotes, - STATE(2476), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3207), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [78489] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78266] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_QMARK2, - STATE(2518), 1, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2480), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2509), 1, sym_comment, - ACTIONS(1464), 3, + STATE(2581), 1, + sym_path, + ACTIONS(1579), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + ACTIONS(1577), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209059,14 +209120,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78521] = 3, - ACTIONS(3), 1, + [78303] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2519), 1, + ACTIONS(5203), 1, + anon_sym_DOT2, + STATE(2510), 1, sym_comment, - ACTIONS(5241), 19, - anon_sym_EQ, + STATE(2568), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_path, + STATE(2915), 1, + sym_cell_path, + ACTIONS(1468), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1466), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209078,22 +209150,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78549] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [78342] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_LT, - STATE(2520), 1, + ACTIONS(914), 1, + sym__space, + ACTIONS(4197), 1, + anon_sym_DOT_DOT2, + ACTIONS(5072), 1, + sym_filesize_unit, + ACTIONS(5074), 1, + sym_duration_unit, + ACTIONS(5076), 1, + sym__unquoted_pattern, + STATE(2511), 1, sym_comment, - ACTIONS(5243), 18, - anon_sym_EQ, + ACTIONS(4199), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209105,22 +209181,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, - [78579] = 5, - ACTIONS(3), 1, + [78383] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern, - ACTIONS(5225), 1, - aux_sym__immediate_decimal_token5, - STATE(2521), 1, + STATE(2512), 1, sym_comment, - ACTIONS(1784), 17, + ACTIONS(1488), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1486), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209134,50 +209206,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, - [78611] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5247), 1, + anon_sym_DOT_DOT2, anon_sym_QMARK2, - ACTIONS(5249), 1, anon_sym_BANG, - STATE(2522), 1, - sym_comment, - STATE(2745), 1, - sym__path_suffix, - 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, - [78647] = 4, - ACTIONS(103), 1, + [78414] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2523), 1, + STATE(2513), 1, sym_comment, - ACTIONS(1482), 4, - ts_builtin_sym_end, + ACTIONS(1543), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1480), 15, + ACTIONS(1541), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209189,21 +209231,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, - [78677] = 4, - ACTIONS(103), 1, + [78445] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2524), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1547), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 15, + ACTIONS(1545), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209218,26 +209261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78707] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78476] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2525), 1, + ACTIONS(5243), 1, + aux_sym__immediate_decimal_token5, + STATE(2515), 1, sym_comment, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2948), 1, - sym_cell_path, - ACTIONS(1691), 2, + ACTIONS(791), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1689), 13, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(793), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -209247,22 +209289,24 @@ 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, - [78745] = 5, - ACTIONS(103), 1, + [78509] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - aux_sym__immediate_decimal_token5, - STATE(2526), 1, + ACTIONS(5245), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(1340), 1, + sym_cell_path, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2516), 1, sym_comment, - ACTIONS(1832), 5, + ACTIONS(1909), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209274,40 +209318,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, - sym__unquoted_pattern, - [78777] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2527), 1, - sym_comment, - ACTIONS(775), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(777), 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, - [78807] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78545] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2528), 1, + STATE(2517), 1, sym_comment, - ACTIONS(5255), 19, + ACTIONS(5247), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -209327,17 +209346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [78835] = 4, - ACTIONS(103), 1, + [78573] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2529), 1, + STATE(2518), 1, sym_comment, - ACTIONS(1919), 4, + ACTIONS(1543), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1921), 15, + ACTIONS(1541), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209349,30 +209368,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, - [78865] = 9, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78603] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4153), 1, - anon_sym_DOT_DOT2, - ACTIONS(5128), 1, - sym_filesize_unit, - ACTIONS(5130), 1, - sym_duration_unit, - ACTIONS(5132), 1, - sym__unquoted_pattern, - STATE(2530), 1, + ACTIONS(5251), 1, + anon_sym_LT, + STATE(2519), 1, sym_comment, - ACTIONS(884), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(785), 11, + ACTIONS(5249), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209384,23 +209392,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, - [78905] = 8, - ACTIONS(103), 1, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78633] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token5, + STATE(2520), 1, + sym_comment, + ACTIONS(1866), 5, + ts_builtin_sym_end, sym__space, - ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(5257), 1, - anon_sym_DOT_DOT2, - STATE(2531), 1, - sym_comment, - ACTIONS(5259), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 13, + ACTIONS(1868), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209412,19 +209423,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, - [78943] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5229), 1, anon_sym_DOT_DOT2, - STATE(2532), 1, + sym__unquoted_pattern, + [78665] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5255), 1, + anon_sym_BANG, + STATE(2521), 1, sym_comment, - ACTIONS(5231), 2, + ACTIONS(1462), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5227), 16, + ACTIONS(1460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209438,18 +209450,116 @@ 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, - [78975] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [78697] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_LT, - STATE(2533), 1, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2522), 1, + sym_comment, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2912), 1, + sym_path, + STATE(2998), 1, + sym_cell_path, + ACTIONS(1466), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1468), 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, + [78735] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2523), 1, sym_comment, - ACTIONS(5243), 18, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2912), 1, + sym_path, + STATE(3013), 1, + sym_cell_path, + ACTIONS(1705), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1703), 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, + [78773] = 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(107), 1, + sym_raw_string_begin, + ACTIONS(5259), 1, + anon_sym_LPAREN, + ACTIONS(5261), 1, + anon_sym_DOLLAR, + ACTIONS(5263), 1, + sym__unquoted_naive, + STATE(1359), 1, + sym__inter_single_quotes, + STATE(1361), 1, + sym__inter_double_quotes, + STATE(2524), 1, + sym_comment, + STATE(504), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3491), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78825] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2525), 1, + sym_comment, + ACTIONS(1866), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209461,26 +209571,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, - [79005] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78855] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5193), 1, - aux_sym__immediate_decimal_token5, - STATE(2534), 1, + STATE(2526), 1, sym_comment, - ACTIONS(1784), 5, + ACTIONS(1547), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(1545), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209493,20 +209598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79037] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78885] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5265), 1, - aux_sym__immediate_decimal_token5, - STATE(2535), 1, + STATE(2527), 1, sym_comment, - ACTIONS(1730), 16, - ts_builtin_sym_end, + ACTIONS(5265), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209518,20 +209619,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, - anon_sym_LPAREN2, - [79071] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78913] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - ACTIONS(5267), 1, - aux_sym__immediate_decimal_token5, - STATE(2536), 1, + ACTIONS(5245), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(1294), 1, + sym_cell_path, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2528), 1, sym_comment, - ACTIONS(1832), 17, + ACTIONS(1880), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209543,25 +209652,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, - [79103] = 6, + [78949] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern, ACTIONS(5269), 1, - anon_sym_DOT, - ACTIONS(5271), 1, - aux_sym__immediate_decimal_token5, - STATE(2537), 1, + anon_sym_DOT_DOT2, + STATE(2529), 1, sym_comment, - ACTIONS(1784), 16, - ts_builtin_sym_end, + ACTIONS(5271), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5267), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209573,25 +209677,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79137] = 6, + [78981] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5273), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT, ACTIONS(5275), 1, aux_sym__immediate_decimal_token5, - STATE(2538), 1, + STATE(2530), 1, sym_comment, - ACTIONS(1732), 4, + ACTIONS(1790), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1730), 13, + ACTIONS(1788), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -209605,25 +209710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79171] = 8, + [79015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2539), 1, + STATE(2531), 1, sym_comment, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2994), 1, - sym_cell_path, - ACTIONS(1442), 2, + ACTIONS(759), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1444), 13, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(761), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -209633,25 +209733,24 @@ 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, - [79209] = 8, - ACTIONS(103), 1, + [79045] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2090), 1, - sym__space, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(5277), 1, - anon_sym_DOT_DOT2, - STATE(2540), 1, + ACTIONS(5245), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(1309), 1, + sym_cell_path, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2532), 1, sym_comment, - ACTIONS(5279), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 13, + ACTIONS(1925), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209663,41 +209762,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [79247] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79081] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2541), 1, + ACTIONS(5245), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(1341), 1, + sym_cell_path, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2533), 1, sym_comment, - ACTIONS(747), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, - anon_sym_EQ, + ACTIONS(1901), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [79117] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5207), 1, + aux_sym__immediate_decimal_token5, + STATE(2534), 1, + sym_comment, + ACTIONS(1788), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79277] = 3, + ACTIONS(1790), 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, + [79149] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(5277), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5279), 1, + aux_sym__immediate_decimal_token5, + STATE(2535), 1, sym_comment, - ACTIONS(5281), 19, - anon_sym_EQ, + ACTIONS(1774), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209709,66 +209845,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79305] = 14, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [79183] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1496), 1, - anon_sym_COMMA, - ACTIONS(5285), 1, - anon_sym_EQ, - ACTIONS(5287), 1, - sym__newline, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5291), 1, - anon_sym_LPAREN, - ACTIONS(5293), 1, - anon_sym_DASH2, - STATE(2543), 1, + ACTIONS(5245), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(1343), 1, + sym_cell_path, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2536), 1, sym_comment, - STATE(2678), 1, - sym_flag_capsule, - STATE(2679), 1, - aux_sym_parameter_repeat1, - STATE(3642), 1, - aux_sym_parameter_repeat2, - STATE(4396), 1, - aux_sym__repeat_newline, - STATE(3422), 2, - sym_param_type, - sym_param_value, - ACTIONS(5283), 7, - sym_identifier, + ACTIONS(1905), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [79355] = 7, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79219] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT2, - STATE(2544), 1, + STATE(2537), 1, sym_comment, - STATE(2559), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2724), 1, - sym_path, - ACTIONS(1528), 4, + ACTIONS(1537), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1526), 12, + ACTIONS(1535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209781,17 +209901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [79391] = 5, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79249] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5229), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2104), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(5281), 1, anon_sym_DOT_DOT2, - STATE(2545), 1, + STATE(2538), 1, sym_comment, - ACTIONS(5231), 2, + ACTIONS(5283), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5227), 16, + ACTIONS(2106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209805,20 +209934,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, - [79423] = 4, - ACTIONS(103), 1, + [79287] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2546), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1518), 4, - ts_builtin_sym_end, + ACTIONS(1774), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1516), 15, + ACTIONS(1776), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209830,21 +209956,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_DOT_DOT2, + sym__unquoted_pattern, + [79317] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_comment, + ACTIONS(791), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(793), 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, + [79347] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5285), 1, anon_sym_QMARK2, + ACTIONS(5287), 1, anon_sym_BANG, + STATE(2541), 1, + sym_comment, + STATE(2731), 1, + sym__path_suffix, + ACTIONS(1472), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [79453] = 5, - ACTIONS(3), 1, + ACTIONS(1474), 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, + [79383] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5229), 1, - anon_sym_DOT_DOT2, - STATE(2547), 1, + ACTIONS(5289), 1, + anon_sym_DOT2, + STATE(2660), 1, + sym_path, + STATE(2542), 2, sym_comment, - ACTIONS(5231), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1714), 16, + ACTIONS(1490), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209856,22 +210042,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, - [79485] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [79417] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2543), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(1529), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1468), 15, + ACTIONS(1527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209887,17 +210069,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [79515] = 4, - ACTIONS(103), 1, + [79447] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2549), 1, + STATE(2544), 1, sym_comment, - ACTIONS(1474), 4, + ACTIONS(1533), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1472), 15, + ACTIONS(1531), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209913,12 +210095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [79545] = 3, + [79477] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2550), 1, + STATE(2545), 1, sym_comment, - ACTIONS(5295), 19, + ACTIONS(5292), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -209938,57 +210120,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [79573] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(964), 1, - sym_raw_string_begin, - ACTIONS(3378), 1, - anon_sym_DQUOTE, - ACTIONS(3380), 1, - anon_sym_SQUOTE, - ACTIONS(3382), 1, - anon_sym_BQUOTE, - ACTIONS(3384), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3386), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3687), 1, - anon_sym_LPAREN, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5297), 1, - sym__unquoted_naive, - STATE(2551), 1, - sym_comment, - STATE(3366), 1, - sym__inter_single_quotes, - STATE(3367), 1, - sym__inter_double_quotes, - STATE(2564), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3374), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79625] = 4, + [79505] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2546), 1, sym_comment, - ACTIONS(866), 6, - sym_identifier, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2912), 1, + sym_path, + STATE(3020), 1, + sym_cell_path, + ACTIONS(1671), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(868), 13, + ACTIONS(1669), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -209998,23 +210148,22 @@ 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, - [79655] = 7, + [79543] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(5245), 1, anon_sym_DOT2, - STATE(703), 1, + STATE(737), 1, sym_path, - STATE(1364), 1, + STATE(1327), 1, sym_cell_path, - STATE(2432), 1, + STATE(2434), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2553), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1872), 15, + ACTIONS(1917), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210030,17 +210179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79691] = 5, + [79579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5299), 1, - anon_sym_DOT_DOT2, - STATE(2554), 1, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + STATE(2548), 1, sym_comment, - ACTIONS(5301), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 16, + ACTIONS(1788), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210057,44 +210205,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79723] = 5, + anon_sym_LPAREN2, + [79611] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5303), 1, - anon_sym_DOT_DOT2, - STATE(2555), 1, + ACTIONS(885), 1, + sym_raw_string_begin, + ACTIONS(3212), 1, + anon_sym_DQUOTE, + ACTIONS(3214), 1, + anon_sym_SQUOTE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3218), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3220), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3717), 1, + anon_sym_LPAREN, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(5294), 1, + sym__unquoted_naive, + STATE(2549), 1, sym_comment, - ACTIONS(5305), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2241), 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, - [79755] = 5, + STATE(3179), 1, + sym__inter_single_quotes, + STATE(3180), 1, + sym__inter_double_quotes, + STATE(2503), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3068), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79663] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5269), 1, anon_sym_DOT_DOT2, - STATE(2556), 1, + STATE(2550), 1, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5271), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2249), 16, + ACTIONS(1738), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210111,17 +210270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79787] = 5, + [79695] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_DOT_DOT2, - STATE(2557), 1, + STATE(2551), 1, sym_comment, - ACTIONS(5313), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2257), 16, + ACTIONS(5296), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210133,56 +210288,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79819] = 7, + [79723] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1316), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2558), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1768), 1, + anon_sym_SQUOTE, + ACTIONS(1770), 1, + anon_sym_BQUOTE, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(5298), 1, + anon_sym_DOLLAR, + ACTIONS(5300), 1, + sym__unquoted_naive, + STATE(766), 1, + sym__inter_single_quotes, + STATE(767), 1, + sym__inter_double_quotes, + STATE(2552), 1, sym_comment, - ACTIONS(1901), 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, - [79855] = 6, - ACTIONS(103), 1, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3301), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79775] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5315), 1, - anon_sym_DOT2, - STATE(2724), 1, - sym_path, - STATE(2559), 2, + ACTIONS(1868), 1, + sym__unquoted_pattern, + ACTIONS(5302), 1, + aux_sym__immediate_decimal_token5, + STATE(2553), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 12, + ACTIONS(1866), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210194,22 +210353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [79889] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [79807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1355), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2560), 1, + ACTIONS(5269), 1, + anon_sym_DOT_DOT2, + STATE(2554), 1, sym_comment, - ACTIONS(1866), 15, - ts_builtin_sym_end, + ACTIONS(5271), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5267), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210221,23 +210381,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, - [79925] = 7, + [79839] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1301), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2561), 1, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(5304), 1, + anon_sym_DOT, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token5, + STATE(2555), 1, sym_comment, - ACTIONS(1885), 15, + ACTIONS(1788), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210253,18 +210413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79961] = 5, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [79873] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_BANG, - STATE(2562), 1, + STATE(2556), 1, sym_comment, - ACTIONS(1464), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + ACTIONS(5308), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210276,50 +210432,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79993] = 7, + [79901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1345), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2563), 1, + ACTIONS(5310), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5312), 1, + aux_sym__immediate_decimal_token5, + STATE(2557), 1, sym_comment, - ACTIONS(1889), 15, - ts_builtin_sym_end, + ACTIONS(1776), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1774), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [80029] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79935] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2564), 1, + ACTIONS(5314), 1, + anon_sym_DOT_DOT2, + STATE(2558), 1, sym_comment, - ACTIONS(1524), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5316), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1522), 15, + ACTIONS(2154), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210331,51 +210489,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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80059] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79967] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2565), 1, + ACTIONS(5318), 1, + anon_sym_DOT_DOT2, + STATE(2559), 1, sym_comment, ACTIONS(5320), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5318), 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, - [80089] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5322), 1, - anon_sym_DOT2, - STATE(2302), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(2566), 1, - sym_comment, - STATE(2648), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 15, - anon_sym_EQ, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2166), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210387,83 +210516,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, - [80125] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2567), 1, - sym_comment, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(3028), 1, - sym_cell_path, - ACTIONS(1677), 2, - anon_sym_DASH2, + ACTIONS(5322), 1, anon_sym_DOT_DOT2, - ACTIONS(1675), 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, + STATE(2560), 1, + sym_comment, + ACTIONS(5324), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80163] = 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(5324), 1, - anon_sym_LPAREN, - ACTIONS(5326), 1, - anon_sym_DOLLAR, - ACTIONS(5328), 1, - sym__unquoted_naive, - STATE(1327), 1, - sym__inter_single_quotes, - STATE(1336), 1, - sym__inter_double_quotes, - STATE(2568), 1, - sym_comment, - STATE(505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3451), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [80215] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2569), 1, - sym_comment, - ACTIONS(5330), 19, - anon_sym_EQ, + ACTIONS(2174), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210475,61 +210543,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [80243] = 15, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1758), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1762), 1, - anon_sym_BQUOTE, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(5332), 1, - anon_sym_DOLLAR, - ACTIONS(5334), 1, - sym__unquoted_naive, - STATE(809), 1, - sym__inter_single_quotes, - STATE(810), 1, - sym__inter_double_quotes, - STATE(2570), 1, - sym_comment, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3353), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [80295] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2571), 1, + ACTIONS(5326), 1, + anon_sym_DOT_DOT2, + STATE(2561), 1, sym_comment, - ACTIONS(1832), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5328), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 15, + ACTIONS(2186), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210543,46 +210572,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, - [80325] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT, - ACTIONS(5338), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, - sym_comment, - ACTIONS(1786), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1784), 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, - [80359] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80063] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2573), 1, + ACTIONS(5255), 1, + anon_sym_QMARK2, + STATE(2562), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1462), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1512), 15, + ACTIONS(1460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210598,24 +210602,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [80388] = 8, - ACTIONS(103), 1, + [80095] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(5340), 1, + ACTIONS(4197), 1, anon_sym_DOT_DOT2, - STATE(2574), 1, + ACTIONS(5167), 1, + sym_filesize_unit, + ACTIONS(5169), 1, + sym_duration_unit, + ACTIONS(5171), 1, + sym__unquoted_pattern, + STATE(2563), 1, sym_comment, - ACTIONS(1953), 2, + ACTIONS(914), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5342), 2, + ACTIONS(4199), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1955), 11, + ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210627,22 +210633,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, - [80425] = 8, - ACTIONS(103), 1, + [80135] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DOT2, - ACTIONS(5346), 1, - sym__space, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2575), 1, + ACTIONS(1509), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_EQ, + ACTIONS(5334), 1, + sym__newline, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5338), 1, + anon_sym_LPAREN, + ACTIONS(5340), 1, + anon_sym_DASH2, + STATE(2564), 1, sym_comment, - STATE(2592), 1, - sym_path, - STATE(3140), 1, - sym_cell_path, - ACTIONS(5344), 13, + STATE(2675), 1, + sym_flag_capsule, + STATE(2729), 1, + aux_sym_parameter_repeat1, + STATE(3613), 1, + aux_sym_parameter_repeat2, + STATE(4411), 1, + aux_sym__repeat_newline, + STATE(3468), 2, + sym_param_type, + sym_param_value, + ACTIONS(5330), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [80185] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_LT, + STATE(2565), 1, + sym_comment, + ACTIONS(5249), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210654,24 +210689,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, - [80462] = 8, - ACTIONS(103), 1, + [80215] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DOT2, - ACTIONS(5350), 1, - sym__space, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2576), 1, + STATE(2566), 1, sym_comment, - STATE(2592), 1, - sym_path, - STATE(3141), 1, - sym_cell_path, - ACTIONS(5348), 13, + ACTIONS(1921), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1923), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210685,22 +210719,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80499] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80245] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__space, - ACTIONS(5108), 1, + ACTIONS(984), 1, + sym_raw_string_begin, + ACTIONS(3436), 1, + anon_sym_DQUOTE, + ACTIONS(3438), 1, + anon_sym_SQUOTE, + ACTIONS(3440), 1, + anon_sym_BQUOTE, + ACTIONS(3442), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3444), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3721), 1, + anon_sym_LPAREN, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5344), 1, + sym__unquoted_naive, + STATE(2567), 1, + sym_comment, + STATE(3317), 1, + sym__inter_single_quotes, + STATE(3318), 1, + sym__inter_double_quotes, + STATE(2543), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3274), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80297] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2508), 1, + STATE(2542), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2577), 1, + STATE(2568), 1, sym_comment, - STATE(2592), 1, + STATE(2660), 1, sym_path, - STATE(3106), 1, - sym_cell_path, - ACTIONS(1875), 13, + ACTIONS(1579), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1577), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210712,24 +210786,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, - [80536] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [80333] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(2114), 1, sym__space, - ACTIONS(5108), 1, - anon_sym_DOT2, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2578), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(5346), 1, + anon_sym_DOT_DOT2, + STATE(2569), 1, sym_comment, - STATE(2592), 1, - sym_path, - STATE(3112), 1, - sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(5348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210743,20 +210817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80573] = 6, - ACTIONS(3), 1, + [80371] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5352), 1, - anon_sym_QMARK2, - ACTIONS(5354), 1, - anon_sym_BANG, - STATE(2579), 1, + STATE(2570), 1, sym_comment, - STATE(2970), 1, - sym__path_suffix, - ACTIONS(1450), 15, + ACTIONS(1488), 4, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210768,24 +210839,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_COLON, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [80606] = 8, - ACTIONS(103), 1, + [80401] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__space, - ACTIONS(5108), 1, - anon_sym_DOT2, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2580), 1, + STATE(2571), 1, sym_comment, - STATE(2592), 1, - sym_path, - STATE(3117), 1, - sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(5350), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210797,53 +210861,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [80643] = 8, - ACTIONS(103), 1, + [80429] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__space, - ACTIONS(5108), 1, + STATE(2572), 1, + sym_comment, + ACTIONS(803), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(805), 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, + [80459] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2573), 1, + sym_comment, + ACTIONS(5354), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5352), 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, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_comment, - STATE(2592), 1, - sym_path, - STATE(3120), 1, - sym_cell_path, - ACTIONS(1903), 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, - [80680] = 8, - ACTIONS(103), 1, + [80489] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(5108), 1, + ACTIONS(5356), 1, anon_sym_DOT2, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2582), 1, - sym_comment, - STATE(2592), 1, - sym_path, - STATE(3153), 1, + STATE(2309), 1, sym_cell_path, - ACTIONS(1868), 13, + STATE(2485), 1, + sym_path, + STATE(2574), 1, + sym_comment, + STATE(2651), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1468), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210855,24 +210946,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, - [80717] = 8, - ACTIONS(103), 1, + [80525] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__space, - ACTIONS(5108), 1, - anon_sym_DOT2, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, + ACTIONS(5269), 1, + anon_sym_DOT_DOT2, + STATE(2575), 1, sym_comment, - STATE(2592), 1, - sym_path, - STATE(3168), 1, - sym_cell_path, - ACTIONS(1887), 13, + ACTIONS(5271), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5267), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210886,18 +210973,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80754] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80557] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2584), 1, + ACTIONS(5358), 1, + anon_sym_DOT_DOT2, + STATE(2576), 1, sym_comment, - ACTIONS(1730), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5360), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 13, + ACTIONS(2154), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210909,20 +210999,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, - [80783] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80588] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2585), 1, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(2577), 1, sym_comment, - ACTIONS(1832), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 13, + STATE(3236), 1, + sym_cell_path, + ACTIONS(1901), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210934,20 +211028,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, - [80812] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80623] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2586), 1, + ACTIONS(5362), 1, + anon_sym_BANG, + STATE(2578), 1, sym_comment, - ACTIONS(1919), 5, + ACTIONS(1462), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1921), 13, + ACTIONS(1460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210960,21 +211055,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, - sym__unquoted_pattern, - [80841] = 7, + anon_sym_DOT2, + [80654] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(5364), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2579), 1, + sym_comment, + STATE(2687), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, + STATE(2940), 1, sym_path, - STATE(2587), 1, - sym_comment, - STATE(3246), 1, + STATE(3086), 1, sym_cell_path, - ACTIONS(1893), 14, + ACTIONS(1468), 14, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -210987,21 +211083,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, - [80876] = 5, - ACTIONS(103), 1, + anon_sym_COLON, + [80689] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5356), 1, - anon_sym_QMARK2, - STATE(2588), 1, + STATE(2580), 1, sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, + ACTIONS(1567), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + ACTIONS(1565), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211013,23 +211105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [80907] = 7, - ACTIONS(3), 1, + [80718] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(2589), 1, + STATE(2581), 1, sym_comment, - STATE(3251), 1, - sym_cell_path, - ACTIONS(1866), 14, - anon_sym_EQ, + ACTIONS(1557), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1555), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211043,21 +211132,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80942] = 7, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(2590), 1, + ACTIONS(5366), 1, + anon_sym_DOT_DOT2, + STATE(2582), 1, sym_comment, - STATE(3252), 1, - sym_cell_path, - ACTIONS(1885), 14, - anon_sym_EQ, + ACTIONS(5368), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5267), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211069,21 +211157,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, - [80977] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80778] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5356), 1, - anon_sym_BANG, - STATE(2591), 1, + ACTIONS(5366), 1, + anon_sym_DOT_DOT2, + STATE(2583), 1, sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5368), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + ACTIONS(5267), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211095,18 +211183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81008] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80809] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2592), 1, + STATE(2584), 1, sym_comment, - ACTIONS(1547), 3, + ACTIONS(1563), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1545), 15, + ACTIONS(1561), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211122,16 +211211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [81037] = 4, - ACTIONS(103), 1, + [80838] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2593), 1, + ACTIONS(5366), 1, + anon_sym_DOT_DOT2, + STATE(2585), 1, sym_comment, - ACTIONS(1478), 3, - sym__space, + ACTIONS(5368), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1476), 15, + ACTIONS(5267), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211143,18 +211234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81066] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, + ACTIONS(2578), 1, sym__unquoted_pattern, - STATE(2594), 1, + STATE(2586), 1, sym_comment, - ACTIONS(2570), 17, + ACTIONS(2576), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211172,16 +211262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [81095] = 5, + [80898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2580), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(2595), 1, + STATE(2587), 1, sym_comment, - ACTIONS(1714), 16, + ACTIONS(1738), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211198,16 +211288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81126] = 5, + [80929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - STATE(2596), 1, + STATE(2588), 1, sym_comment, - ACTIONS(2090), 16, + ACTIONS(2104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211224,16 +211314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81157] = 5, + [80960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, - STATE(2597), 1, + STATE(2589), 1, sym_comment, - ACTIONS(2574), 16, + ACTIONS(2696), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211250,16 +211340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81188] = 5, + [80991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, - STATE(2598), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1953), 16, + ACTIONS(2114), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211276,16 +211366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81219] = 5, + [81022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1711), 1, sym__unquoted_pattern, - ACTIONS(2588), 1, + ACTIONS(2718), 1, anon_sym_LPAREN2, - STATE(2599), 1, + STATE(2591), 1, sym_comment, - ACTIONS(2584), 16, + ACTIONS(2660), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211302,16 +211392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81250] = 5, + [81053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2684), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(2686), 1, sym__unquoted_pattern, - STATE(2600), 1, + STATE(2592), 1, sym_comment, - ACTIONS(2590), 16, + ACTIONS(2676), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211328,16 +211418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81281] = 5, + [81084] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(2608), 1, anon_sym_LPAREN2, - ACTIONS(2604), 1, + ACTIONS(2610), 1, sym__unquoted_pattern, - STATE(2601), 1, + STATE(2593), 1, sym_comment, - ACTIONS(2598), 16, + ACTIONS(2604), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211354,16 +211444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81312] = 5, + [81115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(2602), 1, + STATE(2594), 1, sym_comment, - ACTIONS(1216), 16, + ACTIONS(1258), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211380,16 +211470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81343] = 5, + [81146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2630), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(2603), 1, + STATE(2595), 1, sym_comment, - ACTIONS(1234), 16, + ACTIONS(1250), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211406,21 +211496,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81374] = 7, + [81177] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5257), 1, anon_sym_DOT2, - STATE(2604), 1, + STATE(2596), 1, sym_comment, - STATE(2605), 1, + STATE(2597), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, + STATE(2912), 1, sym_path, - ACTIONS(1526), 2, + ACTIONS(1577), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1528), 13, + ACTIONS(1579), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -211434,20 +211524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81409] = 6, + [81212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5370), 1, anon_sym_DOT2, - STATE(2741), 1, + STATE(2912), 1, sym_path, - ACTIONS(1536), 2, + ACTIONS(1490), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2605), 2, + STATE(2597), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 13, + ACTIONS(1492), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -211461,19 +211551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81442] = 6, - ACTIONS(103), 1, + [81245] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5361), 1, + ACTIONS(5373), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5363), 1, + ACTIONS(5375), 1, aux_sym__immediate_decimal_token5, - STATE(2606), 1, + STATE(2598), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(1774), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1732), 14, + ACTIONS(1776), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211488,16 +211578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [81475] = 4, + [81278] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2607), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1522), 3, + ACTIONS(1527), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1524), 15, + ACTIONS(1529), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211513,16 +211603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81504] = 4, + [81307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2600), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(1531), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1532), 15, + ACTIONS(1533), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211538,16 +211628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81533] = 4, + [81336] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2601), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1535), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1482), 15, + ACTIONS(1537), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211563,16 +211653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81562] = 4, + [81365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + STATE(2602), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(1486), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1518), 15, + ACTIONS(1488), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211588,16 +211678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81591] = 4, + [81394] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1468), 3, + ACTIONS(1541), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1470), 15, + ACTIONS(1543), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211613,16 +211703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81620] = 4, + [81423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2604), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1545), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1474), 15, + ACTIONS(1547), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211638,12 +211728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81649] = 3, + [81452] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2605), 1, sym_comment, - ACTIONS(1524), 18, + ACTIONS(5249), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211656,70 +211746,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_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81676] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DOT_DOT2, - STATE(2614), 1, - sym_comment, - ACTIONS(5367), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2257), 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, - [81707] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern, - ACTIONS(5271), 1, - aux_sym__immediate_decimal_token5, - STATE(2615), 1, - sym_comment, - ACTIONS(1784), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [81738] = 3, + [81479] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2606), 1, sym_comment, - ACTIONS(1532), 18, + ACTIONS(1529), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211738,13 +211776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [81765] = 3, - ACTIONS(3), 1, + [81506] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2617), 1, + ACTIONS(5377), 1, + anon_sym_DOT, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token5, + STATE(2607), 1, sym_comment, - ACTIONS(1482), 18, - anon_sym_EQ, + ACTIONS(1788), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1790), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211756,19 +211800,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81792] = 3, + sym__unquoted_pattern, + [81539] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2618), 1, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token5, + STATE(2608), 1, sym_comment, - ACTIONS(1518), 18, - anon_sym_EQ, + ACTIONS(1788), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211780,18 +211825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81819] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81570] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2619), 1, + STATE(2609), 1, sym_comment, - ACTIONS(1470), 18, + ACTIONS(1533), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211810,12 +211853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [81846] = 3, + [81597] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2610), 1, sym_comment, - ACTIONS(1474), 18, + ACTIONS(1537), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211834,65 +211877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [81873] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - ACTIONS(5369), 1, - aux_sym__immediate_decimal_token5, - STATE(2621), 1, - sym_comment, - ACTIONS(1832), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [81904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - STATE(2622), 1, - sym_comment, - ACTIONS(1730), 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, - [81933] = 4, + [81624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - STATE(2623), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1832), 17, + ACTIONS(1488), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211904,20 +211895,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [81962] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - sym__unquoted_pattern, - STATE(2624), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1919), 17, + ACTIONS(1543), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211929,106 +211919,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, - anon_sym_LPAREN2, - [81991] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5338), 1, - aux_sym__immediate_decimal_token5, - STATE(2625), 1, - sym_comment, - ACTIONS(1786), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1784), 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, - [82022] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5371), 1, - aux_sym__immediate_decimal_token5, - STATE(2626), 1, - sym_comment, - ACTIONS(1834), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1832), 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, - [82053] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2627), 1, - sym_comment, - ACTIONS(4766), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4768), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4770), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4762), 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, - [82086] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5373), 1, - anon_sym_DOT2, - STATE(2628), 1, - sym_comment, - STATE(2680), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2945), 1, - sym_path, - STATE(3195), 1, - sym_cell_path, - ACTIONS(1444), 14, - ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81678] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2613), 1, + sym_comment, + ACTIONS(1547), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212042,17 +211944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - [82121] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81705] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOT_DOT2, - STATE(2629), 1, + ACTIONS(1868), 1, + sym__unquoted_pattern, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token5, + STATE(2614), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5227), 15, + ACTIONS(1866), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212068,18 +211974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82152] = 5, + anon_sym_LPAREN2, + [81736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOT_DOT2, - STATE(2630), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(2615), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5227), 15, - ts_builtin_sym_end, + ACTIONS(1774), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212091,21 +211994,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, - [82183] = 5, + anon_sym_LPAREN2, + [81765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOT_DOT2, - STATE(2631), 1, + ACTIONS(1868), 1, + sym__unquoted_pattern, + STATE(2616), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5227), 15, - ts_builtin_sym_end, + ACTIONS(1866), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212117,24 +212019,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, - [82214] = 7, + anon_sym_LPAREN2, + [81794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(2632), 1, + ACTIONS(1923), 1, + sym__unquoted_pattern, + STATE(2617), 1, sym_comment, - STATE(3235), 1, - sym_cell_path, - ACTIONS(5379), 14, - anon_sym_EQ, + ACTIONS(1921), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212148,13 +212046,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82249] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81823] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2633), 1, + ACTIONS(5275), 1, + aux_sym__immediate_decimal_token5, + STATE(2618), 1, sym_comment, - ACTIONS(5243), 18, + ACTIONS(1790), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1788), 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, + [81854] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2619), 1, + sym_comment, + STATE(5069), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5383), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212166,22 +212097,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [82276] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81885] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2634), 1, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(2620), 1, sym_comment, - STATE(5076), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5381), 16, + STATE(3107), 1, + sym_cell_path, + ACTIONS(1917), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212195,19 +212130,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, - [82307] = 5, + [81920] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(2635), 1, + STATE(2621), 1, sym_comment, - STATE(5076), 1, + STATE(5069), 1, sym__expr_parenthesized_immediate, - ACTIONS(5381), 16, + ACTIONS(5383), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212224,16 +212156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82338] = 5, + [81951] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(2636), 1, + STATE(2622), 1, sym_comment, - STATE(5076), 1, + STATE(5069), 1, sym__expr_parenthesized_immediate, - ACTIONS(5381), 16, + ACTIONS(5383), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212250,12 +212182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82369] = 3, + [81982] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2637), 1, + STATE(2623), 1, sym_comment, - ACTIONS(5383), 18, + ACTIONS(5385), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212274,12 +212206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82396] = 3, + [82009] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2638), 1, + STATE(2624), 1, sym_comment, - ACTIONS(5385), 18, + ACTIONS(5387), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212298,12 +212230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82423] = 3, + [82036] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2639), 1, + STATE(2625), 1, sym_comment, - ACTIONS(5387), 18, + ACTIONS(5389), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212322,12 +212254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82450] = 3, + [82063] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2640), 1, + STATE(2626), 1, sym_comment, - ACTIONS(5389), 18, + ACTIONS(5391), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212346,12 +212278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82477] = 3, + [82090] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2641), 1, + STATE(2627), 1, sym_comment, - ACTIONS(5391), 18, + ACTIONS(5393), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212370,12 +212302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82504] = 3, + [82117] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2642), 1, + STATE(2628), 1, sym_comment, - ACTIONS(5393), 18, + ACTIONS(5395), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212394,12 +212326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82531] = 3, + [82144] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2643), 1, + STATE(2629), 1, sym_comment, - ACTIONS(5395), 18, + ACTIONS(5397), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212418,24 +212350,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [82558] = 8, - ACTIONS(103), 1, + [82171] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2630), 1, + sym_comment, + ACTIONS(4815), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4817), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4819), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4813), 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, + [82204] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2631), 1, + sym_comment, + ACTIONS(4786), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4788), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4790), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4782), 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, + [82237] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(5397), 1, + ACTIONS(5399), 1, anon_sym_DOT_DOT2, - STATE(2644), 1, + STATE(2632), 1, sym_comment, - ACTIONS(2090), 2, + ACTIONS(2104), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5399), 2, + ACTIONS(5401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2092), 11, + ACTIONS(2106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212447,18 +212433,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, - [82595] = 5, - ACTIONS(3), 1, + [82274] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOT_DOT2, - STATE(2645), 1, + ACTIONS(5124), 1, + anon_sym_DOT2, + ACTIONS(5405), 1, + sym__space, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2633), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1714), 15, - ts_builtin_sym_end, + STATE(3162), 1, + sym_cell_path, + ACTIONS(5403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212470,25 +212460,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, - [82626] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82311] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5124), 1, anon_sym_DOT2, - ACTIONS(5403), 1, + ACTIONS(5409), 1, sym__space, - STATE(2508), 1, + STATE(2509), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, + STATE(2581), 1, sym_path, - STATE(2646), 1, + STATE(2634), 1, sym_comment, - STATE(3113), 1, + STATE(3167), 1, sym_cell_path, - ACTIONS(5401), 13, + ACTIONS(5407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212502,22 +212491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82663] = 8, - ACTIONS(103), 1, + [82348] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5124), 1, anon_sym_DOT2, - ACTIONS(5407), 1, + ACTIONS(5413), 1, sym__space, - STATE(2508), 1, + STATE(2509), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, + STATE(2581), 1, sym_path, - STATE(2647), 1, + STATE(2635), 1, sym_comment, - STATE(3212), 1, + STATE(3168), 1, sym_cell_path, - ACTIONS(5405), 13, + ACTIONS(5411), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212531,19 +212520,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82700] = 6, - ACTIONS(3), 1, + [82385] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5322), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(5415), 1, + anon_sym_DOT_DOT2, + STATE(2636), 1, + sym_comment, + ACTIONS(2114), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 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, + [82422] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5124), 1, anon_sym_DOT2, - STATE(2511), 1, + ACTIONS(5421), 1, + sym__space, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, sym_path, - STATE(2648), 1, + STATE(2637), 1, sym_comment, - STATE(2649), 1, + STATE(3192), 1, + sym_cell_path, + ACTIONS(5419), 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, + [82459] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5124), 1, + anon_sym_DOT2, + ACTIONS(5425), 1, + sym__space, + STATE(2509), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1528), 15, - anon_sym_EQ, + STATE(2581), 1, + sym_path, + STATE(2638), 1, + sym_comment, + STATE(3193), 1, + sym_cell_path, + ACTIONS(5423), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212555,20 +212605,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, - [82733] = 5, + [82496] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5409), 1, + ACTIONS(5112), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, sym_path, - STATE(2649), 2, + STATE(2639), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 15, + STATE(3248), 1, + sym_cell_path, + ACTIONS(5427), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212581,25 +212633,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, - [82764] = 8, - ACTIONS(103), 1, + [82531] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DOT2, - ACTIONS(5414), 1, + ACTIONS(1880), 1, sym__space, - STATE(2508), 1, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2509), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, + STATE(2581), 1, sym_path, - STATE(2650), 1, + STATE(2640), 1, sym_comment, - STATE(3225), 1, + STATE(3153), 1, sym_cell_path, - ACTIONS(5412), 13, + ACTIONS(1883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212613,45 +212664,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82801] = 6, - ACTIONS(3), 1, + [82568] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2651), 1, + ACTIONS(1905), 1, + sym__space, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2641), 1, sym_comment, - ACTIONS(4796), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4798), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4800), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4794), 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, - [82834] = 5, + STATE(3161), 1, + sym_cell_path, + ACTIONS(1907), 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, + [82605] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5416), 1, - anon_sym_DOT_DOT2, - STATE(2652), 1, + ACTIONS(5429), 1, + anon_sym_QMARK2, + ACTIONS(5431), 1, + anon_sym_BANG, + STATE(2642), 1, sym_comment, - ACTIONS(5418), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 15, + STATE(2969), 1, + sym__path_suffix, + ACTIONS(1474), 15, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212663,21 +212718,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, - [82865] = 5, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_DOT2, + [82638] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5420), 1, - anon_sym_DOT_DOT2, - STATE(2653), 1, + ACTIONS(1909), 1, + sym__space, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2643), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2241), 15, - ts_builtin_sym_end, + STATE(3166), 1, + sym_cell_path, + ACTIONS(1911), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212689,21 +212747,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, - [82896] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82675] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DOT_DOT2, - STATE(2654), 1, + ACTIONS(1925), 1, + sym__space, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2644), 1, sym_comment, - ACTIONS(5426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2249), 15, - ts_builtin_sym_end, + STATE(3172), 1, + sym_cell_path, + ACTIONS(1927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212715,22 +212776,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, - [82927] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82712] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5428), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - aux_sym__immediate_decimal_token5, - STATE(2655), 1, - sym_comment, - ACTIONS(1784), 2, + ACTIONS(1917), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1786), 14, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2645), 1, + sym_comment, + STATE(3191), 1, + sym_cell_path, + ACTIONS(1919), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212744,50 +212807,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [82960] = 12, - ACTIONS(3), 1, + [82749] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1496), 1, - anon_sym_COMMA, - ACTIONS(5285), 1, - anon_sym_EQ, - ACTIONS(5287), 1, - sym__newline, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_DASH2, - STATE(2656), 1, + ACTIONS(1901), 1, + sym__space, + ACTIONS(5124), 1, + anon_sym_DOT2, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(2646), 1, sym_comment, - STATE(2677), 1, - aux_sym_parameter_repeat1, - STATE(3627), 1, - aux_sym_parameter_repeat2, - STATE(4396), 1, - aux_sym__repeat_newline, - STATE(3422), 2, - sym_param_type, - sym_param_value, - ACTIONS(5432), 7, - sym_identifier, + STATE(3204), 1, + sym_cell_path, + ACTIONS(1903), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83004] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [82786] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2647), 1, + sym_comment, + ACTIONS(1774), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1776), 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, + [82815] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2657), 1, + STATE(2648), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1866), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1476), 13, + ACTIONS(1868), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212800,18 +212885,19 @@ 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_DOT2, - [83032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, sym__unquoted_pattern, - STATE(2658), 1, + [82844] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2649), 1, sym_comment, - ACTIONS(1714), 15, + ACTIONS(1921), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1923), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212823,19 +212909,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, - [83062] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [82873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(2659), 1, + ACTIONS(5366), 1, + anon_sym_DOT_DOT2, + STATE(2650), 1, sym_comment, - ACTIONS(2090), 15, + ACTIONS(5368), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1738), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212851,16 +212937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83092] = 4, - ACTIONS(103), 1, + [82904] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2660), 1, + ACTIONS(5356), 1, + anon_sym_DOT2, + STATE(2485), 1, + sym_path, + STATE(2651), 1, sym_comment, - ACTIONS(1582), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 14, + STATE(2652), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1579), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212872,18 +212961,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_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [83120] = 4, + [82937] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - STATE(2661), 1, + ACTIONS(5433), 1, + anon_sym_DOT2, + STATE(2485), 1, + sym_path, + STATE(2652), 2, sym_comment, - ACTIONS(1730), 16, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212895,21 +212987,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, - [83148] = 5, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82968] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(2662), 1, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(2653), 1, sym_comment, - ACTIONS(2574), 15, - ts_builtin_sym_end, + STATE(3257), 1, + sym_cell_path, + ACTIONS(1909), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212921,20 +213016,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, - [83178] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83003] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(2663), 1, + ACTIONS(5362), 1, + anon_sym_QMARK2, + STATE(2654), 1, sym_comment, - ACTIONS(1953), 15, + 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, @@ -212946,19 +213042,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, - [83208] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83034] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2588), 1, - anon_sym_LPAREN2, - STATE(2664), 1, + ACTIONS(5436), 1, + anon_sym_DOT_DOT2, + STATE(2655), 1, sym_comment, - ACTIONS(2584), 15, + ACTIONS(5438), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2166), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212974,16 +213070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83238] = 5, + [83065] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2665), 1, + ACTIONS(5440), 1, + anon_sym_DOT_DOT2, + STATE(2656), 1, sym_comment, - ACTIONS(2590), 15, + ACTIONS(5442), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2174), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212999,14 +213096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83268] = 4, + [83096] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - STATE(2666), 1, + ACTIONS(5444), 1, + anon_sym_DOT_DOT2, + STATE(2657), 1, sym_comment, - ACTIONS(1832), 16, + ACTIONS(5446), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2186), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213022,16 +213122,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [83127] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5448), 1, + aux_sym__immediate_decimal_token5, + STATE(2658), 1, + sym_comment, + ACTIONS(1868), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1866), 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, - [83296] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - sym__unquoted_pattern, - STATE(2667), 1, + STATE(2659), 1, + sym_comment, + ACTIONS(1868), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1866), 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, + [83186] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2660), 1, sym_comment, - ACTIONS(1919), 16, + ACTIONS(1557), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1555), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213043,21 +213194,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [83324] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, + STATE(2661), 1, + sym_comment, + ACTIONS(1923), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1921), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(2604), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83242] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, sym__unquoted_pattern, - STATE(2668), 1, + STATE(2662), 1, sym_comment, - ACTIONS(2598), 15, - ts_builtin_sym_end, + ACTIONS(914), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213069,17 +213239,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, - [83354] = 4, - ACTIONS(3), 1, + [83270] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(2669), 1, + STATE(2663), 1, sym_comment, - ACTIONS(884), 16, + ACTIONS(1563), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1561), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213091,28 +213266,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, - [83382] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5199), 1, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2670), 1, + [83298] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token5, + STATE(2664), 1, sym_comment, - STATE(2724), 1, - sym_path, - STATE(3403), 1, - sym_cell_path, - ACTIONS(1866), 2, - ts_builtin_sym_end, + ACTIONS(1788), 2, sym__space, - ACTIONS(1868), 11, + anon_sym_LPAREN2, + ACTIONS(1790), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213124,20 +213290,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, - [83418] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [83328] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5450), 1, anon_sym_DOT, - ACTIONS(5438), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token5, - STATE(2671), 1, + STATE(2665), 1, sym_comment, - ACTIONS(1784), 3, + ACTIONS(1788), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1786), 12, + ACTIONS(1790), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213150,42 +213319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [83450] = 4, - ACTIONS(3), 1, + [83360] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2672), 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, + ACTIONS(5454), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [83478] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, - STATE(2673), 1, + ACTIONS(5456), 1, + sym__space, + ACTIONS(5460), 1, + anon_sym_COLON2, + ACTIONS(5462), 1, + anon_sym_EQ2, + STATE(2666), 1, sym_comment, - ACTIONS(1216), 15, - ts_builtin_sym_end, - sym__newline, + STATE(3037), 1, + aux_sym_attribute_repeat1, + STATE(4472), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5458), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213196,19 +213347,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, - [83508] = 4, + anon_sym_RBRACE, + [83398] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2674), 1, + ACTIONS(5464), 1, + anon_sym_BANG, + STATE(2667), 1, sym_comment, - ACTIONS(1834), 3, + ACTIONS(1460), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1832), 14, + anon_sym_DOT2, + ACTIONS(1462), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -213220,19 +213371,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83536] = 4, + [83428] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2675), 1, + ACTIONS(5464), 1, + anon_sym_QMARK2, + STATE(2668), 1, sym_comment, - ACTIONS(1921), 3, + ACTIONS(1460), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1919), 14, + anon_sym_DOT2, + ACTIONS(1462), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -213244,19 +213396,43 @@ 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, - [83564] = 5, - ACTIONS(3), 1, + [83458] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(5466), 1, + aux_sym__immediate_decimal_token5, + STATE(2669), 1, + sym_comment, + ACTIONS(1866), 2, + sym__space, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(1868), 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, sym__unquoted_pattern, - STATE(2676), 1, + [83488] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2670), 1, sym_comment, - ACTIONS(1234), 15, + STATE(5005), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5383), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213272,116 +213448,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83594] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1496), 1, - anon_sym_COMMA, - ACTIONS(5285), 1, - anon_sym_EQ, - ACTIONS(5287), 1, - sym__newline, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5442), 1, - anon_sym_DASH2, - STATE(2677), 1, - sym_comment, - STATE(2730), 1, - aux_sym_parameter_repeat1, - STATE(3609), 1, - aux_sym_parameter_repeat2, - STATE(4396), 1, - aux_sym__repeat_newline, - STATE(3422), 2, - sym_param_type, - sym_param_value, - ACTIONS(5440), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83638] = 12, + [83518] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1496), 1, - anon_sym_COMMA, - ACTIONS(5285), 1, - anon_sym_EQ, - ACTIONS(5287), 1, - sym__newline, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5446), 1, - anon_sym_DASH2, - STATE(2678), 1, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2671), 1, sym_comment, - STATE(2683), 1, - aux_sym_parameter_repeat1, - STATE(3614), 1, - aux_sym_parameter_repeat2, - STATE(4396), 1, - aux_sym__repeat_newline, - STATE(3422), 2, - sym_param_type, - sym_param_value, - ACTIONS(5444), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83682] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1496), 1, - anon_sym_COMMA, - ACTIONS(5285), 1, - anon_sym_EQ, - ACTIONS(5287), 1, + ACTIONS(1258), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5450), 1, - anon_sym_DASH2, - STATE(2679), 1, - sym_comment, - STATE(2730), 1, - aux_sym_parameter_repeat1, - STATE(3620), 1, - aux_sym_parameter_repeat2, - STATE(4396), 1, - aux_sym__repeat_newline, - STATE(3422), 2, - sym_param_type, - sym_param_value, - ACTIONS(5448), 7, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83726] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, - anon_sym_DOT2, - STATE(2680), 1, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2672), 1, sym_comment, - STATE(2726), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2945), 1, - sym_path, - ACTIONS(1528), 14, + ACTIONS(1250), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213393,17 +213495,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, - [83758] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83578] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2681), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(2673), 1, sym_comment, - ACTIONS(1675), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1677), 14, + ACTIONS(1738), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213415,59 +213520,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_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [83786] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83608] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(2682), 1, + STATE(2674), 1, sym_comment, - STATE(5071), 1, + STATE(5005), 1, sym__expr_parenthesized_immediate, - ACTIONS(5381), 15, + ACTIONS(5383), 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, - [83816] = 12, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [83638] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1509), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_EQ, + ACTIONS(5334), 1, + sym__newline, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_DASH2, + STATE(2675), 1, + sym_comment, + STATE(2676), 1, + aux_sym_parameter_repeat1, + STATE(3647), 1, + aux_sym_parameter_repeat2, + STATE(4411), 1, + aux_sym__repeat_newline, + STATE(3468), 2, + sym_param_type, + sym_param_value, + ACTIONS(5468), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83682] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1496), 1, + ACTIONS(1509), 1, anon_sym_COMMA, - ACTIONS(5285), 1, + ACTIONS(5332), 1, anon_sym_EQ, - ACTIONS(5287), 1, + ACTIONS(5334), 1, sym__newline, - ACTIONS(5289), 1, + ACTIONS(5336), 1, anon_sym_COLON, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_DASH2, - STATE(2683), 1, + STATE(2676), 1, sym_comment, - STATE(2730), 1, + STATE(2774), 1, aux_sym_parameter_repeat1, - STATE(3618), 1, + STATE(3629), 1, aux_sym_parameter_repeat2, - STATE(4396), 1, + STATE(4411), 1, aux_sym__repeat_newline, - STATE(3422), 2, + STATE(3468), 2, sym_param_type, sym_param_value, - ACTIONS(5452), 7, + ACTIONS(5472), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -213475,16 +213612,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83860] = 5, + [83726] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2684), 1, + ACTIONS(5364), 1, + anon_sym_DOT2, + STATE(2677), 1, sym_comment, - STATE(5071), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5381), 15, + STATE(2687), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2940), 1, + sym_path, + STATE(3331), 1, + sym_cell_path, + ACTIONS(5427), 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, + [83760] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2578), 1, + sym__unquoted_pattern, + STATE(2678), 1, + sym_comment, + ACTIONS(2576), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213500,16 +213662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83890] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [83788] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2685), 1, + STATE(2679), 1, sym_comment, - ACTIONS(1854), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1856), 14, + ACTIONS(5476), 17, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213521,19 +213681,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, - anon_sym_DOT_DOT2, - [83918] = 5, + [83814] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(2686), 1, + STATE(2680), 1, sym_comment, - STATE(5071), 1, + STATE(5005), 1, sym__expr_parenthesized_immediate, - ACTIONS(5381), 15, + ACTIONS(5383), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213549,23 +213711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83948] = 8, - ACTIONS(103), 1, + [83844] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2687), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3334), 1, + STATE(2681), 1, + sym_comment, + STATE(3413), 1, sym_cell_path, - ACTIONS(5403), 2, + ACTIONS(1880), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5401), 11, + ACTIONS(1883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213577,23 +213739,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, - [83984] = 8, - ACTIONS(103), 1, + [83880] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2688), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3335), 1, + STATE(2682), 1, + sym_comment, + STATE(3287), 1, sym_cell_path, - ACTIONS(5407), 2, + ACTIONS(1905), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5405), 11, + ACTIONS(1907), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213605,23 +213767,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, - [84020] = 8, - ACTIONS(103), 1, + [83916] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3336), 1, + STATE(2683), 1, + sym_comment, + STATE(3320), 1, sym_cell_path, - ACTIONS(5414), 2, + ACTIONS(1909), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5412), 11, + ACTIONS(1911), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213633,23 +213795,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, - [84056] = 8, - ACTIONS(103), 1, + [83952] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2690), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3266), 1, + STATE(2684), 1, + sym_comment, + STATE(3372), 1, sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(1925), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1887), 11, + ACTIONS(1927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213661,15 +213823,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, - [84092] = 4, - ACTIONS(3), 1, + [83988] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2691), 1, + ACTIONS(4355), 1, + sym__space, + ACTIONS(5478), 1, + sym_long_flag_identifier, + ACTIONS(5480), 1, + anon_sym_EQ2, + STATE(2685), 1, sym_comment, - ACTIONS(2570), 16, - ts_builtin_sym_end, + STATE(3247), 1, + sym__flag_equals_value, + ACTIONS(4353), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213681,24 +213848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [84120] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84022] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4290), 1, - sym__space, - ACTIONS(5456), 1, - sym_long_flag_identifier, - ACTIONS(5458), 1, - anon_sym_EQ2, - STATE(2692), 1, + ACTIONS(5203), 1, + anon_sym_DOT2, + STATE(2568), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_path, + STATE(2686), 1, sym_comment, - STATE(3058), 1, - sym__flag_equals_value, - ACTIONS(4288), 13, + STATE(3346), 1, + sym_cell_path, + ACTIONS(1917), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1919), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213710,14 +213878,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, - [84154] = 3, + [84058] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2693), 1, + ACTIONS(5364), 1, + anon_sym_DOT2, + STATE(2687), 1, sym_comment, - ACTIONS(5460), 17, + STATE(2690), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2940), 1, + sym_path, + ACTIONS(1579), 14, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -213730,28 +213903,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_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [84180] = 8, - ACTIONS(103), 1, + anon_sym_COLON, + [84090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT2, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2694), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(2688), 1, sym_comment, - STATE(2724), 1, - sym_path, - STATE(3361), 1, - sym_cell_path, - ACTIONS(5346), 2, + ACTIONS(2104), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213763,23 +213926,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, - [84216] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84120] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2695), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3362), 1, + STATE(2689), 1, + sym_comment, + STATE(3296), 1, sym_cell_path, - ACTIONS(5350), 2, + ACTIONS(1901), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5348), 11, + ACTIONS(1903), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213791,20 +213957,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, - [84252] = 7, + [84156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5482), 1, anon_sym_DOT2, - STATE(2680), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2696), 1, - sym_comment, - STATE(2945), 1, + STATE(2940), 1, sym_path, - STATE(3340), 1, - sym_cell_path, - ACTIONS(1893), 13, + STATE(2690), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -213818,100 +213981,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, - [84286] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2697), 1, - sym_comment, - ACTIONS(1899), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1897), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84314] = 8, - ACTIONS(3), 1, + [84186] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2092), 1, - anon_sym_DASH2, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(5462), 1, - anon_sym_DOT_DOT2, - STATE(2698), 1, + STATE(2691), 1, sym_comment, - ACTIONS(5464), 2, + ACTIONS(1602), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1600), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [84350] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [84214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_DASH2, - ACTIONS(1957), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5466), 1, - anon_sym_DOT_DOT2, - STATE(2699), 1, - sym_comment, - ACTIONS(5468), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 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, - [84386] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5470), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5472), 1, - aux_sym__immediate_decimal_token5, - STATE(2700), 1, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2692), 1, sym_comment, - ACTIONS(1730), 3, + ACTIONS(2696), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213923,21 +214028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84418] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(954), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2701), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2693), 1, sym_comment, - ACTIONS(5379), 13, + ACTIONS(2114), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213949,24 +214053,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, - [84452] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84274] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, - anon_sym_DOT2, - STATE(2680), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2702), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(2694), 1, sym_comment, - STATE(2945), 1, - sym_path, - STATE(3302), 1, - sym_cell_path, - ACTIONS(5379), 13, + ACTIONS(1774), 16, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213978,46 +214076,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, - [84486] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84302] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2703), 1, - sym_comment, - ACTIONS(1907), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1905), 15, + ACTIONS(1509), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(5334), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5336), 1, anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(5487), 1, + anon_sym_DASH2, + STATE(2695), 1, + sym_comment, + STATE(2774), 1, + aux_sym_parameter_repeat1, + STATE(3623), 1, + aux_sym_parameter_repeat2, + STATE(4411), 1, + aux_sym__repeat_newline, + STATE(3468), 2, + sym_param_type, + sym_param_value, + ACTIONS(5485), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84514] = 7, + [84346] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, - anon_sym_DOT2, - STATE(2680), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2704), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2718), 1, + anon_sym_LPAREN2, + STATE(2696), 1, sym_comment, - STATE(2945), 1, - sym_path, - STATE(3373), 1, - sym_cell_path, - ACTIONS(1866), 13, + ACTIONS(2660), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214029,22 +214134,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, - [84548] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, - anon_sym_DOT2, - STATE(2680), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2705), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, + STATE(2697), 1, sym_comment, - STATE(2945), 1, - sym_path, - STATE(3379), 1, - sym_cell_path, - ACTIONS(1885), 13, + ACTIONS(2676), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214056,17 +214159,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, - [84582] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84406] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5430), 1, - aux_sym__immediate_decimal_token5, - STATE(2706), 1, + STATE(2698), 1, sym_comment, - ACTIONS(1784), 2, + ACTIONS(1669), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1786), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1671), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214080,25 +214185,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [84612] = 9, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [84434] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5474), 1, - sym__newline, - ACTIONS(5476), 1, - sym__space, - ACTIONS(5480), 1, - anon_sym_COLON2, - ACTIONS(5482), 1, - anon_sym_EQ2, - STATE(2707), 1, + ACTIONS(5040), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(959), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2699), 1, sym_comment, - STATE(3043), 1, - aux_sym_attribute_repeat1, - STATE(4541), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5478), 11, + ACTIONS(5427), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214109,24 +214211,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, - [84650] = 8, - ACTIONS(103), 1, + [84468] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2708), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3293), 1, + STATE(2700), 1, + sym_comment, + STATE(3263), 1, sym_cell_path, - ACTIONS(1872), 2, + ACTIONS(5405), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1875), 11, + ACTIONS(5403), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214138,20 +214241,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, - [84686] = 7, - ACTIONS(103), 1, + [84504] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_EQ2, - ACTIONS(5486), 1, - sym__space, - ACTIONS(5488), 1, - sym_short_flag_identifier, - STATE(2709), 1, + STATE(2701), 1, sym_comment, - STATE(3219), 1, - sym__flag_equals_value, - ACTIONS(5484), 13, + ACTIONS(1872), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1874), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214165,19 +214264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84720] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5492), 1, - sym__space, - ACTIONS(5494), 1, anon_sym_DOT_DOT2, - STATE(2710), 1, + [84532] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + sym__unquoted_pattern, + STATE(2702), 1, sym_comment, - ACTIONS(5496), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5490), 13, + ACTIONS(1866), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214189,18 +214285,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, - anon_sym_RBRACE, - [84752] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84560] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2711), 1, + ACTIONS(5203), 1, + anon_sym_DOT2, + STATE(2568), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_path, + STATE(2703), 1, + sym_comment, + STATE(3313), 1, + sym_cell_path, + ACTIONS(5421), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5419), 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, + [84596] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + anon_sym_DOT2, + STATE(2687), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2704), 1, sym_comment, - ACTIONS(1897), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1899), 14, + STATE(2940), 1, + sym_path, + STATE(3342), 1, + sym_cell_path, + ACTIONS(1909), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214212,27 +214344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [84780] = 5, + [84630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5498), 1, - anon_sym_BANG, - STATE(2712), 1, + STATE(2705), 1, sym_comment, - ACTIONS(1462), 3, + ACTIONS(1915), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 13, + ACTIONS(1913), 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, @@ -214240,24 +214368,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [84810] = 5, + [84658] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5489), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5491), 1, + aux_sym__immediate_decimal_token5, + STATE(2706), 1, + sym_comment, + ACTIONS(1774), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1776), 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, + [84690] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5498), 1, - anon_sym_QMARK2, - STATE(2713), 1, + STATE(2707), 1, sym_comment, - ACTIONS(1462), 3, + ACTIONS(1935), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 13, + ACTIONS(1933), 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, @@ -214265,19 +214418,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [84840] = 6, - ACTIONS(103), 1, + [84718] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1714), 1, + ACTIONS(5480), 1, + anon_sym_EQ2, + ACTIONS(5495), 1, sym__space, - ACTIONS(5494), 1, - anon_sym_DOT_DOT2, - STATE(2714), 1, + ACTIONS(5497), 1, + sym_short_flag_identifier, + STATE(2708), 1, sym_comment, - ACTIONS(5496), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1588), 13, + STATE(3116), 1, + sym__flag_equals_value, + ACTIONS(5493), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214291,19 +214445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84872] = 6, - ACTIONS(103), 1, + [84752] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(5501), 1, sym__space, - ACTIONS(5500), 1, + ACTIONS(5503), 1, anon_sym_DOT_DOT2, - STATE(2715), 1, + STATE(2709), 1, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5505), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 13, + ACTIONS(5499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214317,19 +214471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84904] = 6, - ACTIONS(103), 1, + [84784] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - sym__space, - ACTIONS(5504), 1, - anon_sym_DOT_DOT2, - STATE(2716), 1, + ACTIONS(1923), 1, + sym__unquoted_pattern, + STATE(2710), 1, sym_comment, - ACTIONS(5506), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2243), 13, + ACTIONS(1921), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214341,21 +214491,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [84936] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84812] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + anon_sym_DOT2, + STATE(2687), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2711), 1, + sym_comment, + STATE(2940), 1, + sym_path, + STATE(3391), 1, + sym_cell_path, + ACTIONS(1917), 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, + [84846] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(1738), 1, sym__space, - ACTIONS(5508), 1, + ACTIONS(5503), 1, anon_sym_DOT_DOT2, - STATE(2717), 1, + STATE(2712), 1, sym_comment, - ACTIONS(5510), 2, + ACTIONS(5505), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2251), 13, + ACTIONS(1616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214369,19 +214548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84968] = 6, - ACTIONS(103), 1, + [84878] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2257), 1, + ACTIONS(2154), 1, sym__space, - ACTIONS(5512), 1, + ACTIONS(5507), 1, anon_sym_DOT_DOT2, - STATE(2718), 1, + STATE(2713), 1, sym_comment, - ACTIONS(5514), 2, + ACTIONS(5509), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2259), 13, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214395,17 +214574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85000] = 5, - ACTIONS(103), 1, + [84910] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5516), 1, - aux_sym__immediate_decimal_token5, - STATE(2719), 1, - sym_comment, - ACTIONS(1832), 2, + ACTIONS(2166), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1834), 14, + ACTIONS(5511), 1, + anon_sym_DOT_DOT2, + STATE(2714), 1, + sym_comment, + ACTIONS(5513), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214419,24 +214600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [85030] = 8, - ACTIONS(103), 1, + [84942] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT2, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2720), 1, - sym_comment, - STATE(2724), 1, - sym_path, - STATE(3290), 1, - sym_cell_path, - ACTIONS(1889), 2, - ts_builtin_sym_end, + ACTIONS(2174), 1, sym__space, - ACTIONS(1891), 11, + ACTIONS(5515), 1, + anon_sym_DOT_DOT2, + STATE(2715), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2176), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214448,16 +214624,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, - [85066] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84974] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2721), 1, - sym_comment, - ACTIONS(1905), 3, + ACTIONS(2186), 1, sym__space, + ACTIONS(5519), 1, + anon_sym_DOT_DOT2, + STATE(2716), 1, + sym_comment, + ACTIONS(5521), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1907), 14, + ACTIONS(2188), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214471,18 +214652,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [85094] = 4, - ACTIONS(103), 1, + [85006] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2722), 1, + ACTIONS(5203), 1, + anon_sym_DOT2, + STATE(2568), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_path, + STATE(2717), 1, sym_comment, - ACTIONS(1514), 4, + STATE(3323), 1, + sym_cell_path, + ACTIONS(5425), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1512), 13, + ACTIONS(5423), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214494,25 +214680,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [85122] = 8, - ACTIONS(103), 1, + [85042] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2723), 1, - sym_comment, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(3301), 1, + STATE(2718), 1, + sym_comment, + STATE(3264), 1, sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(5409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1895), 11, + ACTIONS(5407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214524,17 +214708,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, - [85158] = 4, - ACTIONS(103), 1, + [85078] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2724), 1, + ACTIONS(5364), 1, + anon_sym_DOT2, + STATE(2687), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2719), 1, sym_comment, - ACTIONS(1547), 4, + STATE(2940), 1, + sym_path, + STATE(3403), 1, + sym_cell_path, + ACTIONS(1901), 13, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1545), 13, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214546,25 +214735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [85186] = 8, - ACTIONS(103), 1, + [85112] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_DOT2, - STATE(2544), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2724), 1, + STATE(2660), 1, sym_path, - STATE(2725), 1, + STATE(2720), 1, sym_comment, - STATE(3328), 1, + STATE(3265), 1, sym_cell_path, - ACTIONS(1901), 2, + ACTIONS(5413), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1903), 11, + ACTIONS(5411), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214576,19 +214763,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, - [85222] = 5, - ACTIONS(3), 1, + [85148] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_DOT2, - STATE(2945), 1, - sym_path, - STATE(2726), 2, + STATE(2721), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1913), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1915), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214600,19 +214784,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [85176] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2106), 1, + anon_sym_DASH2, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(5523), 1, + anon_sym_DOT_DOT2, + STATE(2722), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_COLON, - [85252] = 6, - ACTIONS(103), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85212] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(2116), 1, + anon_sym_DASH2, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(2207), 1, - sym__space, - STATE(2727), 1, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5527), 1, + anon_sym_DOT_DOT2, + STATE(2723), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2209), 13, + ACTIONS(5529), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2114), 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, + [85248] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1509), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_EQ, + ACTIONS(5334), 1, + sym__newline, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5533), 1, + anon_sym_DASH2, + STATE(2695), 1, + aux_sym_parameter_repeat1, + STATE(2724), 1, + sym_comment, + STATE(3610), 1, + aux_sym_parameter_repeat2, + STATE(4411), 1, + aux_sym__repeat_newline, + STATE(3468), 2, + sym_param_type, + sym_param_value, + ACTIONS(5531), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2725), 1, + sym_comment, + ACTIONS(1776), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1774), 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, + [85320] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2726), 1, + sym_comment, + ACTIONS(1933), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1935), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214626,20 +214922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85283] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [85348] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - STATE(2728), 1, + STATE(2727), 1, sym_comment, - STATE(2787), 1, - aux_sym__repeat_newline, - ACTIONS(5521), 12, + ACTIONS(1567), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1565), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214650,16 +214945,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, - [85316] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [85376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, sym__unquoted_pattern, - STATE(2729), 1, + STATE(2728), 1, sym_comment, - ACTIONS(884), 15, + ACTIONS(2604), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214675,48 +214972,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85343] = 9, + [85406] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5529), 1, + ACTIONS(1509), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, anon_sym_EQ, - ACTIONS(5532), 1, + ACTIONS(5334), 1, sym__newline, - ACTIONS(5535), 1, + ACTIONS(5336), 1, anon_sym_COLON, - ACTIONS(5538), 1, + ACTIONS(5537), 1, anon_sym_DASH2, - STATE(4396), 1, - aux_sym__repeat_newline, - STATE(2730), 2, + STATE(2729), 1, sym_comment, + STATE(2774), 1, aux_sym_parameter_repeat1, - STATE(3422), 2, + STATE(3654), 1, + aux_sym_parameter_repeat2, + STATE(4411), 1, + aux_sym__repeat_newline, + STATE(3468), 2, sym_param_type, sym_param_value, - ACTIONS(5527), 8, + ACTIONS(5535), 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, - [85380] = 6, - ACTIONS(103), 1, + [85450] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5540), 1, - anon_sym_DOT_DOT2, - STATE(2731), 1, + ACTIONS(5541), 1, + anon_sym_AT2, + STATE(2730), 1, sym_comment, - ACTIONS(1714), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5542), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1588), 11, + STATE(3244), 1, + sym_param_completer, + ACTIONS(5539), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214728,22 +215026,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, - [85411] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + STATE(2731), 1, + sym_comment, + ACTIONS(1561), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1563), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, - ACTIONS(5550), 1, - anon_sym_or2, + anon_sym_PIPE, + 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, + [85506] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(2732), 1, sym_comment, - STATE(2870), 1, - aux_sym__repeat_newline, - ACTIONS(5544), 11, + ACTIONS(1866), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1868), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214755,22 +215072,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85446] = 8, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - ACTIONS(5554), 1, - anon_sym_or2, STATE(2733), 1, sym_comment, - STATE(2871), 1, - aux_sym__repeat_newline, - ACTIONS(5552), 11, + ACTIONS(1565), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1567), 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, + [85560] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5545), 1, + sym__space, + STATE(2734), 1, + sym_comment, + STATE(5082), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5543), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214782,17 +215121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85481] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [85591] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2734), 1, + STATE(2735), 1, sym_comment, - ACTIONS(1675), 4, - ts_builtin_sym_end, + ACTIONS(1921), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1677), 12, + anon_sym_LPAREN2, + ACTIONS(1923), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214804,21 +215142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [85508] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85618] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_DOT_DOT2, - STATE(2735), 1, + STATE(2736), 1, sym_comment, - ACTIONS(2108), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5558), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 11, + STATE(2829), 1, + aux_sym__repeat_newline, + ACTIONS(5547), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214830,20 +215164,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, - [85539] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5562), 1, + anon_sym_RPAREN, anon_sym_and2, - ACTIONS(5564), 1, anon_sym_xor2, - ACTIONS(5566), 1, anon_sym_or2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2736), 1, + [85645] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2737), 1, sym_comment, - ACTIONS(5560), 12, + STATE(2830), 1, + aux_sym__repeat_newline, + ACTIONS(5549), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214856,16 +215188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85572] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5568), 1, - anon_sym_QMARK2, - STATE(2737), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2738), 1, sym_comment, - ACTIONS(1464), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5551), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214877,22 +215210,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_DOT2, - [85599] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5572), 1, + anon_sym_RPAREN, anon_sym_and2, - ACTIONS(5574), 1, anon_sym_xor2, - ACTIONS(5576), 1, anon_sym_or2, - STATE(503), 1, + [85699] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2738), 1, + STATE(2739), 1, sym_comment, - ACTIONS(5570), 12, + ACTIONS(5553), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214905,18 +215234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85632] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85726] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2739), 1, - sym_comment, - ACTIONS(1854), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1856), 12, + ACTIONS(5555), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + STATE(2740), 1, + sym_comment, + STATE(2831), 1, + aux_sym__repeat_newline, + ACTIONS(5547), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214927,19 +215259,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, - [85659] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [85757] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2740), 1, - sym_comment, - ACTIONS(1897), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1899), 12, + ACTIONS(5560), 1, sym__newline, + ACTIONS(5563), 1, + anon_sym_and2, + STATE(2741), 1, + sym_comment, + STATE(2832), 1, + aux_sym__repeat_newline, + ACTIONS(5549), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214950,40 +215284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [85686] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2741), 1, - sym_comment, - ACTIONS(1545), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1547), 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, - [85713] = 4, + anon_sym_xor2, + anon_sym_or2, + [85788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5568), 1, - anon_sym_BANG, + ACTIONS(5565), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2742), 1, sym_comment, - ACTIONS(1464), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5551), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214995,17 +215308,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_DOT2, - [85740] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [85817] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2743), 1, sym_comment, - ACTIONS(1730), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 14, + ACTIONS(5553), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215018,23 +215333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [85767] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [85846] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5578), 1, - anon_sym_DOT_DOT2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, STATE(2744), 1, sym_comment, - ACTIONS(2241), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5580), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2243), 11, - sym__newline, + STATE(2833), 1, + aux_sym__repeat_newline, + ACTIONS(5547), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215045,40 +215359,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, - [85798] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [85879] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5571), 1, + anon_sym_xor2, STATE(2745), 1, sym_comment, - ACTIONS(1476), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1478), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(2834), 1, + aux_sym__repeat_newline, + ACTIONS(5549), 12, + 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, - [85825] = 4, - ACTIONS(103), 1, + anon_sym_or2, + [85912] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5565), 1, + anon_sym_and2, + ACTIONS(5573), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2746), 1, sym_comment, - ACTIONS(1905), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1907), 12, + ACTIONS(5551), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215090,16 +215410,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, - [85852] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [85943] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + anon_sym_and2, + ACTIONS(5575), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2747), 1, sym_comment, - ACTIONS(1832), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1834), 14, + ACTIONS(5553), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215112,40 +215436,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, - sym__unquoted_pattern, - [85879] = 4, + anon_sym_or2, + [85974] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2748), 1, sym_comment, - ACTIONS(1512), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1514), 13, - anon_sym_EQ, - sym_identifier, + STATE(2837), 1, + aux_sym__repeat_newline, + ACTIONS(5577), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [85906] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86001] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(2749), 1, sym_comment, - ACTIONS(1919), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1921), 14, + STATE(2839), 1, + aux_sym__repeat_newline, + ACTIONS(5579), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215158,23 +215480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [85933] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86028] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5582), 1, - anon_sym_DOT_DOT2, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5581), 1, + sym__newline, STATE(2750), 1, sym_comment, - ACTIONS(2249), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5584), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2251), 11, - sym__newline, + STATE(2844), 1, + aux_sym__repeat_newline, + ACTIONS(5577), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215185,21 +215505,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, - [85964] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86059] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5586), 1, - anon_sym_DOT_DOT2, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5584), 1, + sym__newline, STATE(2751), 1, sym_comment, - ACTIONS(2257), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5588), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2259), 11, - sym__newline, + STATE(2848), 1, + aux_sym__repeat_newline, + ACTIONS(5579), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215210,15 +215530,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, - [85995] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86090] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, STATE(2752), 1, sym_comment, - ACTIONS(5590), 15, - sym__newline, + STATE(2851), 1, + aux_sym__repeat_newline, + ACTIONS(5577), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215230,18 +215558,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, - [86022] = 4, + [86123] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5571), 1, + anon_sym_xor2, STATE(2753), 1, sym_comment, - ACTIONS(5592), 15, - sym__newline, + STATE(2852), 1, + aux_sym__repeat_newline, + ACTIONS(5579), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215253,19 +215584,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, - [86049] = 5, + [86156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, STATE(2754), 1, sym_comment, - ACTIONS(5590), 14, + STATE(2853), 1, + aux_sym__repeat_newline, + ACTIONS(5587), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215278,18 +215605,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, - [86078] = 5, + [86183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, STATE(2755), 1, sym_comment, - ACTIONS(5592), 14, + STATE(2854), 1, + aux_sym__repeat_newline, + ACTIONS(5589), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215302,20 +215628,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, - [86107] = 6, + [86210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - anon_sym_and2, - ACTIONS(5564), 1, - anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2756), 1, sym_comment, - ACTIONS(5590), 13, + ACTIONS(5591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215328,19 +215651,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, - [86138] = 6, + [86237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - ACTIONS(5574), 1, - anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2757), 1, sym_comment, - ACTIONS(5592), 13, + ACTIONS(5593), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215353,16 +215674,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, - [86169] = 4, + [86264] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5595), 1, + sym__newline, STATE(2758), 1, sym_comment, - STATE(2802), 1, + STATE(2855), 1, aux_sym__repeat_newline, - ACTIONS(5594), 15, - sym__newline, + ACTIONS(5587), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215374,18 +215700,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, - [86196] = 4, + [86295] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5598), 1, + sym__newline, STATE(2759), 1, sym_comment, - STATE(2803), 1, + STATE(2856), 1, aux_sym__repeat_newline, - ACTIONS(5596), 15, - sym__newline, + ACTIONS(5589), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215397,17 +215725,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, - [86223] = 4, + [86326] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + ACTIONS(5565), 1, + anon_sym_and2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2760), 1, sym_comment, - ACTIONS(5598), 15, + ACTIONS(5591), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215420,17 +215749,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, - [86250] = 4, + [86355] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + ACTIONS(5567), 1, + anon_sym_and2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2761), 1, sym_comment, - ACTIONS(5600), 15, + ACTIONS(5593), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215443,21 +215773,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, - [86277] = 6, + [86384] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5602), 1, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, STATE(2762), 1, sym_comment, - STATE(2804), 1, + STATE(2857), 1, aux_sym__repeat_newline, - ACTIONS(5594), 13, + ACTIONS(5587), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215469,20 +215800,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, - [86308] = 6, + [86417] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5605), 1, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5571), 1, + anon_sym_xor2, STATE(2763), 1, sym_comment, - STATE(2805), 1, + STATE(2858), 1, aux_sym__repeat_newline, - ACTIONS(5596), 13, + ACTIONS(5589), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215494,18 +215826,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, - [86339] = 5, + [86450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5565), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5573), 1, + anon_sym_xor2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2764), 1, sym_comment, - ACTIONS(5598), 14, + ACTIONS(5591), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215518,18 +215851,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, - [86368] = 5, + [86481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5567), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5575), 1, + anon_sym_xor2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2765), 1, sym_comment, - ACTIONS(5600), 14, + ACTIONS(5593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215542,22 +215876,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, - [86397] = 7, + [86512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, STATE(2766), 1, sym_comment, - STATE(2806), 1, + STATE(2861), 1, aux_sym__repeat_newline, - ACTIONS(5594), 12, + ACTIONS(5601), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215569,21 +215897,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, - [86430] = 7, + [86539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, STATE(2767), 1, sym_comment, - STATE(2807), 1, + STATE(2862), 1, aux_sym__repeat_newline, - ACTIONS(5596), 12, + ACTIONS(5603), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215595,20 +215920,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, - [86463] = 6, + [86566] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5564), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5605), 1, + sym__newline, STATE(2768), 1, sym_comment, - ACTIONS(5598), 13, - sym__newline, + STATE(2865), 1, + aux_sym__repeat_newline, + ACTIONS(5601), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215620,19 +215946,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, - [86494] = 6, + [86597] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - ACTIONS(5574), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5610), 1, + anon_sym_COLON, STATE(2769), 1, sym_comment, - ACTIONS(5600), 13, + STATE(3334), 1, + sym_param_type, + STATE(4924), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215645,16 +215972,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, - [86525] = 4, + anon_sym_RBRACE, + [86628] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5612), 1, + sym__newline, STATE(2770), 1, sym_comment, - ACTIONS(5608), 15, - sym__newline, + STATE(2866), 1, + aux_sym__repeat_newline, + ACTIONS(5603), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215666,18 +215996,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, - [86552] = 4, + [86659] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, STATE(2771), 1, sym_comment, - ACTIONS(5610), 15, - sym__newline, + STATE(2870), 1, + aux_sym__repeat_newline, + ACTIONS(5601), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215689,20 +216023,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, - [86579] = 5, + [86692] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5571), 1, + anon_sym_xor2, STATE(2772), 1, sym_comment, - ACTIONS(5608), 14, - sym__newline, + STATE(2871), 1, + aux_sym__repeat_newline, + ACTIONS(5603), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215714,18 +216049,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, - [86608] = 5, + [86725] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, STATE(2773), 1, sym_comment, - ACTIONS(5610), 14, + ACTIONS(5615), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215738,20 +216071,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [86637] = 6, + anon_sym_RBRACE, + [86750] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5619), 1, + anon_sym_EQ, + ACTIONS(5622), 1, + sym__newline, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5628), 1, + anon_sym_DASH2, + STATE(4411), 1, + aux_sym__repeat_newline, + STATE(2774), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3468), 2, + sym_param_type, + sym_param_value, + ACTIONS(5617), 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, + [86787] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5632), 1, anon_sym_and2, - ACTIONS(5564), 1, + ACTIONS(5634), 1, anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2774), 1, + ACTIONS(5636), 1, + anon_sym_or2, + STATE(2775), 1, sym_comment, - ACTIONS(5608), 13, + ACTIONS(5630), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215764,19 +216124,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, - [86668] = 6, + anon_sym_RBRACE, + [86818] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5640), 1, anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(5642), 1, anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2775), 1, + ACTIONS(5644), 1, + anon_sym_or2, + STATE(2776), 1, sym_comment, - ACTIONS(5610), 13, + ACTIONS(5638), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215789,15 +216149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [86699] = 4, + anon_sym_RBRACE, + [86849] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2776), 1, + STATE(2777), 1, sym_comment, - STATE(2808), 1, - aux_sym__repeat_newline, - ACTIONS(5612), 15, + ACTIONS(5646), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215809,18 +216169,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, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86726] = 4, + anon_sym_RBRACE, + [86874] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2777), 1, + STATE(2778), 1, sym_comment, - STATE(2810), 1, - aux_sym__repeat_newline, - ACTIONS(5614), 15, + ACTIONS(5267), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215833,17 +216190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86753] = 4, + [86899] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2778), 1, + STATE(2779), 1, sym_comment, - ACTIONS(5616), 15, + ACTIONS(4784), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215856,17 +216212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86780] = 4, + [86924] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2779), 1, + STATE(2780), 1, sym_comment, - ACTIONS(5618), 15, + ACTIONS(5383), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215879,21 +216234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86807] = 6, + [86949] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5620), 1, - sym__newline, - STATE(2780), 1, + STATE(2781), 1, sym_comment, - STATE(2811), 1, - aux_sym__repeat_newline, - ACTIONS(5612), 13, + ACTIONS(5267), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215905,20 +216256,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86838] = 6, + [86974] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5623), 1, + ACTIONS(5648), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5650), 1, + aux_sym__immediate_decimal_token5, + STATE(2782), 1, + sym_comment, + ACTIONS(1776), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1774), 11, + anon_sym_EQ, sym__newline, - STATE(2781), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [87005] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2783), 1, sym_comment, - STATE(2812), 1, - aux_sym__repeat_newline, - ACTIONS(5614), 13, + ACTIONS(5383), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215930,18 +216303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86869] = 5, + [87030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2782), 1, + STATE(2784), 1, sym_comment, - ACTIONS(5616), 14, + ACTIONS(5267), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215954,18 +216325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86898] = 5, + [87055] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2783), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5618), 14, + ACTIONS(5383), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215978,22 +216347,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_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86927] = 7, + [87080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + STATE(2786), 1, + sym_comment, + ACTIONS(5652), 16, sym__newline, - ACTIONS(5546), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5548), 1, anon_sym_xor2, - STATE(2784), 1, + anon_sym_or2, + [87105] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2787), 1, sym_comment, - STATE(2813), 1, - aux_sym__repeat_newline, - ACTIONS(5612), 12, + ACTIONS(5654), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216005,21 +216391,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, - [86960] = 7, + [87130] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, + ACTIONS(5632), 1, anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - STATE(2785), 1, + STATE(2788), 1, sym_comment, - STATE(2814), 1, - aux_sym__repeat_newline, - ACTIONS(5614), 12, + ACTIONS(5652), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216031,19 +216415,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_xor2, anon_sym_or2, - [86993] = 6, + [87157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5640), 1, anon_sym_and2, - ACTIONS(5564), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2786), 1, + STATE(2789), 1, sym_comment, - ACTIONS(5616), 13, + ACTIONS(5654), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216056,19 +216438,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, - [87024] = 6, + [87184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5632), 1, anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(5634), 1, anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2787), 1, + STATE(2790), 1, sym_comment, - ACTIONS(5618), 13, + ACTIONS(5652), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216081,19 +216463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [87055] = 6, - ACTIONS(103), 1, + [87213] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1714), 1, - sym__space, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(2788), 1, + ACTIONS(5640), 1, + anon_sym_and2, + ACTIONS(5642), 1, + anon_sym_xor2, + STATE(2791), 1, sym_comment, - ACTIONS(1588), 13, + ACTIONS(5654), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216107,18 +216488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87086] = 5, - ACTIONS(103), 1, + anon_sym_or2, + [87242] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5438), 1, - aux_sym__immediate_decimal_token5, - STATE(2789), 1, + STATE(2792), 1, sym_comment, - ACTIONS(1784), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1786), 12, + ACTIONS(5656), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216130,19 +216506,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, - sym__unquoted_pattern, - [87115] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87267] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2090), 1, - sym__space, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(2790), 1, + STATE(2793), 1, sym_comment, - ACTIONS(2092), 13, + ACTIONS(5658), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216156,20 +216530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87146] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(5630), 1, - anon_sym_COLON, - STATE(2791), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5632), 1, + anon_sym_and2, + STATE(2794), 1, sym_comment, - STATE(3390), 1, - sym_param_type, - STATE(4674), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 12, + ACTIONS(5656), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216182,18 +216553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87179] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [87319] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(2140), 1, - sym__space, - STATE(2792), 1, + ACTIONS(5640), 1, + anon_sym_and2, + STATE(2795), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2142), 13, + ACTIONS(5658), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216207,17 +216577,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87210] = 5, + anon_sym_xor2, + anon_sym_or2, + [87346] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5632), 1, + anon_sym_and2, ACTIONS(5634), 1, - anon_sym_AT2, - STATE(2793), 1, + anon_sym_xor2, + STATE(2796), 1, sym_comment, - STATE(3236), 1, - sym_param_completer, - ACTIONS(5632), 14, - anon_sym_EQ, + ACTIONS(5656), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216231,18 +216602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87239] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [87375] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(2219), 1, - sym__space, - STATE(2794), 1, + ACTIONS(5640), 1, + anon_sym_and2, + ACTIONS(5642), 1, + anon_sym_xor2, + STATE(2797), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2221), 13, + ACTIONS(5658), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216256,14 +216626,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87270] = 4, + anon_sym_or2, + [87404] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2752), 1, - aux_sym__repeat_newline, - STATE(2795), 1, + ACTIONS(5660), 1, + anon_sym_EQ, + ACTIONS(5662), 1, + anon_sym_COLON, + STATE(2798), 1, sym_comment, - ACTIONS(5636), 15, + STATE(3402), 1, + sym_param_type, + STATE(4901), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216275,18 +216653,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, - [87297] = 4, - ACTIONS(3), 1, + [87437] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2753), 1, - aux_sym__repeat_newline, - STATE(2796), 1, + ACTIONS(1788), 1, + sym__space, + ACTIONS(5186), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5664), 1, + anon_sym_DOT, + STATE(2799), 1, sym_comment, - ACTIONS(5638), 15, + ACTIONS(1790), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216299,17 +216677,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, - [87324] = 4, + anon_sym_RBRACE, + [87468] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2797), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5640), 15, + ACTIONS(5666), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216322,23 +216699,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, - [87351] = 6, + anon_sym_RBRACE, + [87493] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5644), 1, + ACTIONS(5668), 1, + anon_sym_DOT, + ACTIONS(5670), 1, aux_sym__immediate_decimal_token5, - STATE(2798), 1, + STATE(2801), 1, sym_comment, - ACTIONS(1732), 3, + ACTIONS(1790), 3, sym_identifier, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1730), 11, + ACTIONS(1788), 11, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -216350,22 +216725,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [87382] = 8, - ACTIONS(3), 1, + [87524] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, - ACTIONS(5550), 1, - anon_sym_or2, - STATE(2736), 1, - aux_sym__repeat_newline, - STATE(2799), 1, + ACTIONS(5672), 1, + sym_long_flag_identifier, + ACTIONS(5674), 1, + anon_sym_EQ2, + STATE(2802), 1, sym_comment, - ACTIONS(5646), 11, + STATE(3418), 1, + sym__flag_equals_value, + ACTIONS(4355), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4353), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216376,23 +216751,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, - [87417] = 8, + [87557] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5525), 1, + ACTIONS(5573), 1, anon_sym_xor2, - ACTIONS(5554), 1, + ACTIONS(5678), 1, anon_sym_or2, - STATE(2738), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2800), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5648), 11, + ACTIONS(5676), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216404,18 +216777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87452] = 6, - ACTIONS(103), 1, + [87590] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1784), 1, - sym__space, - ACTIONS(5172), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5650), 1, - anon_sym_DOT, - STATE(2801), 1, + ACTIONS(5567), 1, + anon_sym_and2, + ACTIONS(5575), 1, + anon_sym_xor2, + ACTIONS(5682), 1, + anon_sym_or2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2804), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(5680), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216428,15 +216803,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, - [87483] = 4, + [87623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(2738), 1, aux_sym__repeat_newline, - STATE(2802), 1, + STATE(2805), 1, sym_comment, - ACTIONS(5652), 15, + ACTIONS(5684), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216452,14 +216826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87510] = 4, + [87650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(2739), 1, aux_sym__repeat_newline, - STATE(2803), 1, + STATE(2806), 1, sym_comment, - ACTIONS(5654), 15, + ACTIONS(5686), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216475,17 +216849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87537] = 5, + [87677] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5558), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5688), 1, + sym__newline, + STATE(2742), 1, aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2807), 1, sym_comment, - ACTIONS(5652), 14, - sym__newline, + ACTIONS(5684), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216499,17 +216874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87566] = 5, + [87708] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5563), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5691), 1, + sym__newline, + STATE(2743), 1, aux_sym__repeat_newline, - STATE(2805), 1, + STATE(2808), 1, sym_comment, - ACTIONS(5654), 14, - sym__newline, + ACTIONS(5686), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216523,19 +216899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87595] = 6, + [87739] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5564), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(503), 1, + STATE(2746), 1, aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2809), 1, sym_comment, - ACTIONS(5652), 13, - sym__newline, + ACTIONS(5684), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216548,19 +216925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87626] = 6, + [87772] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(5571), 1, anon_sym_xor2, - STATE(503), 1, + STATE(2747), 1, aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2810), 1, sym_comment, - ACTIONS(5654), 13, - sym__newline, + ACTIONS(5686), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216573,14 +216951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87657] = 4, + [87805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(2756), 1, aux_sym__repeat_newline, - STATE(2808), 1, + STATE(2811), 1, sym_comment, - ACTIONS(5656), 15, + ACTIONS(5694), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216596,39 +216974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87684] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5658), 1, - anon_sym_DOT, - ACTIONS(5660), 1, - aux_sym__immediate_decimal_token5, - STATE(2809), 1, - sym_comment, - ACTIONS(1786), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1784), 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, - [87715] = 4, + [87832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(2757), 1, aux_sym__repeat_newline, - STATE(2810), 1, + STATE(2812), 1, sym_comment, - ACTIONS(5662), 15, + ACTIONS(5696), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216644,17 +216997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87742] = 5, + [87859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5558), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5698), 1, + sym__newline, + STATE(2760), 1, aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2813), 1, sym_comment, - ACTIONS(5656), 14, - sym__newline, + ACTIONS(5694), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216668,17 +217022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87771] = 5, + [87890] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5563), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5701), 1, + sym__newline, + STATE(2761), 1, aux_sym__repeat_newline, - STATE(2812), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5662), 14, - sym__newline, + ACTIONS(5696), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216692,19 +217047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87800] = 6, + [87921] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5564), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(503), 1, + STATE(2764), 1, aux_sym__repeat_newline, - STATE(2813), 1, + STATE(2815), 1, sym_comment, - ACTIONS(5656), 13, - sym__newline, + ACTIONS(5694), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216717,19 +217073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87831] = 6, + [87954] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(5571), 1, anon_sym_xor2, - STATE(503), 1, + STATE(2765), 1, aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2816), 1, sym_comment, - ACTIONS(5662), 13, - sym__newline, + ACTIONS(5696), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216742,15 +217099,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87862] = 4, + [87987] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, + ACTIONS(5706), 1, + anon_sym_or2, + STATE(2803), 1, aux_sym__repeat_newline, - STATE(2815), 1, + STATE(2817), 1, sym_comment, - ACTIONS(5664), 15, - sym__newline, + ACTIONS(5704), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216762,21 +217126,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, - [87889] = 6, + [88022] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5666), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2754), 1, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5571), 1, + anon_sym_xor2, + ACTIONS(5710), 1, + anon_sym_or2, + STATE(2804), 1, aux_sym__repeat_newline, - STATE(2816), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5636), 13, + ACTIONS(5708), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216788,20 +217153,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, - [87920] = 6, + [88057] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5669), 1, - sym__newline, - STATE(2755), 1, + ACTIONS(5573), 1, + anon_sym_xor2, + ACTIONS(5678), 1, + anon_sym_or2, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2817), 1, + STATE(2819), 1, sym_comment, - ACTIONS(5638), 13, + ACTIONS(5712), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216813,18 +217179,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, - [87951] = 5, + [88090] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2818), 1, + ACTIONS(5714), 1, + anon_sym_EQ, + ACTIONS(5716), 1, + anon_sym_COLON, + STATE(2820), 1, sym_comment, - ACTIONS(5640), 14, + STATE(3345), 1, + sym_param_type, + STATE(4930), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216836,21 +217204,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, + [88123] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + anon_sym_and2, + ACTIONS(5575), 1, anon_sym_xor2, + ACTIONS(5682), 1, anon_sym_or2, - [87980] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_EQ2, - ACTIONS(5672), 1, - sym__space, - STATE(2819), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2821), 1, sym_comment, - STATE(3043), 1, - aux_sym_attribute_repeat1, - ACTIONS(5478), 13, + ACTIONS(5718), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216863,15 +217231,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, - [88011] = 3, - ACTIONS(3), 1, + [88156] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2820), 1, + ACTIONS(5674), 1, + anon_sym_EQ2, + ACTIONS(5720), 1, + sym_short_flag_identifier, + STATE(2822), 1, sym_comment, - ACTIONS(5674), 16, - anon_sym_EQ, - anon_sym_in, + STATE(3332), 1, + sym__flag_equals_value, + ACTIONS(5495), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5493), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216883,23 +217257,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, - [88036] = 7, - ACTIONS(3), 1, + [88189] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5630), 1, - anon_sym_COLON, - ACTIONS(5676), 1, - anon_sym_EQ, - STATE(2821), 1, + ACTIONS(5722), 1, + anon_sym_DOT_DOT2, + STATE(2823), 1, sym_comment, - STATE(3297), 1, - sym_param_type, - STATE(4674), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 12, + ACTIONS(1738), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216911,15 +217282,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, - [88069] = 3, - ACTIONS(3), 1, + [88220] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2822), 1, + ACTIONS(5722), 1, + anon_sym_DOT_DOT2, + STATE(2824), 1, sym_comment, - ACTIONS(5678), 16, - anon_sym_EQ, - anon_sym_in, + ACTIONS(5501), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5499), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216931,19 +217307,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, - [88094] = 5, - ACTIONS(3), 1, + [88251] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(2823), 1, + ACTIONS(5726), 1, + anon_sym_DOT_DOT2, + STATE(2825), 1, sym_comment, - ACTIONS(5664), 14, + ACTIONS(2154), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5728), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216955,23 +217332,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_xor2, - anon_sym_or2, - [88123] = 7, - ACTIONS(3), 1, + [88282] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, - STATE(2756), 1, - aux_sym__repeat_newline, - STATE(2824), 1, + ACTIONS(5730), 1, + anon_sym_DOT_DOT2, + STATE(2826), 1, sym_comment, - ACTIONS(5636), 12, + ACTIONS(2166), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5732), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2168), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216982,20 +217357,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, - [88156] = 6, - ACTIONS(103), 1, + [88313] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(2574), 1, - sym__space, - STATE(2825), 1, + ACTIONS(5734), 1, + anon_sym_DOT_DOT2, + STATE(2827), 1, sym_comment, - ACTIONS(2576), 13, + ACTIONS(2174), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5736), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2176), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217007,20 +217382,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, - [88187] = 6, - ACTIONS(3), 1, + [88344] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5682), 1, - anon_sym_and2, - ACTIONS(5684), 1, - anon_sym_xor2, - ACTIONS(5686), 1, - anon_sym_or2, - STATE(2826), 1, + ACTIONS(5738), 1, + anon_sym_DOT_DOT2, + STATE(2828), 1, sym_comment, - ACTIONS(5680), 13, + ACTIONS(2186), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5740), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2188), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217032,22 +217407,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, - [88218] = 7, + [88375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, - STATE(2786), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2827), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5688), 12, + ACTIONS(5742), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217059,13 +217427,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, - [88251] = 3, + [88402] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2828), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2830), 1, sym_comment, - ACTIONS(4764), 16, + ACTIONS(5744), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217078,24 +217450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88276] = 7, + [88429] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - STATE(2757), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2829), 1, + STATE(2831), 1, sym_comment, - ACTIONS(5638), 12, + ACTIONS(5742), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217107,19 +217475,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, - [88309] = 6, - ACTIONS(103), 1, + [88458] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__space, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(2830), 1, + ACTIONS(5567), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2832), 1, sym_comment, - ACTIONS(1955), 13, + ACTIONS(5744), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217132,16 +217499,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, - [88340] = 3, + anon_sym_xor2, + anon_sym_or2, + [88487] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(5565), 1, + anon_sym_and2, + ACTIONS(5573), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2833), 1, sym_comment, - ACTIONS(5690), 16, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + ACTIONS(5742), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217154,22 +217525,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, - [88365] = 7, + anon_sym_or2, + [88518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1364), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2832), 1, + ACTIONS(5567), 1, + anon_sym_and2, + ACTIONS(5575), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2834), 1, sym_comment, - ACTIONS(5379), 12, - ts_builtin_sym_end, + ACTIONS(5744), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217181,18 +217549,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, - [88398] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [88549] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(2223), 1, - sym__space, - STATE(2833), 1, + STATE(2835), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2225), 13, + STATE(2886), 1, + aux_sym__repeat_newline, + ACTIONS(5746), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217205,19 +217571,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, - [88429] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88576] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5692), 1, - aux_sym__immediate_decimal_token5, - STATE(2834), 1, + ACTIONS(1864), 1, + sym__unquoted_pattern, + STATE(2836), 1, sym_comment, - ACTIONS(1832), 3, + ACTIONS(914), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1834), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217229,19 +217594,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, - sym__unquoted_pattern, - [88458] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88603] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5696), 1, - sym__space, - STATE(2835), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2837), 1, sym_comment, - STATE(5054), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5694), 13, + ACTIONS(5748), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88630] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + anon_sym_DOT2, + STATE(737), 1, + sym_path, + STATE(1294), 1, + sym_cell_path, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2838), 1, + sym_comment, + ACTIONS(5427), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217253,20 +217646,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, - [88489] = 6, + [88663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - anon_sym_and2, - ACTIONS(5564), 1, - anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2836), 1, + STATE(2839), 1, sym_comment, - ACTIONS(5640), 13, + ACTIONS(5750), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217279,181 +217666,71 @@ static 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, - [88520] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2837), 1, - sym_comment, - STATE(2998), 1, - sym_cell_path, - ACTIONS(1872), 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, - [88555] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2838), 1, - sym_comment, - STATE(3170), 1, - sym_cell_path, - ACTIONS(1889), 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, - [88590] = 8, + [88690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2839), 1, - sym_comment, - STATE(2936), 1, - sym_cell_path, - ACTIONS(1893), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5752), 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, - [88625] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1903), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, STATE(2840), 1, sym_comment, - STATE(3180), 1, - sym_cell_path, - ACTIONS(1901), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(2888), 1, + aux_sym__repeat_newline, + ACTIONS(5746), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [88660] = 8, + anon_sym_xor2, + anon_sym_or2, + [88721] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2841), 1, - sym_comment, - STATE(2946), 1, - sym_cell_path, - ACTIONS(1866), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5755), 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, - [88695] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1887), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2842), 1, + STATE(2841), 1, sym_comment, - STATE(3026), 1, - sym_cell_path, - ACTIONS(1885), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(2889), 1, + aux_sym__repeat_newline, + ACTIONS(5758), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [88730] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [88752] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2584), 1, - sym__space, - ACTIONS(2588), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(2843), 1, + ACTIONS(2369), 1, + sym__space, + STATE(2842), 1, sym_comment, - ACTIONS(2586), 13, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217467,18 +217744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88761] = 6, - ACTIONS(3), 1, + [88783] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5698), 1, - anon_sym_COLON, - STATE(2844), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(2142), 1, + sym__space, + STATE(2843), 1, sym_comment, - STATE(3355), 1, - sym_param_type, - STATE(4921), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 13, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2144), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217492,18 +217769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88792] = 6, + [88814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5574), 1, - anon_sym_xor2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(2845), 1, + STATE(2844), 1, sym_comment, - ACTIONS(5664), 13, + ACTIONS(5748), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217516,16 +217791,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, - [88823] = 3, - ACTIONS(3), 1, + [88843] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2846), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(2269), 1, + sym__space, + STATE(2845), 1, sym_comment, - ACTIONS(5700), 16, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2271), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217539,18 +217818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88848] = 6, - ACTIONS(103), 1, + [88874] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2590), 1, - sym__space, - ACTIONS(2594), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2847), 1, + ACTIONS(2281), 1, + sym__space, + STATE(2846), 1, sym_comment, - ACTIONS(2592), 13, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2283), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217564,14 +217843,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88879] = 4, + [88905] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2760), 1, + ACTIONS(5257), 1, + anon_sym_DOT2, + ACTIONS(5760), 1, + anon_sym_DASH2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2847), 1, + sym_comment, + STATE(2912), 1, + sym_path, + STATE(3005), 1, + sym_cell_path, + ACTIONS(5427), 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, + [88940] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + anon_sym_and2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2848), 1, sym_comment, - ACTIONS(5702), 15, + ACTIONS(5750), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217584,16 +217892,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, - [88906] = 3, + [88969] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, STATE(2849), 1, sym_comment, - ACTIONS(5227), 16, - sym__newline, + STATE(2891), 1, + aux_sym__repeat_newline, + ACTIONS(5746), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217605,19 +217919,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, - [88931] = 4, + [89002] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, - aux_sym__repeat_newline, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5571), 1, + anon_sym_xor2, STATE(2850), 1, sym_comment, - ACTIONS(5704), 15, - sym__newline, + STATE(2892), 1, + aux_sym__repeat_newline, + ACTIONS(5758), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217629,15 +217945,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, - [88958] = 3, + [89035] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5565), 1, + anon_sym_and2, + ACTIONS(5573), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2851), 1, sym_comment, - ACTIONS(5381), 16, + ACTIONS(5748), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217650,16 +217970,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, - [88983] = 3, + [89066] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + anon_sym_and2, + ACTIONS(5575), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2852), 1, sym_comment, - ACTIONS(5227), 16, + ACTIONS(5750), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217672,19 +217995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [89008] = 4, - ACTIONS(103), 1, + [89097] = 4, + ACTIONS(3), 1, anon_sym_POUND, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2853), 1, sym_comment, - ACTIONS(2570), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2572), 14, + ACTIONS(5762), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217697,14 +218016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [89035] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89124] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2854), 1, sym_comment, - ACTIONS(5381), 16, + ACTIONS(5764), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217717,16 +218039,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, - [89060] = 3, + [89151] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5565), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2855), 1, sym_comment, - ACTIONS(5227), 16, + ACTIONS(5762), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217739,22 +218064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89085] = 6, - ACTIONS(103), 1, + [89180] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2598), 1, - sym__space, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern, + ACTIONS(5567), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2856), 1, sym_comment, - ACTIONS(2600), 13, + ACTIONS(5764), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217767,13 +218088,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, - [89116] = 3, + anon_sym_xor2, + anon_sym_or2, + [89209] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5565), 1, + anon_sym_and2, + ACTIONS(5573), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2857), 1, sym_comment, - ACTIONS(5381), 16, + ACTIONS(5762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217786,16 +218114,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, - [89141] = 3, + [89240] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + anon_sym_and2, + ACTIONS(5575), 1, + anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2858), 1, sym_comment, - ACTIONS(5706), 16, + ACTIONS(5764), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217808,16 +218139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [89166] = 3, + [89271] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2859), 1, sym_comment, - ACTIONS(5708), 16, + STATE(2893), 1, + aux_sym__repeat_newline, + ACTIONS(5766), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217830,18 +218160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89191] = 4, + [89298] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5682), 1, - anon_sym_and2, STATE(2860), 1, sym_comment, - ACTIONS(5706), 15, + STATE(2894), 1, + aux_sym__repeat_newline, + ACTIONS(5768), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217854,17 +218183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89218] = 4, + [89325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, - anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2861), 1, sym_comment, - ACTIONS(5708), 15, + ACTIONS(5770), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217877,19 +218206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89245] = 5, + [89352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5682), 1, - anon_sym_and2, - ACTIONS(5684), 1, - anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2862), 1, sym_comment, - ACTIONS(5706), 14, + ACTIONS(5772), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217902,19 +218229,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, - [89274] = 5, + [89379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5712), 1, - anon_sym_xor2, + ACTIONS(5774), 1, + sym__newline, STATE(2863), 1, sym_comment, - ACTIONS(5708), 14, - sym__newline, + STATE(2895), 1, + aux_sym__repeat_newline, + ACTIONS(5766), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217926,15 +218255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [89303] = 3, + [89410] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5777), 1, + sym__newline, STATE(2864), 1, sym_comment, - ACTIONS(5714), 16, - sym__newline, + STATE(2896), 1, + aux_sym__repeat_newline, + ACTIONS(5768), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217946,16 +218280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89328] = 3, + [89441] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5565), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2865), 1, sym_comment, - ACTIONS(5716), 16, + ACTIONS(5770), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217968,18 +218304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89353] = 4, + [89470] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5682), 1, + ACTIONS(5567), 1, anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2866), 1, sym_comment, - ACTIONS(5714), 15, + ACTIONS(5772), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217992,18 +218328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [89380] = 4, + [89499] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, STATE(2867), 1, sym_comment, - ACTIONS(5716), 15, - sym__newline, + STATE(2897), 1, + aux_sym__repeat_newline, + ACTIONS(5766), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218015,19 +218355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, anon_sym_or2, - [89407] = 5, + [89532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5682), 1, - anon_sym_and2, - ACTIONS(5684), 1, - anon_sym_xor2, STATE(2868), 1, sym_comment, - ACTIONS(5714), 14, + ACTIONS(5780), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218039,20 +218375,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, - anon_sym_or2, - [89436] = 5, + [89557] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_and2, - ACTIONS(5712), 1, + ACTIONS(5571), 1, anon_sym_xor2, STATE(2869), 1, sym_comment, - ACTIONS(5716), 14, - sym__newline, + STATE(2898), 1, + aux_sym__repeat_newline, + ACTIONS(5768), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218064,22 +218403,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_or2, - [89465] = 7, + [89590] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5564), 1, + ACTIONS(5573), 1, anon_sym_xor2, - ACTIONS(5566), 1, - anon_sym_or2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2870), 1, sym_comment, - ACTIONS(5718), 12, + ACTIONS(5770), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218092,20 +218428,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89498] = 7, + anon_sym_or2, + [89621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5567), 1, anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(5575), 1, anon_sym_xor2, - ACTIONS(5576), 1, - anon_sym_or2, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2871), 1, sym_comment, - ACTIONS(5720), 12, + ACTIONS(5772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218118,139 +218453,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89531] = 4, + anon_sym_or2, + [89652] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2797), 1, - aux_sym__repeat_newline, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2872), 1, sym_comment, - ACTIONS(5722), 15, + STATE(2912), 1, + sym_path, + STATE(3005), 1, + sym_cell_path, + ACTIONS(1880), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89558] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89687] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2815), 1, - aux_sym__repeat_newline, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2873), 1, sym_comment, - ACTIONS(5724), 15, + STATE(2912), 1, + sym_path, + STATE(3205), 1, + sym_cell_path, + ACTIONS(1905), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89585] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89722] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5726), 1, - sym__newline, - STATE(2818), 1, - aux_sym__repeat_newline, + ACTIONS(1911), 1, + anon_sym_DASH2, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2874), 1, sym_comment, - ACTIONS(5722), 13, - anon_sym_SEMI, + STATE(2912), 1, + sym_path, + STATE(3006), 1, + sym_cell_path, + ACTIONS(1909), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [89616] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89757] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5729), 1, + ACTIONS(1927), 1, + anon_sym_DASH2, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2875), 1, + sym_comment, + STATE(2912), 1, + sym_path, + STATE(3210), 1, + sym_cell_path, + ACTIONS(1925), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2823), 1, - aux_sym__repeat_newline, - STATE(2875), 1, - sym_comment, - ACTIONS(5724), 13, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [89647] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89792] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5732), 1, - sym__newline, - STATE(2764), 1, - aux_sym__repeat_newline, + ACTIONS(1919), 1, + anon_sym_DASH2, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2876), 1, sym_comment, - ACTIONS(5702), 13, - anon_sym_SEMI, + STATE(2912), 1, + sym_path, + STATE(3012), 1, + sym_cell_path, + ACTIONS(1917), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [89678] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89827] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5735), 1, - sym__newline, - STATE(2765), 1, - aux_sym__repeat_newline, + ACTIONS(1903), 1, + anon_sym_DASH2, + ACTIONS(5257), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2877), 1, sym_comment, - ACTIONS(5704), 13, + STATE(2912), 1, + sym_path, + STATE(3019), 1, + sym_cell_path, + ACTIONS(1901), 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, + [89862] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2878), 1, + sym_comment, + ACTIONS(1669), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1671), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218261,23 +218638,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, - [89709] = 7, + anon_sym_DOT_DOT2, + [89889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, - STATE(2836), 1, - aux_sym__repeat_newline, - STATE(2878), 1, + ACTIONS(5782), 1, + anon_sym_QMARK2, + STATE(2879), 1, sym_comment, - ACTIONS(5722), 12, + ACTIONS(1462), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218288,22 +218660,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_or2, - [89742] = 7, + anon_sym_COLON, + anon_sym_DOT2, + [89916] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - STATE(2845), 1, - aux_sym__repeat_newline, - STATE(2879), 1, + ACTIONS(5716), 1, + anon_sym_COLON, + ACTIONS(5784), 1, + anon_sym_EQ, + STATE(2880), 1, sym_comment, - ACTIONS(5724), 12, + STATE(3329), 1, + sym_param_type, + STATE(4930), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218315,48 +218688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [89775] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_DOT2, - ACTIONS(5738), 1, - anon_sym_DASH2, - STATE(2604), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, - sym_path, - STATE(2880), 1, - sym_comment, - STATE(2998), 1, - sym_cell_path, - ACTIONS(5379), 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, - [89810] = 7, + [89949] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(5546), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5548), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2768), 1, + ACTIONS(5706), 1, + anon_sym_or2, + STATE(2819), 1, aux_sym__repeat_newline, STATE(2881), 1, sym_comment, - ACTIONS(5702), 12, + ACTIONS(5786), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218368,21 +218715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [89843] = 7, - ACTIONS(3), 1, + [89984] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - STATE(2769), 1, - aux_sym__repeat_newline, STATE(2882), 1, sym_comment, - ACTIONS(5704), 12, + ACTIONS(1872), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1874), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218393,17 +218737,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_or2, - [89876] = 4, + anon_sym_DOT_DOT2, + [90011] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2770), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_and2, + ACTIONS(5571), 1, + anon_sym_xor2, + ACTIONS(5710), 1, + anon_sym_or2, + STATE(2821), 1, aux_sym__repeat_newline, STATE(2883), 1, sym_comment, - ACTIONS(5740), 15, - sym__newline, + ACTIONS(5788), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218415,17 +218765,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, - [89903] = 4, - ACTIONS(3), 1, + [90046] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2771), 1, - aux_sym__repeat_newline, STATE(2884), 1, sym_comment, - ACTIONS(5742), 15, + ACTIONS(1913), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1915), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218437,18 +218787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89930] = 4, + anon_sym_DOT_DOT2, + [90073] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5782), 1, + anon_sym_BANG, STATE(2885), 1, sym_comment, - ACTIONS(5744), 15, + ACTIONS(1462), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218460,18 +218809,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, - [89957] = 4, + anon_sym_COLON, + anon_sym_DOT2, + [90100] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2885), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2886), 1, sym_comment, - ACTIONS(5746), 15, + ACTIONS(5790), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218487,14 +218834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89984] = 4, + [90127] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2887), 1, sym_comment, - STATE(2893), 1, - aux_sym__repeat_newline, - ACTIONS(5748), 15, + ACTIONS(5792), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218510,21 +218857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90011] = 7, - ACTIONS(103), 1, + [90154] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5750), 1, - sym_long_flag_identifier, - ACTIONS(5752), 1, - anon_sym_EQ2, + ACTIONS(5565), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2888), 1, sym_comment, - STATE(3382), 1, - sym__flag_equals_value, - ACTIONS(4290), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4288), 11, + ACTIONS(5790), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218536,18 +218878,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, - [90044] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [90183] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, + ACTIONS(5567), 1, anon_sym_and2, - ACTIONS(5754), 1, - sym__newline, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2889), 1, sym_comment, - STATE(2898), 1, - aux_sym__repeat_newline, - ACTIONS(5746), 13, + ACTIONS(5792), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218561,18 +218905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [90075] = 6, - ACTIONS(3), 1, + [90212] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5757), 1, - sym__newline, STATE(2890), 1, sym_comment, - STATE(2900), 1, - aux_sym__repeat_newline, - ACTIONS(5748), 13, + ACTIONS(1933), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1935), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218583,23 +218927,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_xor2, - anon_sym_or2, - [90106] = 7, + anon_sym_DOT_DOT2, + [90239] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5548), 1, + ACTIONS(5573), 1, anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2891), 1, sym_comment, - STATE(2904), 1, - aux_sym__repeat_newline, - ACTIONS(5746), 12, + ACTIONS(5790), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218612,20 +218953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [90139] = 7, + [90270] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, + ACTIONS(5567), 1, anon_sym_and2, - ACTIONS(5525), 1, + ACTIONS(5575), 1, anon_sym_xor2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2892), 1, sym_comment, - STATE(2905), 1, - aux_sym__repeat_newline, - ACTIONS(5748), 12, + ACTIONS(5792), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218638,14 +218978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [90172] = 4, + [90301] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2893), 1, sym_comment, - ACTIONS(5760), 15, + ACTIONS(5794), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218661,21 +219001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90199] = 7, + [90328] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5762), 1, - anon_sym_EQ, - ACTIONS(5764), 1, - anon_sym_COLON, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2894), 1, sym_comment, - STATE(3387), 1, - sym_param_type, - STATE(4790), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 12, - ts_builtin_sym_end, + ACTIONS(5796), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218687,20 +219020,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, - [90232] = 7, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90355] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5630), 1, - anon_sym_COLON, - ACTIONS(5766), 1, - anon_sym_EQ, + ACTIONS(5565), 1, + anon_sym_and2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(2895), 1, sym_comment, - STATE(3380), 1, - sym_param_type, - STATE(4674), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 12, + ACTIONS(5794), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218713,18 +219046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90265] = 6, + anon_sym_xor2, + anon_sym_or2, + [90384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5546), 1, + ACTIONS(5567), 1, anon_sym_and2, - ACTIONS(5768), 1, - sym__newline, - STATE(2772), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(2896), 1, sym_comment, - ACTIONS(5740), 13, + ACTIONS(5796), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218738,18 +219072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [90296] = 6, + [90413] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5565), 1, anon_sym_and2, - ACTIONS(5771), 1, - sym__newline, - STATE(2773), 1, + ACTIONS(5573), 1, + anon_sym_xor2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2897), 1, sym_comment, - ACTIONS(5742), 13, + ACTIONS(5794), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218761,18 +219096,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, - [90327] = 5, + [90444] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(5567), 1, anon_sym_and2, - STATE(503), 1, + ACTIONS(5575), 1, + anon_sym_xor2, + STATE(501), 1, aux_sym__repeat_newline, STATE(2898), 1, sym_comment, - ACTIONS(5744), 14, + ACTIONS(5796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218785,20 +219121,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, - [90356] = 6, - ACTIONS(103), 1, + [90475] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_EQ2, - ACTIONS(5776), 1, + ACTIONS(1738), 1, sym__space, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, STATE(2899), 1, sym_comment, - STATE(3224), 1, - sym__flag_equals_value, - ACTIONS(5774), 13, + ACTIONS(1616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218812,16 +219147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90387] = 5, - ACTIONS(3), 1, + [90506] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5452), 1, + aux_sym__immediate_decimal_token5, STATE(2900), 1, sym_comment, - ACTIONS(5760), 14, + ACTIONS(1788), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1790), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218833,23 +219170,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_xor2, - anon_sym_or2, - [90416] = 7, - ACTIONS(3), 1, + sym__unquoted_pattern, + [90535] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5548), 1, - anon_sym_xor2, - STATE(2774), 1, - aux_sym__repeat_newline, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2104), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_LPAREN2, STATE(2901), 1, sym_comment, - ACTIONS(5740), 12, + ACTIONS(2106), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218861,21 +219195,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, - [90449] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90566] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5525), 1, - anon_sym_xor2, - STATE(2775), 1, - aux_sym__repeat_newline, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(2696), 1, + sym__space, STATE(2902), 1, sym_comment, - ACTIONS(5742), 12, + ACTIONS(2698), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218887,19 +219220,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, - [90482] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [90597] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(2114), 1, sym__space, - ACTIONS(5458), 1, - anon_sym_EQ2, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, STATE(2903), 1, sym_comment, - STATE(3176), 1, - sym__flag_equals_value, - ACTIONS(4410), 13, + ACTIONS(2116), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218913,18 +219246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90513] = 6, - ACTIONS(3), 1, + [90628] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5562), 1, - anon_sym_and2, - ACTIONS(5564), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5798), 1, + aux_sym__immediate_decimal_token5, STATE(2904), 1, sym_comment, - ACTIONS(5744), 13, + ACTIONS(1866), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1868), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218936,20 +219269,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_or2, - [90544] = 6, + sym__unquoted_pattern, + [90657] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_and2, - ACTIONS(5574), 1, - anon_sym_xor2, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5716), 1, + anon_sym_COLON, + ACTIONS(5800), 1, + anon_sym_EQ, STATE(2905), 1, sym_comment, - ACTIONS(5760), 13, + STATE(3350), 1, + sym_param_type, + STATE(4930), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218962,19 +219296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [90575] = 6, - ACTIONS(103), 1, + [90690] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1216), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2660), 1, sym__space, - ACTIONS(2606), 1, + ACTIONS(2718), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, STATE(2906), 1, sym_comment, - ACTIONS(1218), 13, + ACTIONS(2662), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218988,18 +219321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90606] = 6, - ACTIONS(103), 1, + [90721] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1234), 1, + ACTIONS(2676), 1, sym__space, - ACTIONS(2606), 1, + ACTIONS(2684), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2686), 1, sym__unquoted_pattern, STATE(2907), 1, sym_comment, - ACTIONS(1226), 13, + ACTIONS(2678), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219013,17 +219346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90637] = 4, - ACTIONS(103), 1, + [90752] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_EQ2, + ACTIONS(5804), 1, + sym__space, STATE(2908), 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, + STATE(3223), 1, + sym__flag_equals_value, + ACTIONS(5802), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219035,15 +219369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [90664] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90783] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2778), 1, - aux_sym__repeat_newline, STATE(2909), 1, sym_comment, - ACTIONS(5688), 15, + ACTIONS(2576), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2578), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219056,24 +219392,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, - [90691] = 7, - ACTIONS(103), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [90810] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_EQ2, - ACTIONS(5778), 1, - sym_short_flag_identifier, + ACTIONS(2604), 1, + sym__space, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern, STATE(2910), 1, sym_comment, - STATE(3295), 1, - sym__flag_equals_value, - ACTIONS(5486), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5484), 11, + ACTIONS(2606), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219085,20 +219417,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, - [90724] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90841] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5540), 1, - anon_sym_DOT_DOT2, + ACTIONS(4462), 1, + sym__space, + ACTIONS(5480), 1, + anon_sym_EQ2, STATE(2911), 1, sym_comment, - ACTIONS(5492), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5542), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5490), 11, + STATE(3058), 1, + sym__flag_equals_value, + ACTIONS(4460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219110,41 +219442,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, - [90755] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, - aux_sym__repeat_newline, STATE(2912), 1, sym_comment, - ACTIONS(5521), 15, + ACTIONS(1555), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1557), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [90782] = 6, - ACTIONS(3), 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, + [90899] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5546), 1, - anon_sym_and2, - ACTIONS(5780), 1, - sym__newline, - STATE(2782), 1, - aux_sym__repeat_newline, + ACTIONS(1258), 1, + sym__space, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(2913), 1, sym_comment, - ACTIONS(5688), 13, + ACTIONS(1242), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219156,20 +219491,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, - [90813] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90930] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_and2, - ACTIONS(5783), 1, - sym__newline, - STATE(2783), 1, - aux_sym__repeat_newline, + ACTIONS(1250), 1, + sym__space, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(2914), 1, sym_comment, - ACTIONS(5521), 13, + ACTIONS(1234), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219181,19 +219516,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, - [90844] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90961] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5634), 1, - anon_sym_AT2, STATE(2915), 1, sym_comment, - STATE(3222), 1, - sym_param_completer, - ACTIONS(5786), 14, - anon_sym_EQ, + ACTIONS(1602), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1600), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219205,19 +219539,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, - [90873] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [90988] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5634), 1, - anon_sym_AT2, STATE(2916), 1, sym_comment, - STATE(3228), 1, - sym_param_completer, - ACTIONS(5788), 14, - anon_sym_EQ, + ACTIONS(1774), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1776), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219231,16 +219562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90902] = 5, + sym__unquoted_pattern, + [91015] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5634), 1, + ACTIONS(5541), 1, anon_sym_AT2, STATE(2917), 1, sym_comment, - STATE(3230), 1, + STATE(3156), 1, sym_param_completer, - ACTIONS(5788), 14, + ACTIONS(5806), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -219255,18 +219587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90931] = 6, + [91044] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, - anon_sym_and2, - ACTIONS(5712), 1, - anon_sym_xor2, - ACTIONS(5792), 1, - anon_sym_or2, + ACTIONS(5541), 1, + anon_sym_AT2, STATE(2918), 1, sym_comment, - ACTIONS(5790), 13, + STATE(3232), 1, + sym_param_completer, + ACTIONS(5539), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219280,15 +219611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90962] = 4, + [91073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - anon_sym_and2, + ACTIONS(5541), 1, + anon_sym_AT2, STATE(2919), 1, sym_comment, - ACTIONS(5716), 14, - ts_builtin_sym_end, + STATE(3061), 1, + sym_param_completer, + ACTIONS(5808), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219300,15 +219633,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, - [90988] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91102] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5462), 1, + anon_sym_EQ2, + ACTIONS(5810), 1, + sym__space, STATE(2920), 1, sym_comment, - ACTIONS(5716), 15, - ts_builtin_sym_end, + STATE(3037), 1, + aux_sym_attribute_repeat1, + ACTIONS(5458), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219320,18 +219658,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, - [91012] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_and2, + STATE(2887), 1, + aux_sym__repeat_newline, STATE(2921), 1, sym_comment, - ACTIONS(5714), 14, - ts_builtin_sym_end, + ACTIONS(5758), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219343,21 +219679,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, - [91038] = 6, - ACTIONS(103), 1, + [91160] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, + ACTIONS(5812), 1, + anon_sym_and2, + ACTIONS(5814), 1, + anon_sym_xor2, STATE(2922), 1, sym_comment, - ACTIONS(2574), 2, + ACTIONS(5652), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2576), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219369,18 +219705,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, - [91068] = 5, - ACTIONS(3), 1, + anon_sym_or2, + [91188] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_and2, - ACTIONS(5798), 1, - anon_sym_xor2, + ACTIONS(5265), 1, + anon_sym_EQ2, STATE(2923), 1, sym_comment, - ACTIONS(5714), 13, - ts_builtin_sym_end, + ACTIONS(5816), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219391,18 +219726,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, - [91096] = 5, + anon_sym_RBRACE, + anon_sym_COLON2, + [91214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - anon_sym_and2, - ACTIONS(5800), 1, - anon_sym_xor2, + ACTIONS(5818), 1, + anon_sym_AT2, STATE(2924), 1, sym_comment, - ACTIONS(5716), 13, + STATE(3394), 1, + sym_param_completer, + ACTIONS(5539), 13, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219414,20 +219751,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, - [91124] = 6, - ACTIONS(103), 1, + [91242] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5752), 1, + ACTIONS(5674), 1, anon_sym_EQ2, STATE(2925), 1, sym_comment, - STATE(3389), 1, + STATE(3395), 1, sym__flag_equals_value, - ACTIONS(5776), 2, + ACTIONS(4462), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5774), 11, + ACTIONS(4460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219439,22 +219775,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, - [91154] = 7, - ACTIONS(3), 1, + [91272] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5802), 1, - sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2108), 1, + anon_sym_LPAREN2, STATE(2926), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(5805), 3, + ACTIONS(2104), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2106), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219464,44 +219799,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, - [91186] = 6, + [91302] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2259), 1, - anon_sym_DASH2, - ACTIONS(5807), 1, - anon_sym_DOT_DOT2, - STATE(2927), 1, - sym_comment, - ACTIONS(5809), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2257), 11, - anon_sym_EQ, + ACTIONS(5820), 1, sym_identifier, + ACTIONS(5822), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5824), 1, anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_DOLLAR, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - [91216] = 7, + ACTIONS(5832), 1, + anon_sym_DASH2, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(2927), 1, + sym_comment, + STATE(3361), 1, + aux_sym_parameter_parens_repeat1, + STATE(3448), 1, + aux_sym__repeat_newline, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [91354] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5811), 1, - anon_sym_catch, - ACTIONS(5813), 1, - anon_sym_finally, - ACTIONS(5815), 1, - sym__newline, + ACTIONS(5818), 1, + anon_sym_AT2, STATE(2928), 1, sym_comment, - STATE(2974), 1, - aux_sym__repeat_newline, - ACTIONS(5818), 11, + STATE(3347), 1, + sym_param_completer, + ACTIONS(5539), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219512,16 +219857,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, - [91248] = 4, - ACTIONS(103), 1, + [91382] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(2929), 1, sym_comment, - ACTIONS(5255), 2, + ACTIONS(1258), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5820), 13, + ACTIONS(1242), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219533,19 +219881,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, - [91274] = 3, - ACTIONS(3), 1, + [91412] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5292), 1, + anon_sym_EQ2, STATE(2930), 1, sym_comment, - ACTIONS(5700), 15, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + ACTIONS(5834), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219556,16 +219901,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, - [91298] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [91438] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(2931), 1, sym_comment, - ACTIONS(1832), 3, + ACTIONS(2576), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1834), 12, + ACTIONS(2578), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219578,18 +219925,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [91324] = 5, + [91464] = 17, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, ACTIONS(5822), 1, - anon_sym_AT2, + sym__newline, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5836), 1, + anon_sym_RBRACK, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, STATE(2932), 1, sym_comment, - STATE(3289), 1, - sym_param_completer, - ACTIONS(5788), 13, + STATE(2954), 1, + aux_sym__repeat_newline, + STATE(3374), 1, + aux_sym_parameter_parens_repeat1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [91516] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5822), 1, + sym__newline, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5838), 1, + anon_sym_RPAREN, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(2933), 1, + sym_comment, + STATE(2955), 1, + aux_sym__repeat_newline, + STATE(3389), 1, + aux_sym_parameter_parens_repeat1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [91568] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(2934), 1, + sym_comment, + ACTIONS(1250), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(1234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219601,18 +220019,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, - [91352] = 5, + [91598] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5822), 1, - anon_sym_AT2, - STATE(2933), 1, + ACTIONS(5840), 1, + anon_sym_and2, + ACTIONS(5842), 1, + anon_sym_xor2, + STATE(2935), 1, sym_comment, - STATE(3305), 1, - sym_param_completer, - ACTIONS(5788), 13, + ACTIONS(5654), 13, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219624,16 +220041,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, - [91380] = 5, - ACTIONS(103), 1, + anon_sym_or2, + [91626] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__space, - STATE(2934), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2936), 1, sym_comment, - STATE(3038), 1, - aux_sym_attribute_repeat1, - ACTIONS(5824), 13, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2369), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219645,18 +220066,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, - [91408] = 4, - ACTIONS(103), 1, + [91656] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2935), 1, - sym_comment, - ACTIONS(5235), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5826), 13, + ACTIONS(5844), 1, + anon_sym_catch, + ACTIONS(5846), 1, + anon_sym_finally, + ACTIONS(5848), 1, sym__newline, + STATE(2937), 1, + sym_comment, + STATE(3029), 1, + aux_sym__repeat_newline, + ACTIONS(5851), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219668,74 +220091,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, - [91434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2670), 1, - anon_sym_DASH2, - STATE(2936), 1, - sym_comment, - ACTIONS(2668), 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, - [91460] = 17, + [91688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5830), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(5832), 1, - anon_sym_PIPE, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2937), 1, - sym_comment, - STATE(3277), 1, - aux_sym_parameter_parens_repeat1, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3577), 1, + ACTIONS(5853), 1, + anon_sym_finally, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3849), 1, - sym_parameter, - [91512] = 4, - ACTIONS(103), 1, - anon_sym_POUND, STATE(2938), 1, sym_comment, - ACTIONS(5330), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5842), 13, - sym__newline, + ACTIONS(1888), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219747,22 +220115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [91538] = 6, + [91718] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5844), 1, - anon_sym_COLON, + ACTIONS(5856), 1, + sym__newline, + STATE(615), 1, + aux_sym__pipe_separator, STATE(2939), 1, sym_comment, - STATE(3453), 1, - sym_param_type, - STATE(4846), 1, + STATE(3624), 1, aux_sym__repeat_newline, - ACTIONS(5628), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5859), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219772,15 +220140,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, - [91568] = 4, - ACTIONS(103), 1, + [91750] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(2940), 1, sym_comment, - ACTIONS(5281), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5846), 13, + ACTIONS(1557), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219792,44 +220159,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91594] = 5, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_DOT2, + [91774] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(5046), 1, - sym__unquoted_pattern, + ACTIONS(5863), 1, + anon_sym_DASH2, + ACTIONS(5865), 1, + anon_sym_DOT_DOT2, STATE(2941), 1, sym_comment, - ACTIONS(785), 13, + ACTIONS(5867), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5861), 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, - [91622] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91804] = 6, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(1796), 1, anon_sym_LPAREN2, STATE(2942), 1, sym_comment, - STATE(5511), 1, + STATE(5283), 1, sym__expr_parenthesized_immediate, - ACTIONS(2207), 2, + ACTIONS(2269), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2209), 11, + ACTIONS(2271), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219841,20 +220209,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, - [91652] = 7, - ACTIONS(103), 1, + [91834] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_EQ2, - ACTIONS(5848), 1, - ts_builtin_sym_end, - ACTIONS(5850), 1, - sym__space, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(2943), 1, sym_comment, - STATE(3242), 1, - aux_sym_attribute_repeat1, - ACTIONS(5478), 11, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2281), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2283), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219866,20 +220233,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, - [91684] = 7, + [91864] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5852), 1, + ACTIONS(5869), 1, anon_sym_catch, - ACTIONS(5855), 1, + ACTIONS(5871), 1, anon_sym_finally, - ACTIONS(5858), 1, + ACTIONS(5873), 1, sym__newline, STATE(2944), 1, sym_comment, - STATE(2951), 1, + STATE(3035), 1, aux_sym__repeat_newline, - ACTIONS(5862), 11, + ACTIONS(5876), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219891,15 +220258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91716] = 3, - ACTIONS(3), 1, + [91896] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5350), 1, + anon_sym_EQ2, STATE(2945), 1, sym_comment, - ACTIONS(1547), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5878), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219910,40 +220278,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_DOT2, - [91740] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [91922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1887), 1, - anon_sym_DASH2, + ACTIONS(5818), 1, + anon_sym_AT2, STATE(2946), 1, sym_comment, - ACTIONS(1885), 14, + STATE(3363), 1, + sym_param_completer, + ACTIONS(5808), 13, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91766] = 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, + [91950] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(2947), 1, sym_comment, - ACTIONS(1919), 3, + ACTIONS(5383), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1921), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219955,65 +220321,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, - sym__unquoted_pattern, - [91792] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91974] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2948), 1, + ACTIONS(5882), 1, + sym__space, + STATE(2948), 2, sym_comment, - ACTIONS(1677), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1675), 13, - anon_sym_EQ, - sym_identifier, + aux_sym_attribute_repeat1, + ACTIONS(5880), 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, - [91818] = 5, + anon_sym_RBRACE, + [92000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_LBRACK2, STATE(2949), 1, sym_comment, - ACTIONS(2342), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2340), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5666), 15, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91846] = 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, + [92024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(5867), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, STATE(2950), 1, sym_comment, - ACTIONS(1878), 12, - anon_sym_catch, + ACTIONS(5267), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220024,20 +220385,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, - [91876] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(5870), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(5840), 1, + anon_sym_and2, + ACTIONS(5842), 1, + anon_sym_xor2, + ACTIONS(5885), 1, + anon_sym_or2, STATE(2951), 1, sym_comment, - ACTIONS(1878), 12, - anon_sym_catch, + ACTIONS(5638), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220048,16 +220412,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, - [91906] = 4, - ACTIONS(103), 1, + [92078] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(2952), 1, sym_comment, - ACTIONS(2116), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2118), 13, + ACTIONS(4784), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220069,66 +220430,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91932] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92102] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5875), 1, - anon_sym_DASH2, - ACTIONS(5877), 1, - anon_sym_DOT_DOT2, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(2953), 1, sym_comment, - ACTIONS(5879), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5873), 11, - anon_sym_EQ, - sym_identifier, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2142), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2144), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [92132] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5822), 1, + sym__newline, + ACTIONS(5826), 1, anon_sym_DOLLAR, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - [91962] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5877), 1, - anon_sym_DOT_DOT2, - ACTIONS(5883), 1, + ACTIONS(5832), 1, anon_sym_DASH2, + ACTIONS(5887), 1, + anon_sym_RBRACK, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, STATE(2954), 1, sym_comment, - ACTIONS(5879), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5881), 11, - anon_sym_EQ, + STATE(3339), 1, + aux_sym_parameter_parens_repeat1, + STATE(3448), 1, + aux_sym__repeat_newline, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [92184] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, sym_identifier, + ACTIONS(5822), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_DOLLAR, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - [91992] = 4, - ACTIONS(103), 1, - anon_sym_POUND, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5889), 1, + anon_sym_RPAREN, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, STATE(2955), 1, sym_comment, - ACTIONS(1730), 3, + STATE(3340), 1, + aux_sym_parameter_parens_repeat1, + STATE(3448), 1, + aux_sym__repeat_newline, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [92236] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(2956), 1, + sym_comment, + ACTIONS(2696), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 12, + ACTIONS(2698), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220140,16 +220551,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, - [92018] = 4, - ACTIONS(103), 1, + [92266] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2956), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2336), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2338), 13, + ACTIONS(5652), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220161,17 +220569,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, - [92044] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92290] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2957), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2958), 1, sym_comment, - ACTIONS(5295), 2, + STATE(5080), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5545), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5885), 13, + ACTIONS(5543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220183,52 +220596,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, - [92070] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(859), 1, - sym_raw_string_begin, - ACTIONS(3161), 1, - anon_sym_DQUOTE, - ACTIONS(3163), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_BQUOTE, - ACTIONS(3167), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3169), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5887), 1, - aux_sym_env_var_token1, - STATE(2958), 1, - sym_comment, - STATE(3135), 1, - sym__inter_single_quotes, - STATE(3139), 1, - sym__inter_double_quotes, - STATE(5073), 2, - sym_val_string, - sym_val_interpolated, - STATE(2476), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [92114] = 6, - ACTIONS(103), 1, + [92320] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5193), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5889), 1, - anon_sym_DOT, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, STATE(2959), 1, sym_comment, - ACTIONS(1784), 2, + ACTIONS(2114), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1786), 11, + ACTIONS(2116), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220240,39 +220620,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, - [92144] = 5, + [92350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5660), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5840), 1, + anon_sym_and2, STATE(2960), 1, sym_comment, - ACTIONS(1786), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1784), 11, - anon_sym_EQ, + ACTIONS(5658), 14, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92172] = 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_xor2, + anon_sym_or2, + [92376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_LT, STATE(2961), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5656), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220284,44 +220660,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_AT2, - [92198] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92400] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5893), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5247), 1, + anon_sym_EQ2, STATE(2962), 1, sym_comment, - ACTIONS(1834), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1832), 11, - anon_sym_EQ, + ACTIONS(5891), 14, sym__newline, - anon_sym_PIPE, - 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, - [92226] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_EQ2, - ACTIONS(5895), 1, - sym__newline, - ACTIONS(5897), 1, sym__space, - STATE(2963), 1, - sym_comment, - STATE(3166), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5899), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220332,21 +220683,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, - [92258] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [92426] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5901), 1, - anon_sym_catch, - ACTIONS(5903), 1, - anon_sym_finally, - ACTIONS(5905), 1, - sym__newline, - STATE(2928), 1, - aux_sym__repeat_newline, - STATE(2964), 1, + ACTIONS(5296), 1, + anon_sym_EQ2, + STATE(2963), 1, sym_comment, - ACTIONS(5908), 11, + ACTIONS(5893), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220357,17 +220705,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, - [92290] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [92452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_LT, - STATE(2965), 1, + STATE(2964), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5658), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220379,17 +220725,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_AT2, - [92316] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92476] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, - STATE(2966), 1, + ACTIONS(885), 1, + sym_raw_string_begin, + ACTIONS(3212), 1, + anon_sym_DQUOTE, + ACTIONS(3214), 1, + anon_sym_SQUOTE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3218), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3220), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5895), 1, + aux_sym_env_var_token1, + STATE(2965), 1, sym_comment, - ACTIONS(5912), 14, + STATE(3179), 1, + sym__inter_single_quotes, + STATE(3180), 1, + sym__inter_double_quotes, + STATE(4946), 2, + sym_val_string, + sym_val_interpolated, + STATE(2503), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [92520] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5897), 1, + anon_sym_catch, + ACTIONS(5899), 1, + anon_sym_finally, + ACTIONS(5901), 1, sym__newline, - sym__space, + STATE(2944), 1, + aux_sym__repeat_newline, + STATE(2966), 1, + sym_comment, + ACTIONS(5904), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220400,18 +220783,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_RBRACE, - anon_sym_COLON2, - [92342] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [92552] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5295), 1, - anon_sym_EQ2, STATE(2967), 1, sym_comment, - ACTIONS(5885), 14, + ACTIONS(5654), 15, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220422,18 +220802,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_RBRACE, - anon_sym_COLON2, - [92368] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92576] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_EQ2, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2718), 1, + anon_sym_LPAREN2, STATE(2968), 1, sym_comment, - ACTIONS(5820), 14, - sym__newline, + ACTIONS(2660), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2662), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220444,49 +220829,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_RBRACE, - anon_sym_COLON2, - [92394] = 17, + [92606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5830), 1, - sym__newline, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(5914), 1, - anon_sym_RBRACK, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, STATE(2969), 1, sym_comment, - STATE(2993), 1, - aux_sym__repeat_newline, - STATE(3315), 1, - aux_sym_parameter_parens_repeat1, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [92446] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2970), 1, - sym_comment, - ACTIONS(1478), 15, + ACTIONS(1563), 15, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -220502,19 +220850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, anon_sym_DOT2, - [92470] = 6, + [92630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5877), 1, + ACTIONS(5865), 1, anon_sym_DOT_DOT2, - ACTIONS(5918), 1, + ACTIONS(5908), 1, anon_sym_DASH2, - STATE(2971), 1, + STATE(2970), 1, sym_comment, - ACTIONS(5879), 2, + ACTIONS(5867), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5916), 11, + ACTIONS(5906), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -220526,20 +220874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92500] = 7, - ACTIONS(3), 1, + [92660] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_catch, - ACTIONS(5922), 1, - anon_sym_finally, - ACTIONS(5924), 1, - sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(2972), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, + STATE(2971), 1, sym_comment, - ACTIONS(5927), 11, + ACTIONS(2676), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2678), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220550,17 +220898,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, - [92532] = 5, - ACTIONS(103), 1, + [92690] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__space, - STATE(2973), 1, + STATE(2972), 1, sym_comment, - STATE(3043), 1, - aux_sym_attribute_repeat1, - ACTIONS(5478), 13, + ACTIONS(1567), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220572,22 +220917,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, - [92560] = 7, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_DOT2, + [92714] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_catch, - ACTIONS(5932), 1, - anon_sym_finally, - ACTIONS(5935), 1, - sym__newline, - STATE(2950), 1, - aux_sym__repeat_newline, - STATE(2974), 1, + ACTIONS(5462), 1, + anon_sym_EQ2, + ACTIONS(5910), 1, + ts_builtin_sym_end, + ACTIONS(5912), 1, + sym__space, + STATE(2973), 1, sym_comment, - ACTIONS(5939), 11, + STATE(3117), 1, + aux_sym_attribute_repeat1, + ACTIONS(5458), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220598,16 +220944,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, - [92592] = 3, - ACTIONS(3), 1, + [92746] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2975), 1, + ACTIONS(5308), 1, + anon_sym_EQ2, + STATE(2974), 1, sym_comment, - ACTIONS(1514), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5914), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220618,20 +220964,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_DOT2, - [92616] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [92772] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5822), 1, - anon_sym_AT2, - STATE(2976), 1, + ACTIONS(2375), 1, + sym__space, + ACTIONS(5916), 1, + anon_sym_LBRACK2, + STATE(2975), 1, sym_comment, - STATE(3309), 1, - sym_param_completer, - ACTIONS(5786), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2377), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220643,76 +220987,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, - [92644] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(1616), 1, + anon_sym_DASH2, + ACTIONS(5865), 1, + anon_sym_DOT_DOT2, + STATE(2976), 1, + sym_comment, + ACTIONS(5867), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1738), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5830), 1, sym__newline, - ACTIONS(5834), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + [92830] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2156), 1, anon_sym_DASH2, - ACTIONS(5942), 1, - anon_sym_PIPE, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2937), 1, - aux_sym__repeat_newline, + ACTIONS(5918), 1, + anon_sym_DOT_DOT2, STATE(2977), 1, sym_comment, - STATE(3326), 1, - aux_sym_parameter_parens_repeat1, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [92696] = 4, - ACTIONS(103), 1, + ACTIONS(5920), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 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, + [92860] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5281), 1, - anon_sym_EQ2, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + ACTIONS(5922), 1, + anon_sym_DOT, STATE(2978), 1, sym_comment, - ACTIONS(5846), 14, + STATE(3866), 1, + sym__immediate_decimal, + ACTIONS(5924), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3942), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1642), 4, + anon_sym_if, 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, - [92722] = 6, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [92900] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, + ACTIONS(5812), 1, + anon_sym_and2, + ACTIONS(5814), 1, + anon_sym_xor2, STATE(2979), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2219), 2, + ACTIONS(5656), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2221), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220724,19 +221088,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, - [92752] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [92928] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, + ACTIONS(5840), 1, + anon_sym_and2, + ACTIONS(5842), 1, + anon_sym_xor2, STATE(2980), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2223), 2, + ACTIONS(5658), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2225), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220748,16 +221111,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, - [92782] = 5, - ACTIONS(103), 1, + anon_sym_or2, + [92956] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2340), 1, - sym__space, - ACTIONS(5944), 1, - anon_sym_LBRACK2, STATE(2981), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(5265), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5816), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220771,17 +221134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92810] = 3, - ACTIONS(3), 1, + [92982] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5462), 1, + anon_sym_EQ2, + ACTIONS(5928), 1, + sym__newline, + ACTIONS(5930), 1, + sym__space, STATE(2982), 1, sym_comment, - ACTIONS(5690), 15, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - sym__newline, + STATE(3129), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5932), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220792,19 +221158,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, - [92834] = 6, + anon_sym_RPAREN, + [93014] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(2168), 1, anon_sym_DASH2, - ACTIONS(5877), 1, + ACTIONS(5934), 1, anon_sym_DOT_DOT2, STATE(2983), 1, sym_comment, - ACTIONS(5879), 2, + ACTIONS(5936), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1714), 11, + ACTIONS(2166), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -220816,15 +221183,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92864] = 3, + [93044] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2176), 1, + anon_sym_DASH2, + ACTIONS(5938), 1, + anon_sym_DOT_DOT2, STATE(2984), 1, sym_comment, - ACTIONS(5946), 15, + ACTIONS(5940), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2174), 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, + [93074] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2188), 1, + anon_sym_DASH2, + ACTIONS(5942), 1, + anon_sym_DOT_DOT2, + STATE(2985), 1, + sym_comment, + ACTIONS(5944), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2186), 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, + [93104] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5946), 1, sym__newline, + STATE(615), 1, + aux_sym__pipe_separator, + STATE(2986), 1, + sym_comment, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(5949), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5951), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -220834,16 +221256,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_GT2, - anon_sym_RBRACE, - [92888] = 3, + [93136] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2985), 1, + ACTIONS(5865), 1, + anon_sym_DOT_DOT2, + ACTIONS(5956), 1, + anon_sym_DASH2, + STATE(2987), 1, sym_comment, - ACTIONS(5948), 15, + ACTIONS(5867), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5954), 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, + [93166] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5810), 1, + sym__space, + STATE(2988), 1, + sym_comment, + STATE(3038), 1, + aux_sym_attribute_repeat1, + ACTIONS(5958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220856,17 +221302,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_GT2, anon_sym_RBRACE, - [92912] = 4, - ACTIONS(103), 1, + [93194] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2986), 1, + STATE(2989), 1, sym_comment, - ACTIONS(5241), 2, + ACTIONS(5292), 2, sym__space, anon_sym_EQ2, - ACTIONS(5912), 13, + ACTIONS(5834), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220880,168 +221325,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92938] = 6, - ACTIONS(3), 1, + [93220] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2110), 1, - anon_sym_DASH2, - ACTIONS(5950), 1, - anon_sym_DOT_DOT2, - STATE(2987), 1, + ACTIONS(5810), 1, + sym__space, + STATE(2990), 1, sym_comment, - ACTIONS(5952), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 11, - anon_sym_EQ, - sym_identifier, + STATE(3037), 1, + aux_sym_attribute_repeat1, + ACTIONS(5458), 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, - [92968] = 17, + anon_sym_RBRACE, + [93248] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(5820), 1, sym_identifier, - ACTIONS(5830), 1, + ACTIONS(5822), 1, sym__newline, - ACTIONS(5834), 1, + ACTIONS(5826), 1, anon_sym_DOLLAR, - ACTIONS(5836), 1, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - ACTIONS(5954), 1, + ACTIONS(5960), 1, anon_sym_RBRACK, - STATE(2543), 1, + STATE(2564), 1, sym_param_long_flag, - STATE(2656), 1, + STATE(2724), 1, sym__param_name, - STATE(2988), 1, + STATE(2991), 1, sym_comment, - STATE(2990), 1, + STATE(2994), 1, aux_sym__repeat_newline, - STATE(3275), 1, + STATE(3272), 1, aux_sym_parameter_parens_repeat1, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, + STATE(3462), 1, sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [93020] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5830), 1, - sym__newline, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(5956), 1, - anon_sym_RPAREN, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2989), 1, - sym_comment, - STATE(3047), 1, - aux_sym__repeat_newline, - STATE(3276), 1, - aux_sym_parameter_parens_repeat1, - STATE(3488), 1, + STATE(3499), 1, sym_param_rest, - STATE(3489), 1, + STATE(3609), 1, sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, + STATE(3860), 1, sym_parameter, - [93072] = 17, + [93300] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(5820), 1, sym_identifier, - ACTIONS(5830), 1, + ACTIONS(5822), 1, sym__newline, - ACTIONS(5834), 1, + ACTIONS(5826), 1, anon_sym_DOLLAR, - ACTIONS(5836), 1, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - ACTIONS(5958), 1, - anon_sym_RBRACK, - STATE(2543), 1, + ACTIONS(5962), 1, + anon_sym_PIPE, + STATE(2564), 1, sym_param_long_flag, - STATE(2656), 1, + STATE(2724), 1, sym__param_name, - STATE(2990), 1, + STATE(2992), 1, sym_comment, - STATE(3282), 1, + STATE(3400), 1, aux_sym_parameter_parens_repeat1, - STATE(3488), 1, + STATE(3448), 1, + aux_sym__repeat_newline, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, sym_param_rest, - STATE(3489), 1, + STATE(3609), 1, sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3577), 1, - aux_sym__repeat_newline, - STATE(3849), 1, + STATE(3860), 1, sym_parameter, - [93124] = 3, + [93352] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2991), 1, - sym_comment, - ACTIONS(5714), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5812), 1, anon_sym_and2, + ACTIONS(5814), 1, anon_sym_xor2, + ACTIONS(5964), 1, anon_sym_or2, - [93148] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5822), 1, - anon_sym_AT2, - STATE(2992), 1, + STATE(2993), 1, sym_comment, - STATE(3325), 1, - sym_param_completer, - ACTIONS(5632), 13, + ACTIONS(5630), 12, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221053,108 +221442,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, - [93176] = 17, + [93382] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(5820), 1, sym_identifier, - ACTIONS(5830), 1, + ACTIONS(5822), 1, sym__newline, - ACTIONS(5834), 1, + ACTIONS(5826), 1, anon_sym_DOLLAR, - ACTIONS(5836), 1, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - ACTIONS(5960), 1, + ACTIONS(5966), 1, anon_sym_RBRACK, - STATE(2543), 1, + STATE(2564), 1, sym_param_long_flag, - STATE(2656), 1, + STATE(2724), 1, sym__param_name, - STATE(2993), 1, + STATE(2994), 1, sym_comment, - STATE(3311), 1, + STATE(3348), 1, aux_sym_parameter_parens_repeat1, - STATE(3488), 1, + STATE(3448), 1, + aux_sym__repeat_newline, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, sym_param_rest, - STATE(3489), 1, + STATE(3609), 1, sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3577), 1, - aux_sym__repeat_newline, - STATE(3849), 1, + STATE(3860), 1, sym_parameter, - [93228] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2994), 1, - sym_comment, - ACTIONS(1580), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1582), 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, - [93254] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(5962), 1, - anon_sym_DOT, - STATE(2995), 1, - sym_comment, - STATE(3827), 1, - sym__immediate_decimal, - ACTIONS(5964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3968), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93294] = 7, + [93434] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5968), 1, + ACTIONS(5856), 1, sym__newline, - STATE(710), 1, + STATE(615), 1, aux_sym__pipe_separator, - STATE(2996), 1, + STATE(2995), 1, sym_comment, - STATE(3611), 1, + STATE(3624), 1, aux_sym__repeat_newline, - ACTIONS(5971), 3, + ACTIONS(5859), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2138), 9, + ACTIONS(5968), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221164,98 +221502,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, - [93326] = 14, + [93466] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5973), 1, - sym_identifier, - ACTIONS(5978), 1, - anon_sym_DOLLAR, - ACTIONS(5981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5984), 1, - anon_sym_DASH_DASH, - ACTIONS(5987), 1, - anon_sym_DASH2, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - STATE(2997), 2, + ACTIONS(5971), 1, + anon_sym_LBRACK2, + STATE(2996), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5976), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [93372] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(2377), 2, + anon_sym_LBRACK, anon_sym_DASH2, - STATE(2998), 1, - sym_comment, - ACTIONS(1893), 14, + ACTIONS(2375), 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93398] = 6, - ACTIONS(103), 1, + [93494] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern, - STATE(2999), 1, - sym_comment, - ACTIONS(2598), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2600), 11, + ACTIONS(1890), 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, - [93428] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(3000), 1, + ACTIONS(5973), 1, + anon_sym_finally, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2997), 1, sym_comment, - ACTIONS(1714), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1588), 11, - sym__newline, + ACTIONS(1888), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221266,44 +221548,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93458] = 7, + anon_sym_RPAREN, + [93524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5802), 1, - sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, - STATE(3001), 1, + STATE(2998), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(5805), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(5990), 9, + ACTIONS(1600), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1602), 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, - [93490] = 6, - ACTIONS(103), 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, + [93550] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2588), 1, - anon_sym_LPAREN2, - STATE(3002), 1, + STATE(2999), 1, sym_comment, - ACTIONS(2584), 2, - ts_builtin_sym_end, + ACTIONS(2348), 2, sym__space, - ACTIONS(2586), 11, + anon_sym_LPAREN2, + ACTIONS(2350), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221315,16 +221591,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, - [93520] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5993), 1, - anon_sym_catch, - ACTIONS(5995), 1, - anon_sym_finally, - STATE(3003), 1, + STATE(3000), 1, sym_comment, - ACTIONS(5997), 13, + ACTIONS(5383), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221336,22 +221611,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, - [93548] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5630), 1, - anon_sym_COLON, - ACTIONS(5999), 1, - anon_sym_EQ, - STATE(3004), 1, - sym_comment, - STATE(3548), 1, - sym_param_type, - STATE(4674), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 11, + STATE(3001), 1, + sym_comment, + ACTIONS(5976), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221363,19 +221632,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, - [93580] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [93624] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(3005), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2590), 2, - ts_builtin_sym_end, + ACTIONS(2361), 2, sym__space, - ACTIONS(2592), 11, + anon_sym_LPAREN2, + ACTIONS(2363), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221387,13 +221655,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, - [93610] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3006), 1, + ACTIONS(5978), 1, + anon_sym_LT, + STATE(3003), 1, sym_comment, - ACTIONS(5227), 15, + ACTIONS(5249), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221405,22 +221678,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, - [93634] = 6, - ACTIONS(103), 1, + anon_sym_AT2, + [93676] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5752), 1, + ACTIONS(5674), 1, anon_sym_EQ2, - STATE(3007), 1, + STATE(3004), 1, sym_comment, - STATE(3300), 1, + STATE(3288), 1, sym__flag_equals_value, - ACTIONS(4412), 2, + ACTIONS(5804), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4410), 11, + ACTIONS(5802), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221432,54 +221703,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93664] = 17, + [93706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(1911), 1, + anon_sym_DASH2, + STATE(3005), 1, + sym_comment, + ACTIONS(1909), 14, + anon_sym_EQ, sym_identifier, - ACTIONS(5830), 1, sym__newline, - ACTIONS(5834), 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(5836), 1, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + [93732] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2658), 1, anon_sym_DASH2, - ACTIONS(6001), 1, + STATE(3006), 1, + sym_comment, + ACTIONS(2656), 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, - STATE(2543), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93758] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5822), 1, + sym__newline, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5980), 1, + anon_sym_PIPE, + STATE(2564), 1, sym_param_long_flag, - STATE(2656), 1, + STATE(2724), 1, sym__param_name, - STATE(3008), 1, - sym_comment, - STATE(3019), 1, + STATE(2992), 1, aux_sym__repeat_newline, - STATE(3352), 1, + STATE(3007), 1, + sym_comment, + STATE(3276), 1, aux_sym_parameter_parens_repeat1, - STATE(3488), 1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, sym_param_rest, - STATE(3489), 1, + STATE(3609), 1, sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, + STATE(3860), 1, sym_parameter, - [93716] = 6, - ACTIONS(103), 1, + [93810] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(3009), 1, - sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2140), 2, - ts_builtin_sym_end, + ACTIONS(914), 1, sym__space, - ACTIONS(2142), 11, + ACTIONS(5076), 1, + sym__unquoted_pattern, + STATE(3008), 1, + sym_comment, + ACTIONS(811), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221491,13 +221803,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, - [93746] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93838] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3010), 1, + STATE(3009), 1, sym_comment, - ACTIONS(5381), 15, - ts_builtin_sym_end, + ACTIONS(5247), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221509,22 +221825,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_and2, - anon_sym_xor2, - anon_sym_or2, - [93770] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93864] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(3011), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2090), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2092), 11, + ACTIONS(5982), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221536,16 +221845,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, - [93800] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [93888] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6003), 1, - anon_sym_AT2, - STATE(3012), 1, + STATE(3011), 1, sym_comment, - STATE(3222), 1, - sym_param_completer, - ACTIONS(5786), 13, + ACTIONS(5296), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221559,43 +221870,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93828] = 6, - ACTIONS(103), 1, + [93914] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1903), 1, + anon_sym_DASH2, + STATE(3012), 1, + sym_comment, + ACTIONS(1901), 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, + [93940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, STATE(3013), 1, sym_comment, - ACTIONS(1953), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1955), 11, + ACTIONS(1671), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1669), 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, - [93858] = 6, - ACTIONS(103), 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, + [93966] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, + ACTIONS(5984), 1, + anon_sym_LT, STATE(3014), 1, sym_comment, - ACTIONS(1216), 2, + ACTIONS(5249), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1218), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221607,19 +221935,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, - [93888] = 6, - ACTIONS(103), 1, + anon_sym_AT2, + [93992] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern, STATE(3015), 1, sym_comment, - ACTIONS(1234), 2, + ACTIONS(1774), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1226), 11, + anon_sym_LPAREN2, + ACTIONS(1776), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221631,16 +221957,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, - [93918] = 5, + sym__unquoted_pattern, + [94018] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6003), 1, - anon_sym_AT2, + ACTIONS(5716), 1, + anon_sym_COLON, + ACTIONS(5986), 1, + anon_sym_EQ, STATE(3016), 1, sym_comment, - STATE(3228), 1, - sym_param_completer, - ACTIONS(5788), 13, + STATE(3555), 1, + sym_param_type, + STATE(4930), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221652,18 +221983,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, - [93946] = 5, - ACTIONS(3), 1, + [94050] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6003), 1, - anon_sym_AT2, + ACTIONS(5207), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5988), 1, + anon_sym_DOT, STATE(3017), 1, sym_comment, - STATE(3230), 1, - sym_param_completer, - ACTIONS(5788), 13, + ACTIONS(1788), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1790), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221675,18 +222007,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, - [93974] = 5, + [94080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6003), 1, - anon_sym_AT2, + ACTIONS(5990), 1, + anon_sym_COLON, STATE(3018), 1, sym_comment, - STATE(3236), 1, - sym_param_completer, - ACTIONS(5632), 13, + STATE(3440), 1, + sym_param_type, + STATE(4840), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221698,56 +222031,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94002] = 17, + [94110] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(2666), 1, + anon_sym_DASH2, + STATE(3019), 1, + sym_comment, + ACTIONS(2664), 14, + anon_sym_EQ, sym_identifier, - ACTIONS(5830), 1, sym__newline, - ACTIONS(5834), 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(5836), 1, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(3019), 1, - sym_comment, - STATE(3312), 1, - aux_sym_parameter_parens_repeat1, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3577), 1, - aux_sym__repeat_newline, - STATE(3849), 1, - sym_parameter, - [94054] = 6, + [94136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_DASH2, - ACTIONS(6007), 1, - anon_sym_DOT_DOT2, STATE(3020), 1, sym_comment, - ACTIONS(6009), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2241), 11, + ACTIONS(1874), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1872), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -221759,42 +222073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94084] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [94162] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5670), 1, + aux_sym__immediate_decimal_token5, STATE(3021), 1, sym_comment, - ACTIONS(5227), 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, - [94108] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2251), 1, + ACTIONS(1790), 3, + sym_identifier, anon_sym_DASH2, - ACTIONS(6011), 1, - anon_sym_DOT_DOT2, - STATE(3022), 1, - sym_comment, - ACTIONS(6013), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2249), 11, + sym__unquoted_pattern_in_record, + ACTIONS(1788), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -221804,20 +222097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94138] = 7, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [94190] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6015), 1, - anon_sym_catch, - ACTIONS(6017), 1, - anon_sym_finally, - ACTIONS(6019), 1, - sym__newline, - STATE(2972), 1, - aux_sym__repeat_newline, - STATE(3023), 1, + STATE(3022), 1, sym_comment, - ACTIONS(6022), 11, + ACTIONS(1866), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1868), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221828,13 +222119,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, + sym__unquoted_pattern, + [94216] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5822), 1, + sym__newline, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5992), 1, anon_sym_RPAREN, - [94170] = 3, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(2927), 1, + aux_sym__repeat_newline, + STATE(3023), 1, + sym_comment, + STATE(3310), 1, + aux_sym_parameter_parens_repeat1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [94268] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_and2, STATE(3024), 1, sym_comment, - ACTIONS(5381), 15, + ACTIONS(5656), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -221847,16 +222175,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, - [94194] = 3, - ACTIONS(3), 1, + [94294] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3025), 1, sym_comment, - ACTIONS(5227), 15, + ACTIONS(1921), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1923), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221868,41 +222198,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_and2, - anon_sym_xor2, - anon_sym_or2, - [94218] = 4, + sym__unquoted_pattern, + [94320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2662), 1, - anon_sym_DASH2, STATE(3026), 1, sym_comment, - ACTIONS(2660), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5615), 15, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94244] = 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, + [94344] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_EQ2, + ACTIONS(5994), 1, + anon_sym_AT2, STATE(3027), 1, sym_comment, - ACTIONS(5826), 14, + STATE(3156), 1, + sym_param_completer, + ACTIONS(5806), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221913,38 +222241,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_COLON2, - [94270] = 4, - ACTIONS(3), 1, + [94372] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern, STATE(3028), 1, sym_comment, - ACTIONS(1856), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1854), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2604), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2606), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [94296] = 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, + [94402] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5996), 1, + anon_sym_catch, + ACTIONS(5998), 1, + anon_sym_finally, + ACTIONS(6000), 1, + sym__newline, STATE(3029), 1, sym_comment, - ACTIONS(5381), 15, - ts_builtin_sym_end, - sym__newline, + STATE(3044), 1, + aux_sym__repeat_newline, + ACTIONS(6003), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221955,19 +222291,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, - [94320] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [94434] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, STATE(3030), 1, sym_comment, - ACTIONS(5842), 14, - sym__newline, + ACTIONS(1738), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(1616), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221978,24 +222316,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, - [94346] = 7, + [94464] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5968), 1, - sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, + ACTIONS(5994), 1, + anon_sym_AT2, STATE(3031), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(5971), 3, + STATE(3232), 1, + sym_param_completer, + ACTIONS(5539), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(6024), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222005,19 +222337,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, - [94378] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94492] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_and2, - ACTIONS(5798), 1, - anon_sym_xor2, - ACTIONS(6027), 1, - anon_sym_or2, + ACTIONS(5994), 1, + anon_sym_AT2, STATE(3032), 1, sym_comment, - ACTIONS(5680), 12, - ts_builtin_sym_end, + STATE(3244), 1, + sym_param_completer, + ACTIONS(5539), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222029,19 +222360,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, - [94408] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - anon_sym_and2, - ACTIONS(5800), 1, - anon_sym_xor2, - ACTIONS(6029), 1, - anon_sym_or2, + ACTIONS(5994), 1, + anon_sym_AT2, STATE(3033), 1, sym_comment, - ACTIONS(5790), 12, - ts_builtin_sym_end, + STATE(3061), 1, + sym_param_completer, + ACTIONS(5808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222053,20 +222383,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, - [94438] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5630), 1, - anon_sym_COLON, - ACTIONS(6031), 1, - anon_sym_EQ, + ACTIONS(5818), 1, + anon_sym_AT2, STATE(3034), 1, sym_comment, - STATE(3591), 1, - sym_param_type, - STATE(4674), 1, - aux_sym__repeat_newline, - ACTIONS(5628), 11, + STATE(3280), 1, + sym_param_completer, + ACTIONS(5806), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222078,14 +222408,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, - [94470] = 3, + [94576] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6005), 1, + anon_sym_catch, + ACTIONS(6008), 1, + anon_sym_finally, + ACTIONS(6011), 1, + sym__newline, + STATE(2938), 1, + aux_sym__repeat_newline, STATE(3035), 1, sym_comment, - ACTIONS(4764), 15, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6015), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222096,15 +222432,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_and2, - anon_sym_xor2, - anon_sym_or2, - [94494] = 3, + anon_sym_RPAREN, + [94608] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_and2, STATE(3036), 1, sym_comment, - ACTIONS(5706), 15, + ACTIONS(5652), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222117,19 +222453,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, - [94518] = 5, - ACTIONS(103), 1, + [94634] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(5810), 1, sym__space, - STATE(2934), 1, + STATE(2948), 1, aux_sym_attribute_repeat1, STATE(3037), 1, sym_comment, - ACTIONS(6033), 13, + ACTIONS(6018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222143,15 +222478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94546] = 4, - ACTIONS(103), 1, + [94662] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6037), 1, + ACTIONS(5810), 1, sym__space, - STATE(3038), 2, - sym_comment, + STATE(2948), 1, aux_sym_attribute_repeat1, - ACTIONS(6035), 13, + STATE(3038), 1, + sym_comment, + ACTIONS(6020), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222165,13 +222501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94572] = 3, + [94690] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5716), 1, + anon_sym_COLON, + ACTIONS(6022), 1, + anon_sym_EQ, STATE(3039), 1, sym_comment, - ACTIONS(5708), 15, - ts_builtin_sym_end, + STATE(3591), 1, + sym_param_type, + STATE(4930), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222183,22 +222526,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_and2, - anon_sym_xor2, - anon_sym_or2, - [94596] = 6, - ACTIONS(103), 1, + [94722] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, STATE(3040), 1, sym_comment, - STATE(4970), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5696), 2, - ts_builtin_sym_end, + ACTIONS(5308), 2, sym__space, - ACTIONS(5694), 11, + anon_sym_EQ2, + ACTIONS(5914), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222210,16 +222546,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, - [94626] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94748] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3041), 1, sym_comment, - ACTIONS(2570), 3, + ACTIONS(5267), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2572), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222231,16 +222566,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, - sym__unquoted_pattern, - [94652] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94772] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_and2, - STATE(3042), 1, + ACTIONS(6024), 1, + sym_identifier, + ACTIONS(6029), 1, + anon_sym_DOLLAR, + ACTIONS(6032), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6035), 1, + anon_sym_DASH_DASH, + ACTIONS(6038), 1, + anon_sym_DASH2, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + STATE(3042), 2, sym_comment, - ACTIONS(5706), 14, - ts_builtin_sym_end, + aux_sym_parameter_parens_repeat1, + ACTIONS(6027), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [94818] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6041), 1, + anon_sym_catch, + ACTIONS(6043), 1, + anon_sym_finally, + STATE(3043), 1, + sym_comment, + ACTIONS(6045), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222252,19 +222622,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_xor2, - anon_sym_or2, - [94678] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94846] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__space, - STATE(3038), 1, - aux_sym_attribute_repeat1, - STATE(3043), 1, - sym_comment, - ACTIONS(6040), 13, + ACTIONS(6047), 1, + anon_sym_catch, + ACTIONS(6050), 1, + anon_sym_finally, + ACTIONS(6053), 1, sym__newline, + STATE(2997), 1, + aux_sym__repeat_newline, + STATE(3044), 1, + sym_comment, + ACTIONS(6057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222276,15 +222649,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [94706] = 4, + [94878] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6060), 1, + aux_sym__immediate_decimal_token5, + STATE(3045), 1, + sym_comment, + ACTIONS(1868), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1866), 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, + [94906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(5840), 1, anon_sym_and2, - STATE(3044), 1, + STATE(3046), 1, sym_comment, - ACTIONS(5708), 14, + ACTIONS(5654), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222299,16 +222694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [94732] = 5, + [94932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_and2, - ACTIONS(5798), 1, - anon_sym_xor2, - STATE(3045), 1, + STATE(3047), 1, sym_comment, - ACTIONS(5706), 13, + ACTIONS(5267), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222321,17 +222712,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_and2, + anon_sym_xor2, anon_sym_or2, - [94760] = 5, + [94956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - anon_sym_and2, - ACTIONS(5800), 1, - anon_sym_xor2, - STATE(3046), 1, + STATE(3048), 1, sym_comment, - ACTIONS(5708), 13, + ACTIONS(5383), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222344,77 +222733,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_and2, + anon_sym_xor2, anon_sym_or2, - [94788] = 17, + [94980] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5830), 1, + ACTIONS(5946), 1, sym__newline, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6042), 1, - anon_sym_RPAREN, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(3047), 1, + STATE(615), 1, + aux_sym__pipe_separator, + STATE(3049), 1, sym_comment, - STATE(3283), 1, - aux_sym_parameter_parens_repeat1, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3577), 1, + STATE(3624), 1, aux_sym__repeat_newline, - STATE(3849), 1, - sym_parameter, - [94840] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6044), 1, - anon_sym_AT2, - ACTIONS(6046), 1, - anon_sym_DASH2, - STATE(3048), 1, - sym_comment, - STATE(3469), 1, - sym_param_completer, - ACTIONS(5786), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5949), 3, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94869] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + ACTIONS(2075), 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, + [95012] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5895), 1, - sym__newline, - ACTIONS(5897), 1, - sym__space, - STATE(3049), 1, + STATE(3050), 1, sym_comment, - STATE(3051), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6048), 11, + ACTIONS(5350), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5878), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222426,47 +222782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94898] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6052), 1, - anon_sym_DOT, - ACTIONS(6054), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6056), 1, - aux_sym__immediate_decimal_token2, - STATE(3050), 1, - sym_comment, - STATE(3863), 1, - sym__immediate_decimal, - ACTIONS(1622), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6058), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4169), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [94941] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + [95038] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(6063), 1, - sym__space, - STATE(3051), 2, + ACTIONS(6062), 1, + anon_sym_finally, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3051), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6066), 11, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222478,18 +222806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94968] = 6, + [95067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5231), 1, anon_sym_LPAREN2, - ACTIONS(5918), 1, + ACTIONS(6067), 1, anon_sym_DASH2, STATE(3052), 1, sym_comment, - STATE(5044), 1, + STATE(5413), 1, sym__expr_parenthesized_immediate, - ACTIONS(5916), 11, + ACTIONS(6065), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222501,15 +222829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94997] = 4, - ACTIONS(103), 1, + [95096] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, - sym__space, + ACTIONS(1890), 1, + sym__newline, + ACTIONS(6069), 1, + anon_sym_finally, + STATE(501), 1, + aux_sym__repeat_newline, STATE(3053), 1, sym_comment, - ACTIONS(2370), 13, - sym__newline, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222521,16 +222852,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, - [95022] = 4, - ACTIONS(103), 1, + [95125] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - sym__space, + ACTIONS(6072), 1, + anon_sym_finally, + ACTIONS(6074), 1, + sym__newline, STATE(3054), 1, sym_comment, - ACTIONS(2243), 13, - sym__newline, + STATE(3159), 1, + aux_sym__repeat_newline, + ACTIONS(6077), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222542,56 +222875,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [95047] = 4, - ACTIONS(103), 1, + [95154] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - sym__space, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(6081), 1, + anon_sym_DASH2, STATE(3055), 1, sym_comment, - ACTIONS(2251), 13, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6079), 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, - [95072] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95183] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6083), 1, + anon_sym_LT, + ACTIONS(6085), 1, + anon_sym_DASH2, STATE(3056), 1, sym_comment, - ACTIONS(5281), 14, - ts_builtin_sym_end, + ACTIONS(5249), 12, anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, - [95095] = 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, + [95210] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2257), 1, - sym__space, + ACTIONS(6085), 1, + anon_sym_DASH2, + ACTIONS(6087), 1, + anon_sym_LT, STATE(3057), 1, sym_comment, - ACTIONS(2259), 13, + ACTIONS(5249), 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, + [95237] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4637), 1, + sym__space, + STATE(3058), 1, + sym_comment, + ACTIONS(4635), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222605,14 +222963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95120] = 4, - ACTIONS(103), 1, + [95262] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4639), 1, + ACTIONS(4641), 1, sym__space, - STATE(3058), 1, + STATE(3059), 1, sym_comment, - ACTIONS(4637), 13, + ACTIONS(4639), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222626,21 +222984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95145] = 7, - ACTIONS(3), 1, + [95287] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5802), 1, - sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, - STATE(3059), 1, + ACTIONS(4645), 1, + sym__space, + STATE(3060), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(5805), 2, - ts_builtin_sym_end, + ACTIONS(4643), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222650,16 +223003,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, - [95176] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95312] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3060), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2336), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2338), 11, + ACTIONS(6089), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222671,15 +223023,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, - [95201] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95335] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3061), 1, - sym_comment, - ACTIONS(2572), 2, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(6093), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2570), 12, + STATE(3062), 1, + sym_comment, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6091), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222691,19 +223048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [95226] = 6, + [95364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_DASH2, - ACTIONS(2578), 1, + ACTIONS(5231), 1, anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern_in_record, - STATE(3062), 1, + ACTIONS(6097), 1, + anon_sym_DASH2, + STATE(3063), 1, sym_comment, - ACTIONS(1714), 11, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6095), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222715,12 +223071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95255] = 3, + [95393] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(3064), 1, sym_comment, - ACTIONS(5387), 14, + ACTIONS(5265), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -222734,40 +223090,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_AT2, - [95278] = 6, + anon_sym_LBRACE, + [95416] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2092), 1, - anon_sym_DASH2, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(3064), 1, - sym_comment, - ACTIONS(2090), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5946), 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, - [95307] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + STATE(615), 1, + aux_sym__pipe_separator, STATE(3065), 1, sym_comment, - ACTIONS(5389), 14, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(5949), 2, ts_builtin_sym_end, - anon_sym_EQ, - sym__newline, anon_sym_SEMI, + ACTIONS(5951), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222777,16 +223115,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_AT2, - [95330] = 3, + [95447] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6099), 1, + anon_sym_else, + ACTIONS(6101), 1, + sym__newline, STATE(3066), 1, sym_comment, - ACTIONS(5391), 14, - ts_builtin_sym_end, - anon_sym_EQ, - sym__newline, + STATE(3225), 1, + aux_sym__repeat_newline, + ACTIONS(6104), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222797,39 +223137,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_AT2, - [95353] = 6, + anon_sym_RPAREN, + [95476] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2576), 1, - anon_sym_DASH2, - STATE(3067), 1, - sym_comment, - ACTIONS(2574), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6106), 1, + anon_sym_else, + ACTIONS(6108), 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, - [95382] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2394), 1, - sym__space, - STATE(3068), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2396), 13, - sym__newline, + STATE(3229), 1, + aux_sym__repeat_newline, + ACTIONS(6111), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222841,38 +223161,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, - [95407] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_DASH2, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - STATE(3069), 1, - sym_comment, - ACTIONS(1953), 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, - [95436] = 3, - ACTIONS(3), 1, + [95505] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3070), 1, + ACTIONS(6115), 1, + sym__space, + STATE(3068), 1, sym_comment, - ACTIONS(5393), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6113), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222884,61 +223180,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, - [95459] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2586), 1, - anon_sym_DASH2, - ACTIONS(2588), 1, - anon_sym_LPAREN2, - STATE(3071), 1, - sym_comment, - ACTIONS(2584), 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, - [95488] = 6, + anon_sym_RBRACE, + [95530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2592), 1, - anon_sym_DASH2, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_record, - STATE(3072), 1, + STATE(3069), 1, sym_comment, - ACTIONS(2590), 11, + ACTIONS(5780), 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, - [95517] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2414), 1, - sym__space, - STATE(3073), 1, - sym_comment, - ACTIONS(2416), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222950,17 +223201,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, - [95542] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + [95553] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, - sym__space, - STATE(3074), 1, - sym_comment, - ACTIONS(2420), 13, + ACTIONS(6117), 1, + anon_sym_else, + ACTIONS(6119), 1, sym__newline, + STATE(3070), 1, + sym_comment, + STATE(3238), 1, + aux_sym__repeat_newline, + ACTIONS(6122), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222972,47 +223225,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, - [95567] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(3075), 1, - sym_comment, - STATE(3921), 1, - sym__immediate_decimal, - ACTIONS(6070), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6072), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3968), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95606] = 6, + [95582] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2600), 1, + ACTIONS(6124), 1, + anon_sym_AT2, + ACTIONS(6126), 1, anon_sym_DASH2, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern_in_record, - STATE(3076), 1, + STATE(3071), 1, sym_comment, - ACTIONS(2598), 11, + STATE(3548), 1, + sym_param_completer, + ACTIONS(5539), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223024,12 +223248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95635] = 3, + [95611] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3077), 1, + STATE(3072), 1, sym_comment, - ACTIONS(5460), 14, + ACTIONS(5292), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -223043,16 +223267,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_AT2, - [95658] = 3, + anon_sym_LBRACE, + [95634] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, - sym_comment, - ACTIONS(5383), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6128), 1, + anon_sym_finally, + ACTIONS(6130), 1, sym__newline, + STATE(3073), 1, + sym_comment, + STATE(3255), 1, + aux_sym__repeat_newline, + ACTIONS(6133), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223063,44 +223290,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_AT2, - [95681] = 6, + anon_sym_RPAREN, + [95663] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1218), 1, - anon_sym_DASH2, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_record, - STATE(3079), 1, + ACTIONS(5273), 1, + anon_sym_DOT, + ACTIONS(5275), 1, + aux_sym__immediate_decimal_token5, + STATE(3074), 1, sym_comment, - ACTIONS(1216), 11, - anon_sym_EQ, + ACTIONS(1790), 2, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95710] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1226), 1, anon_sym_DASH2, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_record, - STATE(3080), 1, - sym_comment, - ACTIONS(1234), 11, + ACTIONS(1788), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -223110,18 +223314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95739] = 6, + [95692] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6124), 1, anon_sym_AT2, - ACTIONS(6074), 1, + ACTIONS(6135), 1, anon_sym_DASH2, - STATE(3081), 1, + STATE(3075), 1, sym_comment, - STATE(3580), 1, + STATE(3557), 1, sym_param_completer, - ACTIONS(5788), 11, + ACTIONS(5808), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223133,15 +223337,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95768] = 4, - ACTIONS(103), 1, + [95721] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2406), 1, - sym__space, - STATE(3082), 1, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6141), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6143), 1, + aux_sym__immediate_decimal_token2, + STATE(3076), 1, sym_comment, - ACTIONS(2408), 13, + STATE(3833), 1, + sym__immediate_decimal, + ACTIONS(1644), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6145), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4096), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [95764] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6147), 1, + anon_sym_finally, + ACTIONS(6149), 1, sym__newline, + STATE(3077), 1, + sym_comment, + STATE(3101), 1, + aux_sym__repeat_newline, + ACTIONS(6152), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223153,15 +223390,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, - [95793] = 4, - ACTIONS(103), 1, + [95793] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, - sym__space, - STATE(3083), 1, + STATE(3078), 1, sym_comment, - ACTIONS(2412), 13, + ACTIONS(6154), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223175,14 +223410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95818] = 4, - ACTIONS(103), 1, + [95816] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2450), 1, - sym__space, - STATE(3084), 1, + ACTIONS(6156), 1, + anon_sym_finally, + STATE(3079), 1, sym_comment, - ACTIONS(2452), 13, + ACTIONS(6158), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223196,14 +223431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95843] = 4, - ACTIONS(103), 1, + [95841] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2454), 1, - sym__space, - STATE(3085), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(5296), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5893), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223215,16 +223452,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, - [95868] = 4, - ACTIONS(103), 1, + [95866] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, - sym__space, - STATE(3086), 1, + STATE(3081), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(5385), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223236,16 +223471,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, - [95893] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [95889] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(6162), 1, sym__space, - STATE(3087), 1, + STATE(3082), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(6160), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223259,16 +223493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95918] = 4, - ACTIONS(103), 1, + [95914] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, - sym__space, - STATE(3088), 1, - sym_comment, - ACTIONS(2468), 13, + ACTIONS(6164), 1, sym__newline, + STATE(539), 1, + aux_sym__pipe_separator, + STATE(3083), 1, + sym_comment, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(6167), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(6169), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223278,20 +223517,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, - [95943] = 6, + [95945] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6076), 1, - anon_sym_else, - ACTIONS(6078), 1, - sym__newline, - STATE(3089), 1, + STATE(3084), 1, sym_comment, - STATE(3131), 1, - aux_sym__repeat_newline, - ACTIONS(6081), 11, + ACTIONS(5387), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223302,19 +223536,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, - [95972] = 6, + anon_sym_AT2, + [95968] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6083), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3090), 1, + STATE(3085), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(5350), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223325,19 +223556,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, - [96001] = 6, + anon_sym_LBRACE, + [95991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6086), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3091), 1, + STATE(3086), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(1602), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223348,22 +223576,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_COLON, + [96014] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3087), 1, + sym_comment, + ACTIONS(1776), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1774), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [96030] = 7, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [96039] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + anon_sym_DOT, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(3088), 1, + sym_comment, + STATE(3941), 1, + sym__immediate_decimal, + ACTIONS(5924), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3940), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1628), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96076] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5968), 1, + ACTIONS(5856), 1, sym__newline, - STATE(710), 1, + STATE(615), 1, aux_sym__pipe_separator, - STATE(3092), 1, + STATE(3089), 1, sym_comment, - STATE(3611), 1, + STATE(3624), 1, aux_sym__repeat_newline, - ACTIONS(5971), 2, + ACTIONS(5859), 2, ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2138), 9, + ACTIONS(5968), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223373,41 +223649,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, - [96061] = 6, + [96107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6089), 1, - anon_sym_finally, - ACTIONS(6091), 1, - sym__newline, - STATE(3093), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2698), 1, + anon_sym_DASH2, + STATE(3090), 1, sym_comment, - STATE(3132), 1, - aux_sym__repeat_newline, - ACTIONS(6094), 11, - anon_sym_SEMI, + ACTIONS(2696), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [96090] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6096), 1, - anon_sym_finally, - ACTIONS(6098), 1, + ACTIONS(6172), 1, + anon_sym_else, + ACTIONS(6174), 1, sym__newline, - STATE(3094), 1, - sym_comment, - STATE(3133), 1, + STATE(3070), 1, aux_sym__repeat_newline, - ACTIONS(6101), 11, + STATE(3091), 1, + sym_comment, + ACTIONS(6177), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223419,14 +223695,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96119] = 4, - ACTIONS(103), 1, + [96165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3092), 1, + sym_comment, + ACTIONS(2578), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2576), 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, + [96190] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(2154), 1, sym__space, - STATE(3095), 1, + STATE(3093), 1, sym_comment, - ACTIONS(785), 13, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223440,19 +223737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96144] = 5, + [96215] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6103), 1, - anon_sym_catch, - ACTIONS(6105), 1, - anon_sym_finally, - STATE(3096), 1, + ACTIONS(5856), 1, + sym__newline, + STATE(615), 1, + aux_sym__pipe_separator, + STATE(3094), 1, sym_comment, - ACTIONS(5997), 12, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(5859), 2, ts_builtin_sym_end, - sym__newline, anon_sym_SEMI, + ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223462,37 +223761,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96171] = 4, - ACTIONS(103), 1, + [96246] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1714), 1, - sym__space, - STATE(3097), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1588), 13, + ACTIONS(1868), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1866), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [96196] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [96271] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2350), 1, - sym__space, - STATE(3098), 1, + STATE(3096), 1, sym_comment, - ACTIONS(2352), 13, + ACTIONS(1923), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1921), 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, + [96296] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6179), 1, sym__newline, + STATE(539), 1, + aux_sym__pipe_separator, + STATE(3097), 1, + sym_comment, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(6182), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(6184), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223502,20 +223827,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, - [96221] = 6, + [96327] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6107), 1, + ACTIONS(6187), 1, anon_sym_finally, - ACTIONS(6109), 1, + ACTIONS(6189), 1, sym__newline, - STATE(3099), 1, + STATE(3098), 1, sym_comment, - STATE(3136), 1, + STATE(3261), 1, aux_sym__repeat_newline, - ACTIONS(6112), 11, + ACTIONS(6192), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223527,18 +223850,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96250] = 6, + [96356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1616), 1, + anon_sym_DASH2, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_record, + STATE(3099), 1, + sym_comment, + ACTIONS(1738), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6114), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96385] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(3100), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(5308), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5914), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223549,19 +223894,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, - [96279] = 6, + [96410] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, + ACTIONS(6194), 1, anon_sym_finally, - ACTIONS(6119), 1, + ACTIONS(6196), 1, sym__newline, + STATE(3053), 1, + aux_sym__repeat_newline, STATE(3101), 1, sym_comment, - STATE(3137), 1, - aux_sym__repeat_newline, - ACTIONS(6122), 11, + ACTIONS(6199), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223573,14 +223917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96308] = 3, - ACTIONS(3), 1, + [96439] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5545), 1, + sym__space, STATE(3102), 1, sym_comment, - ACTIONS(5385), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223592,36 +223936,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_AT2, - [96331] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96464] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2372), 1, - sym__space, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(5863), 1, + anon_sym_DASH2, STATE(3103), 1, sym_comment, - ACTIONS(2374), 13, + STATE(5042), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5861), 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, - [96356] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96493] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - sym__space, + ACTIONS(2116), 1, + anon_sym_DASH2, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, STATE(3104), 1, sym_comment, - ACTIONS(2632), 13, + ACTIONS(2114), 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, + [96522] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6201), 1, + ts_builtin_sym_end, + ACTIONS(6203), 1, + sym__space, + STATE(3105), 2, + sym_comment, + aux_sym_attribute_repeat1, + ACTIONS(5880), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223633,45 +224006,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, - [96381] = 10, + [96549] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(3105), 1, - sym_comment, - STATE(4291), 1, - sym__immediate_decimal, - ACTIONS(6124), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6126), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(768), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 4, - anon_sym_if, + ACTIONS(6179), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [96418] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - sym__space, + STATE(539), 1, + aux_sym__pipe_separator, STATE(3106), 1, sym_comment, - ACTIONS(1895), 13, - sym__newline, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(6182), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223681,16 +224030,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, - [96443] = 4, - ACTIONS(103), 1, + [96580] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2426), 1, - sym__space, STATE(3107), 1, sym_comment, - ACTIONS(2428), 13, + ACTIONS(1901), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223704,14 +224050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96468] = 4, - ACTIONS(103), 1, + [96603] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2554), 1, + ACTIONS(5912), 1, sym__space, + ACTIONS(6206), 1, + ts_builtin_sym_end, STATE(3108), 1, sym_comment, - ACTIONS(2556), 13, + STATE(3216), 1, + aux_sym_attribute_repeat1, + ACTIONS(5958), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223723,18 +224073,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, - [96493] = 4, - ACTIONS(103), 1, + [96632] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3109), 1, - sym_comment, - ACTIONS(5295), 3, - ts_builtin_sym_end, + ACTIONS(2596), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5885), 11, + STATE(3109), 1, + sym_comment, + ACTIONS(2598), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223746,14 +224092,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, - [96518] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96657] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(2166), 1, sym__space, STATE(3110), 1, sym_comment, - ACTIONS(2560), 13, + ACTIONS(2168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223767,17 +224115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96543] = 5, - ACTIONS(3), 1, + [96682] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_AT2, + ACTIONS(2174), 1, + sym__space, STATE(3111), 1, sym_comment, - STATE(3305), 1, - sym_param_completer, - ACTIONS(5788), 12, - ts_builtin_sym_end, + ACTIONS(2176), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223789,14 +224134,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, - [96570] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96707] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2378), 1, - sym__space, STATE(3112), 1, sym_comment, - ACTIONS(2380), 13, + ACTIONS(5646), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223808,16 +224155,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, - [96595] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + [96730] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(2186), 1, sym__space, STATE(3113), 1, sym_comment, - ACTIONS(5344), 13, + ACTIONS(2188), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223831,14 +224177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96620] = 4, - ACTIONS(103), 1, + [96755] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(5910), 1, + ts_builtin_sym_end, + ACTIONS(5912), 1, sym__space, STATE(3114), 1, sym_comment, - ACTIONS(2384), 13, + STATE(3117), 1, + aux_sym_attribute_repeat1, + ACTIONS(5458), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223850,16 +224200,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, - [96645] = 4, - ACTIONS(103), 1, + [96784] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2386), 1, - sym__space, STATE(3115), 1, sym_comment, - ACTIONS(2388), 13, + ACTIONS(5389), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223871,16 +224219,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, - [96670] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [96807] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(6210), 1, sym__space, STATE(3116), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(6208), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223894,14 +224241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96695] = 4, - ACTIONS(103), 1, + [96832] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2668), 1, + ACTIONS(5912), 1, sym__space, + ACTIONS(6212), 1, + ts_builtin_sym_end, + STATE(3105), 1, + aux_sym_attribute_repeat1, STATE(3117), 1, sym_comment, - ACTIONS(2670), 13, + ACTIONS(6018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223913,16 +224264,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, - [96720] = 4, - ACTIONS(103), 1, + [96861] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2546), 1, - sym__space, STATE(3118), 1, sym_comment, - ACTIONS(2548), 13, + ACTIONS(5391), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223934,43 +224283,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, - [96745] = 10, + anon_sym_AT2, + [96884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, STATE(3119), 1, sym_comment, - STATE(4211), 1, - sym__immediate_decimal, - ACTIONS(6124), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6126), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [96782] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2398), 1, - sym__space, - STATE(3120), 1, - sym_comment, - ACTIONS(2400), 13, + ACTIONS(5393), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223982,16 +224303,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, - [96807] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [96907] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2402), 1, - sym__space, - STATE(3121), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2404), 13, + ACTIONS(5395), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224003,20 +224323,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, - [96832] = 6, + anon_sym_AT2, + [96930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5231), 1, anon_sym_LPAREN2, - ACTIONS(5875), 1, + ACTIONS(5908), 1, anon_sym_DASH2, - STATE(3122), 1, + STATE(3121), 1, sym_comment, - STATE(5044), 1, + STATE(5042), 1, sym__expr_parenthesized_immediate, - ACTIONS(5873), 11, + ACTIONS(5906), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224028,96 +224347,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96861] = 4, - ACTIONS(3), 1, + [96959] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2401), 1, + sym__space, + STATE(3122), 1, + sym_comment, + ACTIONS(2403), 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, + [96984] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2405), 1, + sym__space, STATE(3123), 1, sym_comment, - ACTIONS(1732), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1730), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2407), 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, - [96886] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97009] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2409), 1, + sym__space, STATE(3124), 1, sym_comment, - ACTIONS(1834), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1832), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2411), 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, - [96911] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97034] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5928), 1, + sym__newline, + ACTIONS(5930), 1, + sym__space, STATE(3125), 1, sym_comment, - ACTIONS(1921), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1919), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3175), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6214), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96936] = 4, + [97063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_DASH2, STATE(3126), 1, sym_comment, - ACTIONS(884), 13, + ACTIONS(5397), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96961] = 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_AT2, + [97086] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3127), 1, sym_comment, - ACTIONS(5395), 14, + ACTIONS(5247), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -224131,61 +224472,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_AT2, - [96984] = 4, + anon_sym_LBRACE, + [97109] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_DASH2, STATE(3128), 1, sym_comment, - ACTIONS(1714), 13, + ACTIONS(5296), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97009] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, + [97132] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2352), 1, - anon_sym_DASH2, + ACTIONS(5928), 1, + sym__newline, + ACTIONS(5930), 1, + sym__space, STATE(3129), 1, sym_comment, - ACTIONS(2350), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3214), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6216), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97034] = 6, - ACTIONS(103), 1, + [97161] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5895), 1, - sym__newline, - ACTIONS(5897), 1, + ACTIONS(2431), 1, sym__space, - STATE(3049), 1, - aux_sym__command_parenthesized_repeat1, STATE(3130), 1, sym_comment, - ACTIONS(6130), 11, + ACTIONS(2433), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224197,18 +224536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97063] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97186] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6132), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2435), 1, + sym__space, STATE(3131), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(2437), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224220,18 +224557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97092] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97211] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6135), 1, - anon_sym_finally, - ACTIONS(6137), 1, - sym__newline, + ACTIONS(2439), 1, + sym__space, STATE(3132), 1, sym_comment, - STATE(3148), 1, - aux_sym__repeat_newline, - ACTIONS(6140), 11, + ACTIONS(2441), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224243,18 +224578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97121] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97236] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6142), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2443), 1, + sym__space, STATE(3133), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(2445), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224266,18 +224599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97150] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97261] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6145), 1, - anon_sym_finally, - ACTIONS(6147), 1, - sym__newline, + ACTIONS(2447), 1, + sym__space, STATE(3134), 1, sym_comment, - STATE(3149), 1, - aux_sym__repeat_newline, - ACTIONS(6150), 11, + ACTIONS(2449), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224289,14 +224620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97179] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [97286] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(2451), 1, sym__space, STATE(3135), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224310,18 +224642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97204] = 6, - ACTIONS(3), 1, + [97311] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6152), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2381), 1, + sym__space, STATE(3136), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(2383), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224333,18 +224662,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97233] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97336] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6155), 1, - anon_sym_finally, - ACTIONS(6157), 1, - sym__newline, + ACTIONS(914), 1, + sym__space, STATE(3137), 1, sym_comment, - STATE(3151), 1, - aux_sym__repeat_newline, - ACTIONS(6160), 11, + ACTIONS(811), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224356,18 +224683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97262] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97361] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6162), 1, - anon_sym_finally, - ACTIONS(6164), 1, - sym__newline, + ACTIONS(1738), 1, + sym__space, STATE(3138), 1, sym_comment, - STATE(3152), 1, - aux_sym__repeat_newline, - ACTIONS(6167), 11, + ACTIONS(1616), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224379,14 +224704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97291] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [97386] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(2277), 1, sym__space, STATE(3139), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2279), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224400,16 +224726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97316] = 4, - ACTIONS(103), 1, + [97411] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6171), 1, - sym__space, + ACTIONS(5946), 1, + sym__newline, + STATE(615), 1, + aux_sym__pipe_separator, STATE(3140), 1, sym_comment, - ACTIONS(6169), 13, - sym__newline, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(5949), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224419,16 +224750,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, - [97341] = 4, - ACTIONS(103), 1, + [97442] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6175), 1, - sym__space, + ACTIONS(6218), 1, + anon_sym_catch, + ACTIONS(6220), 1, + anon_sym_finally, STATE(3141), 1, sym_comment, - ACTIONS(6173), 13, + ACTIONS(6045), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224440,58 +224772,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97366] = 4, + [97469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(6124), 1, + anon_sym_AT2, + ACTIONS(6222), 1, anon_sym_DASH2, STATE(3142), 1, sym_comment, - ACTIONS(2372), 13, + STATE(3534), 1, + sym_param_completer, + ACTIONS(5806), 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, - [97391] = 4, + [97498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_DASH2, + ACTIONS(1890), 1, + sym__newline, + ACTIONS(6224), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, STATE(3143), 1, sym_comment, - ACTIONS(2630), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1888), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97416] = 4, - ACTIONS(103), 1, + [97527] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2474), 1, + ACTIONS(2580), 1, sym__space, STATE(3144), 1, sym_comment, - ACTIONS(2476), 13, + ACTIONS(2582), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224505,14 +224839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97441] = 4, - ACTIONS(103), 1, + [97552] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(2710), 1, sym__space, STATE(3145), 1, sym_comment, - ACTIONS(2480), 13, + ACTIONS(2712), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224526,50 +224860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97466] = 13, - ACTIONS(103), 1, + [97577] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1620), 1, - sym__space, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3149), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2662), 1, + anon_sym_DASH2, + ACTIONS(2718), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(6177), 1, - anon_sym_DOT, - ACTIONS(6179), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6181), 1, - aux_sym__immediate_decimal_token2, STATE(3146), 1, sym_comment, - STATE(3872), 1, - sym__immediate_decimal, - ACTIONS(1622), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6183), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4127), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97509] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT, - ACTIONS(5338), 1, - aux_sym__immediate_decimal_token5, - STATE(3147), 1, - sym_comment, - ACTIONS(1786), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1784), 10, + ACTIONS(2660), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -224579,18 +224883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97538] = 6, + [97606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6185), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3148), 1, + ACTIONS(6227), 1, + anon_sym_AT2, + STATE(3147), 1, sym_comment, - ACTIONS(1878), 11, + STATE(3280), 1, + sym_param_completer, + ACTIONS(5806), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224601,19 +224905,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, - [97567] = 6, + [97633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6188), 1, + ACTIONS(6229), 1, anon_sym_finally, - ACTIONS(6190), 1, + ACTIONS(6231), 1, sym__newline, - STATE(3149), 1, + STATE(3148), 1, sym_comment, - STATE(3154), 1, + STATE(3198), 1, aux_sym__repeat_newline, - ACTIONS(6193), 11, + ACTIONS(6234), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224625,41 +224928,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97596] = 6, + [97662] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_finally, - ACTIONS(6197), 1, - sym__newline, - STATE(3150), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(3149), 1, sym_comment, - STATE(3155), 1, - aux_sym__repeat_newline, - ACTIONS(6200), 11, - anon_sym_SEMI, + STATE(4290), 1, + sym__immediate_decimal, + ACTIONS(6236), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6238), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1642), 4, + anon_sym_if, + 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_RPAREN, - [97625] = 6, + anon_sym_EQ_GT, + [97699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(6202), 1, + ACTIONS(6240), 1, anon_sym_finally, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3151), 1, + STATE(3150), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224671,18 +224978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97654] = 6, + [97728] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6243), 1, anon_sym_finally, - ACTIONS(6207), 1, + ACTIONS(6245), 1, sym__newline, - STATE(3152), 1, + STATE(3151), 1, sym_comment, - STATE(3156), 1, + STATE(3200), 1, aux_sym__repeat_newline, - ACTIONS(6210), 11, + ACTIONS(6248), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224694,14 +225001,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97683] = 4, - ACTIONS(103), 1, + [97757] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2678), 1, + anon_sym_DASH2, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern_in_record, + STATE(3152), 1, + sym_comment, + ACTIONS(2676), 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, + [97786] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1909), 1, sym__space, STATE(3153), 1, sym_comment, - ACTIONS(1887), 13, + ACTIONS(1911), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224715,18 +225045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97708] = 6, - ACTIONS(3), 1, + [97811] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6212), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(2584), 1, + sym__space, STATE(3154), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(2586), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224738,18 +225065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97737] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97836] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6215), 1, - anon_sym_finally, - ACTIONS(6217), 1, - sym__newline, + ACTIONS(2588), 1, + sym__space, STATE(3155), 1, sym_comment, - STATE(3157), 1, - aux_sym__repeat_newline, - ACTIONS(6220), 11, + ACTIONS(2590), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224761,18 +225086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97766] = 6, + anon_sym_RBRACE, + [97861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6222), 1, - anon_sym_finally, - STATE(503), 1, - aux_sym__repeat_newline, STATE(3156), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(6250), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224784,18 +225106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97795] = 6, + anon_sym_RBRACE, + [97884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(6225), 1, + ACTIONS(6252), 1, anon_sym_finally, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, STATE(3157), 1, sym_comment, - ACTIONS(1878), 11, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224807,17 +225130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97824] = 5, - ACTIONS(3), 1, + [97913] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_AT2, + ACTIONS(2592), 1, + sym__space, STATE(3158), 1, sym_comment, - STATE(3309), 1, - sym_param_completer, - ACTIONS(5786), 12, - ts_builtin_sym_end, + ACTIONS(2594), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224829,43 +225149,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, - [97851] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97938] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6228), 1, - anon_sym_LT, - ACTIONS(6230), 1, - anon_sym_DASH2, + ACTIONS(6255), 1, + anon_sym_finally, + ACTIONS(6257), 1, + sym__newline, STATE(3159), 1, sym_comment, - ACTIONS(5243), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(6260), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97878] = 7, + [97967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6232), 1, + ACTIONS(6262), 1, + anon_sym_finally, + ACTIONS(6264), 1, sym__newline, - STATE(702), 1, - aux_sym__pipe_separator, STATE(3160), 1, sym_comment, - STATE(3611), 1, + STATE(3213), 1, aux_sym__repeat_newline, - ACTIONS(6235), 2, + ACTIONS(6267), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224875,78 +225196,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, - [97909] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [97996] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2428), 1, - anon_sym_DASH2, + ACTIONS(2385), 1, + sym__space, STATE(3161), 1, sym_comment, - ACTIONS(2426), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2387), 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, - [97934] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [98021] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DASH2, + ACTIONS(5421), 1, + sym__space, STATE(3162), 1, sym_comment, - ACTIONS(2554), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5419), 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, - [97959] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [98046] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_DASH2, - ACTIONS(6237), 1, - anon_sym_LT, + ACTIONS(2389), 1, + sym__space, STATE(3163), 1, sym_comment, - ACTIONS(5243), 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, - [97986] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3164), 1, - sym_comment, - ACTIONS(5255), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2391), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224958,15 +225258,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, - [98009] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98071] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2354), 1, + ACTIONS(2393), 1, sym__space, - STATE(3165), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2356), 13, + ACTIONS(2395), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224980,18 +225281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98034] = 6, - ACTIONS(103), 1, + [98096] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5895), 1, - sym__newline, - ACTIONS(5897), 1, + ACTIONS(2397), 1, sym__space, - STATE(3051), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3166), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(2399), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225003,14 +225301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98063] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [98121] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2550), 1, + ACTIONS(2656), 1, sym__space, - STATE(3167), 1, + STATE(3166), 1, sym_comment, - ACTIONS(2552), 13, + ACTIONS(2658), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225024,14 +225323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98088] = 4, - ACTIONS(103), 1, + [98146] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2660), 1, + ACTIONS(6271), 1, sym__space, - STATE(3168), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2662), 13, + ACTIONS(6269), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225045,17 +225344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98113] = 5, - ACTIONS(3), 1, + [98171] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_AT2, - STATE(3169), 1, + ACTIONS(5425), 1, + sym__space, + STATE(3168), 1, sym_comment, - STATE(3289), 1, - sym_param_completer, - ACTIONS(5788), 12, - ts_builtin_sym_end, + ACTIONS(5423), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225067,38 +225363,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, - [98140] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2380), 1, - anon_sym_DASH2, - STATE(3170), 1, - sym_comment, - ACTIONS(2378), 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, - [98165] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + [98196] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5132), 1, - sym__unquoted_pattern, - STATE(3171), 1, + STATE(3169), 1, sym_comment, - ACTIONS(884), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(785), 11, + ACTIONS(6273), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225110,21 +225383,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, - [98192] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98219] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6232), 1, - sym__newline, - STATE(702), 1, - aux_sym__pipe_separator, - STATE(3172), 1, + ACTIONS(2413), 1, + sym__space, + STATE(3170), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(6235), 2, + ACTIONS(2415), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(6241), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225134,77 +225404,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, - [98223] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2384), 1, - anon_sym_DASH2, - STATE(3173), 1, - sym_comment, - ACTIONS(2382), 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, - [98248] = 4, + anon_sym_RBRACE, + [98244] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2388), 1, - anon_sym_DASH2, - STATE(3174), 1, - sym_comment, - ACTIONS(2386), 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, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [98273] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2392), 1, - anon_sym_DASH2, - STATE(3175), 1, + STATE(3171), 1, sym_comment, - ACTIONS(2390), 13, - anon_sym_EQ, - sym_identifier, + STATE(4303), 1, + sym__immediate_decimal, + ACTIONS(6236), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6238), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 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, - [98298] = 4, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [98281] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4614), 1, + ACTIONS(2423), 1, sym__space, - STATE(3176), 1, + STATE(3172), 1, sym_comment, - ACTIONS(4612), 13, + ACTIONS(2425), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225218,14 +225454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98323] = 4, - ACTIONS(103), 1, + [98306] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4618), 1, + ACTIONS(2427), 1, sym__space, - STATE(3177), 1, + STATE(3173), 1, sym_comment, - ACTIONS(4616), 13, + ACTIONS(2429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225239,14 +225475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98348] = 4, + [98331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2548), 1, + ACTIONS(811), 1, anon_sym_DASH2, - STATE(3178), 1, + STATE(3174), 1, sym_comment, - ACTIONS(2546), 13, + ACTIONS(914), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -225260,18 +225496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98373] = 6, - ACTIONS(3), 1, + [98356] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_else, - ACTIONS(6246), 1, + ACTIONS(5928), 1, sym__newline, - STATE(3089), 1, - aux_sym__repeat_newline, - STATE(3179), 1, + ACTIONS(5930), 1, + sym__space, + STATE(3175), 1, sym_comment, - ACTIONS(6249), 11, + STATE(3214), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6276), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225283,14 +225519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98402] = 4, + [98385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(1616), 1, anon_sym_DASH2, - STATE(3180), 1, + STATE(3176), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(1738), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -225304,14 +225540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98427] = 4, + [98410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2404), 1, + ACTIONS(2279), 1, anon_sym_DASH2, - STATE(3181), 1, + STATE(3177), 1, sym_comment, - ACTIONS(2402), 13, + ACTIONS(2277), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -225325,41 +225561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98452] = 6, + [98435] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6251), 1, - anon_sym_else, - ACTIONS(6253), 1, - sym__newline, - STATE(3090), 1, - aux_sym__repeat_newline, - STATE(3182), 1, + STATE(3178), 1, sym_comment, - ACTIONS(6256), 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, - [98481] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6258), 1, - anon_sym_else, - ACTIONS(6260), 1, + ACTIONS(5308), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, - STATE(3091), 1, - aux_sym__repeat_newline, - STATE(3183), 1, - sym_comment, - ACTIONS(6263), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225370,15 +225580,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, - [98510] = 4, - ACTIONS(103), 1, + anon_sym_LBRACE, + [98458] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4635), 1, + ACTIONS(2455), 1, sym__space, - STATE(3184), 1, + STATE(3179), 1, sym_comment, - ACTIONS(4633), 13, + ACTIONS(2457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225392,62 +225602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98535] = 4, - ACTIONS(103), 1, + [98483] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3185), 1, - sym_comment, - ACTIONS(5241), 3, - ts_builtin_sym_end, + ACTIONS(2455), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5912), 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, - [98560] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6265), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3186), 1, + STATE(3180), 1, sym_comment, - ACTIONS(1878), 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, - [98589] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6268), 1, - anon_sym_finally, - ACTIONS(6270), 1, + ACTIONS(2457), 13, sym__newline, - STATE(3094), 1, - aux_sym__repeat_newline, - STATE(3187), 1, - sym_comment, - ACTIONS(6273), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225459,170 +225622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98618] = 5, + anon_sym_RBRACE, + [98508] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6128), 1, + ACTIONS(6124), 1, anon_sym_AT2, - STATE(3188), 1, + ACTIONS(6126), 1, + anon_sym_DASH2, + STATE(3181), 1, sym_comment, - STATE(3325), 1, + STATE(3547), 1, sym_param_completer, - ACTIONS(5632), 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, - [98645] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6275), 1, - anon_sym_finally, - ACTIONS(6277), 1, - sym__newline, - STATE(3099), 1, - aux_sym__repeat_newline, - STATE(3189), 1, - sym_comment, - ACTIONS(6280), 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, - [98674] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_finally, - ACTIONS(6284), 1, - sym__newline, - STATE(3100), 1, - aux_sym__repeat_newline, - STATE(3190), 1, - sym_comment, - ACTIONS(6287), 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, - [98703] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3191), 1, - sym_comment, - ACTIONS(5281), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5846), 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, - [98728] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3192), 1, - sym_comment, - ACTIONS(5255), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5820), 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, - [98753] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6289), 1, - sym__newline, - STATE(702), 1, - aux_sym__pipe_separator, - STATE(3193), 1, - sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(6292), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2138), 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, - [98784] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6289), 1, + ACTIONS(5539), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(702), 1, - aux_sym__pipe_separator, - STATE(3194), 1, - sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(6292), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(6294), 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, - [98815] = 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, + [98537] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3182), 1, sym_comment, - ACTIONS(1582), 14, + ACTIONS(5249), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -225636,36 +225665,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_COLON, - [98838] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [98560] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6299), 1, - sym__space, - STATE(3196), 1, + ACTIONS(2582), 1, + anon_sym_DASH2, + STATE(3183), 1, sym_comment, - ACTIONS(6297), 13, + ACTIONS(2580), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [98863] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98585] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5492), 1, - sym__space, - STATE(3197), 1, + ACTIONS(6227), 1, + anon_sym_AT2, + STATE(3184), 1, sym_comment, - ACTIONS(5490), 13, + STATE(3347), 1, + sym_param_completer, + ACTIONS(5539), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225677,16 +225709,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, + [98612] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2712), 1, + anon_sym_DASH2, + STATE(3185), 1, + sym_comment, + ACTIONS(2710), 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_RBRACE, - [98888] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98637] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6303), 1, - sym__space, - STATE(3198), 1, + STATE(3186), 1, sym_comment, - ACTIONS(6301), 13, + ACTIONS(5350), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5878), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225698,16 +225751,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, - [98913] = 4, - ACTIONS(103), 1, + [98662] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6307), 1, + ACTIONS(2459), 1, sym__space, - STATE(3199), 1, + STATE(3187), 1, sym_comment, - ACTIONS(6305), 13, + ACTIONS(2461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225721,14 +225772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98938] = 4, - ACTIONS(103), 1, + [98687] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6311), 1, + ACTIONS(2463), 1, sym__space, - STATE(3200), 1, + STATE(3188), 1, sym_comment, - ACTIONS(6309), 13, + ACTIONS(2465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225742,16 +225793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98963] = 4, - ACTIONS(103), 1, + [98712] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6315), 1, - sym__space, - STATE(3201), 1, - sym_comment, - ACTIONS(6313), 13, + ACTIONS(6164), 1, sym__newline, + STATE(539), 1, + aux_sym__pipe_separator, + STATE(3189), 1, + sym_comment, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(6167), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225761,43 +225817,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, - [98988] = 10, - ACTIONS(3), 1, + [98743] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1642), 1, + sym__space, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(1608), 1, - anon_sym_DOT, - ACTIONS(2898), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - STATE(3202), 1, - sym_comment, - STATE(3967), 1, - sym__immediate_decimal, - ACTIONS(5964), 2, + ACTIONS(6278), 1, + anon_sym_DOT, + ACTIONS(6280), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5966), 2, + STATE(3190), 1, + sym_comment, + STATE(3857), 1, + sym__immediate_decimal, + ACTIONS(1644), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6284), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3966), 2, + STATE(3994), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1600), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [99025] = 4, - ACTIONS(103), 1, + [98786] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6319), 1, + ACTIONS(1901), 1, sym__space, - STATE(3203), 1, + STATE(3191), 1, sym_comment, - ACTIONS(6317), 13, + ACTIONS(1903), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225811,14 +225868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99050] = 4, - ACTIONS(103), 1, + [98811] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5696), 1, + ACTIONS(6288), 1, sym__space, - STATE(3204), 1, + STATE(3192), 1, sym_comment, - ACTIONS(5694), 13, + ACTIONS(6286), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225832,16 +225889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99075] = 4, - ACTIONS(103), 1, + [98836] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3205), 1, - sym_comment, - ACTIONS(5235), 3, - ts_builtin_sym_end, + ACTIONS(6292), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5826), 11, + STATE(3193), 1, + sym_comment, + ACTIONS(6290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225853,18 +225908,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, - [99100] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98861] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5848), 1, - ts_builtin_sym_end, - ACTIONS(5850), 1, - sym__space, - STATE(3206), 1, + ACTIONS(6227), 1, + anon_sym_AT2, + STATE(3194), 1, sym_comment, - STATE(3242), 1, - aux_sym_attribute_repeat1, - ACTIONS(5478), 11, + STATE(3363), 1, + sym_param_completer, + ACTIONS(5808), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225876,15 +225932,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99129] = 4, - ACTIONS(103), 1, + [98888] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6323), 1, - sym__space, - STATE(3207), 1, + ACTIONS(2586), 1, + anon_sym_DASH2, + STATE(3195), 1, + sym_comment, + ACTIONS(2584), 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, + [98913] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2590), 1, + anon_sym_DASH2, + STATE(3196), 1, + sym_comment, + ACTIONS(2588), 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, + [98938] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + ACTIONS(6294), 1, + anon_sym_DOT, + STATE(3197), 1, sym_comment, - ACTIONS(6321), 13, + STATE(3908), 1, + sym__immediate_decimal, + ACTIONS(6296), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6298), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3942), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1642), 3, sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [98977] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + sym__newline, + ACTIONS(6300), 1, + anon_sym_finally, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3198), 1, + sym_comment, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225896,41 +226025,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_RBRACE, - [99154] = 6, + [99006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - anon_sym_AT2, - ACTIONS(6074), 1, + ACTIONS(2594), 1, anon_sym_DASH2, - STATE(3208), 1, + STATE(3199), 1, sym_comment, - STATE(3471), 1, - sym_param_completer, - ACTIONS(5788), 11, + ACTIONS(2592), 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, - [99183] = 4, - ACTIONS(103), 1, + [99031] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(5330), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5842), 11, + ACTIONS(6303), 1, + anon_sym_finally, + ACTIONS(6305), 1, sym__newline, + STATE(3200), 1, + sym_comment, + STATE(3217), 1, + aux_sym__repeat_newline, + ACTIONS(6308), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225941,14 +226068,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, - [99208] = 3, + anon_sym_RPAREN, + [99060] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3210), 1, - sym_comment, - ACTIONS(6325), 14, + ACTIONS(6310), 1, anon_sym_finally, + ACTIONS(6312), 1, sym__newline, + STATE(3201), 1, + sym_comment, + STATE(3219), 1, + aux_sym__repeat_newline, + ACTIONS(6315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225960,15 +226092,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, - [99231] = 4, - ACTIONS(3), 1, + [99089] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6327), 1, - anon_sym_finally, - STATE(3211), 1, + ACTIONS(2467), 1, + sym__space, + STATE(3202), 1, sym_comment, - ACTIONS(6329), 13, + ACTIONS(2469), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225982,14 +226113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99256] = 4, - ACTIONS(103), 1, + [99114] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6333), 1, + ACTIONS(2471), 1, sym__space, - STATE(3212), 1, + STATE(3203), 1, sym_comment, - ACTIONS(6331), 13, + ACTIONS(2473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226003,18 +226134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99281] = 6, - ACTIONS(3), 1, + [99139] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6335), 1, - anon_sym_else, - ACTIONS(6337), 1, - sym__newline, - STATE(3182), 1, - aux_sym__repeat_newline, - STATE(3213), 1, + ACTIONS(2664), 1, + sym__space, + STATE(3204), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(2666), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226026,14 +226154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99310] = 4, + anon_sym_RBRACE, + [99164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2472), 1, + ACTIONS(2387), 1, anon_sym_DASH2, - STATE(3214), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(2385), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226047,14 +226176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99335] = 4, + [99189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2472), 1, + ACTIONS(2391), 1, anon_sym_DASH2, - STATE(3215), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(2389), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226068,41 +226197,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99360] = 6, + [99214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - anon_sym_AT2, - ACTIONS(6342), 1, + ACTIONS(2395), 1, anon_sym_DASH2, - STATE(3216), 1, + STATE(3207), 1, sym_comment, - STATE(3495), 1, - sym_param_completer, - ACTIONS(5632), 11, + ACTIONS(2393), 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, - [99389] = 5, - ACTIONS(103), 1, + [99239] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6344), 1, - anon_sym_LBRACK2, - STATE(3217), 1, + ACTIONS(2399), 1, + anon_sym_DASH2, + STATE(3208), 1, sym_comment, - ACTIONS(2340), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2342), 11, + ACTIONS(2397), 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, + [99264] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2415), 1, + anon_sym_DASH2, + STATE(3209), 1, + sym_comment, + ACTIONS(2413), 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, + [99289] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DASH2, + STATE(3210), 1, + sym_comment, + ACTIONS(2423), 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, + [99314] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2429), 1, + anon_sym_DASH2, + STATE(3211), 1, + sym_comment, + ACTIONS(2427), 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, + [99339] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, sym__newline, + ACTIONS(6317), 1, + anon_sym_finally, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3212), 1, + sym_comment, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226113,18 +226324,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, - [99416] = 6, + anon_sym_RPAREN, + [99368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6346), 1, - anon_sym_else, - ACTIONS(6348), 1, + ACTIONS(6320), 1, + anon_sym_finally, + ACTIONS(6322), 1, sym__newline, - STATE(3183), 1, + STATE(3051), 1, aux_sym__repeat_newline, - STATE(3218), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6351), 11, + ACTIONS(6325), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226136,15 +226348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99445] = 4, - ACTIONS(103), 1, + [99397] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6327), 1, + sym__newline, + ACTIONS(6330), 1, sym__space, - STATE(3219), 1, + STATE(3214), 2, sym_comment, - ACTIONS(6353), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6333), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226156,19 +226370,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [99470] = 6, - ACTIONS(3), 1, + [99424] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6357), 1, - anon_sym_else, - ACTIONS(6359), 1, + STATE(3215), 1, + sym_comment, + ACTIONS(5292), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5834), 11, sym__newline, - STATE(3186), 1, - aux_sym__repeat_newline, - STATE(3220), 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, + [99449] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5912), 1, + sym__space, + ACTIONS(6335), 1, + ts_builtin_sym_end, + STATE(3105), 1, + aux_sym_attribute_repeat1, + STATE(3216), 1, sym_comment, - ACTIONS(6362), 11, + ACTIONS(6020), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226179,19 +226414,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, - [99499] = 6, + [99478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6364), 1, - anon_sym_finally, - ACTIONS(6366), 1, + ACTIONS(1890), 1, sym__newline, - STATE(3190), 1, + ACTIONS(6337), 1, + anon_sym_finally, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3221), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226203,13 +226437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99528] = 3, - ACTIONS(3), 1, + [99507] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3222), 1, + ACTIONS(6340), 1, + anon_sym_LBRACK2, + STATE(3218), 1, sym_comment, - ACTIONS(6371), 14, - anon_sym_EQ, + ACTIONS(2375), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2377), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226221,16 +226459,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, - [99551] = 3, + [99534] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3223), 1, - sym_comment, - ACTIONS(6373), 14, + ACTIONS(6342), 1, anon_sym_finally, + ACTIONS(6344), 1, sym__newline, + STATE(3219), 1, + sym_comment, + STATE(3241), 1, + aux_sym__repeat_newline, + ACTIONS(6347), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226242,16 +226482,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, - [99574] = 4, - ACTIONS(103), 1, + [99563] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6378), 1, - sym__space, - STATE(3224), 1, - sym_comment, - ACTIONS(6376), 13, + ACTIONS(6349), 1, + anon_sym_else, + ACTIONS(6351), 1, sym__newline, + STATE(3220), 1, + sym_comment, + STATE(3224), 1, + aux_sym__repeat_newline, + ACTIONS(6354), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226263,15 +226505,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, - [99599] = 4, - ACTIONS(103), 1, + [99592] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__space, - STATE(3225), 1, + ACTIONS(6227), 1, + anon_sym_AT2, + STATE(3221), 1, sym_comment, - ACTIONS(5348), 13, + STATE(3394), 1, + sym_param_completer, + ACTIONS(5539), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226283,58 +226527,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [99624] = 4, - ACTIONS(3), 1, + [99619] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2476), 1, - anon_sym_DASH2, - STATE(3226), 1, + ACTIONS(6358), 1, + sym__space, + STATE(3222), 1, sym_comment, - ACTIONS(2474), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6356), 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, - [99649] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99644] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2480), 1, - anon_sym_DASH2, - STATE(3227), 1, + ACTIONS(6362), 1, + sym__space, + STATE(3223), 1, sym_comment, - ACTIONS(2478), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6360), 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, - [99674] = 3, + anon_sym_RBRACE, + [99669] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3228), 1, - sym_comment, - ACTIONS(6380), 14, - anon_sym_EQ, + ACTIONS(6364), 1, + anon_sym_else, + ACTIONS(6366), 1, sym__newline, + STATE(3143), 1, + aux_sym__repeat_newline, + STATE(3224), 1, + sym_comment, + ACTIONS(6369), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226346,20 +226592,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, - [99697] = 6, - ACTIONS(103), 1, + [99698] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5850), 1, - sym__space, - ACTIONS(6382), 1, - ts_builtin_sym_end, - STATE(3229), 1, - sym_comment, - STATE(3253), 1, - aux_sym_attribute_repeat1, - ACTIONS(6033), 11, + ACTIONS(6371), 1, + anon_sym_else, + ACTIONS(6373), 1, sym__newline, + STATE(3225), 1, + sym_comment, + STATE(3228), 1, + aux_sym__repeat_newline, + ACTIONS(6376), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226370,13 +226614,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, - [99726] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [99727] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3226), 1, sym_comment, - ACTIONS(6380), 14, - anon_sym_EQ, + ACTIONS(2348), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2350), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226388,20 +226636,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, - [99749] = 6, + [99752] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5231), 1, anon_sym_LPAREN2, - ACTIONS(6386), 1, + ACTIONS(5956), 1, anon_sym_DASH2, - STATE(3231), 1, + STATE(3227), 1, sym_comment, - STATE(5470), 1, + STATE(5042), 1, sym__expr_parenthesized_immediate, - ACTIONS(6384), 11, + ACTIONS(5954), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -226413,40 +226659,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99778] = 6, + [99781] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6390), 1, - anon_sym_DASH2, - STATE(3232), 1, - sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6388), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1890), 1, sym__newline, + ACTIONS(6378), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3228), 1, + sym_comment, + ACTIONS(1888), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99807] = 4, - ACTIONS(103), 1, + [99810] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3233), 1, - sym_comment, - ACTIONS(2116), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2118), 11, + ACTIONS(6381), 1, + anon_sym_else, + ACTIONS(6383), 1, sym__newline, + STATE(3229), 1, + sym_comment, + STATE(3233), 1, + aux_sym__repeat_newline, + ACTIONS(6386), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226457,35 +226704,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, - [99832] = 6, + anon_sym_RPAREN, + [99839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, + ACTIONS(2457), 1, anon_sym_DASH2, - STATE(3234), 1, + STATE(3230), 1, sym_comment, - STATE(5044), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5881), 11, + ACTIONS(2455), 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, - [99861] = 3, + [99864] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3235), 1, + ACTIONS(2457), 1, + anon_sym_DASH2, + STATE(3231), 1, + sym_comment, + ACTIONS(2455), 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, + [99889] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3232), 1, sym_comment, - ACTIONS(1893), 14, + ACTIONS(6388), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -226500,14 +226767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99884] = 3, + [99912] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3236), 1, - sym_comment, - ACTIONS(6392), 14, - anon_sym_EQ, + ACTIONS(1890), 1, sym__newline, + ACTIONS(6390), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3233), 1, + sym_comment, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226519,19 +226790,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, - [99907] = 6, + [99941] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6396), 1, + ACTIONS(2606), 1, anon_sym_DASH2, - STATE(3237), 1, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern_in_record, + STATE(3234), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6394), 11, + ACTIONS(2604), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -226543,35 +226813,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99936] = 6, + [99970] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6400), 1, + ACTIONS(1893), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6393), 1, + sym__newline, + STATE(3235), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1888), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - STATE(3238), 1, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [99997] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3236), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6398), 11, + ACTIONS(2664), 14, anon_sym_EQ, - sym_identifier, 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, - [99965] = 3, + anon_sym_RBRACE, + [100020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3239), 1, + STATE(3237), 1, sym_comment, - ACTIONS(5235), 14, + ACTIONS(5476), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -226585,22 +226874,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_LBRACE, - [99988] = 7, + anon_sym_AT2, + [100043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5968), 1, + ACTIONS(1890), 1, sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, - STATE(3240), 1, - sym_comment, - STATE(3611), 1, + ACTIONS(6396), 1, + anon_sym_else, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(5971), 2, - ts_builtin_sym_end, + STATE(3238), 1, + sym_comment, + ACTIONS(1888), 11, anon_sym_SEMI, - ACTIONS(6024), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -226610,14 +226897,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, - [100019] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [100072] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3241), 1, + STATE(3239), 1, sym_comment, - ACTIONS(5330), 14, + ACTIONS(5265), 3, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_EQ2, + ACTIONS(5816), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226629,20 +226919,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_LBRACE, - [100042] = 6, - ACTIONS(103), 1, + [100097] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5850), 1, + ACTIONS(6401), 1, sym__space, - ACTIONS(6402), 1, - ts_builtin_sym_end, - STATE(3242), 1, + STATE(3240), 1, sym_comment, - STATE(3256), 1, - aux_sym_attribute_repeat1, - ACTIONS(6040), 11, + ACTIONS(6399), 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, + [100122] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, sym__newline, + ACTIONS(6403), 1, + anon_sym_finally, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3241), 1, + sym_comment, + ACTIONS(1888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226653,14 +226962,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, - [100071] = 4, + anon_sym_RPAREN, + [100151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2356), 1, + ACTIONS(2461), 1, anon_sym_DASH2, - STATE(3243), 1, + STATE(3242), 1, sym_comment, - ACTIONS(2354), 13, + ACTIONS(2459), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226674,14 +226984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100096] = 4, + [100176] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2552), 1, + ACTIONS(2465), 1, anon_sym_DASH2, - STATE(3244), 1, + STATE(3243), 1, sym_comment, - ACTIONS(2550), 13, + ACTIONS(2463), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226695,13 +227005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100121] = 3, + [100201] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3244), 1, sym_comment, - ACTIONS(5674), 14, - ts_builtin_sym_end, + ACTIONS(6388), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -226714,15 +227023,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, - [100144] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100224] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, - sym_comment, - ACTIONS(2668), 14, - anon_sym_EQ, + ACTIONS(6406), 1, + anon_sym_finally, + ACTIONS(6408), 1, sym__newline, + STATE(3148), 1, + aux_sym__repeat_newline, + STATE(3245), 1, + sym_comment, + ACTIONS(6411), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226734,15 +227048,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [100167] = 3, + [100253] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + ACTIONS(1242), 1, + anon_sym_DASH2, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_record, + STATE(3246), 1, sym_comment, - ACTIONS(5678), 14, - ts_builtin_sym_end, + ACTIONS(1258), 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, + [100282] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4633), 1, + sym__space, + STATE(3247), 1, + sym_comment, + ACTIONS(4631), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226754,14 +227090,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, - [100190] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100307] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3248), 1, sym_comment, - ACTIONS(5241), 14, - ts_builtin_sym_end, + ACTIONS(1909), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -226774,15 +227110,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_LBRACE, - [100213] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100330] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__space, + ACTIONS(1234), 1, + anon_sym_DASH2, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_record, STATE(3249), 1, sym_comment, - ACTIONS(2110), 13, + ACTIONS(1250), 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, + [100359] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5501), 1, + sym__space, + STATE(3250), 1, + sym_comment, + ACTIONS(5499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226796,21 +227156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100238] = 7, - ACTIONS(3), 1, + [100384] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5802), 1, - sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, - STATE(3250), 1, + STATE(3251), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(5805), 2, + ACTIONS(5247), 3, ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5891), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(5990), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -226820,13 +227177,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, - [100269] = 3, + [100409] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3251), 1, + ACTIONS(2469), 1, + anon_sym_DASH2, + STATE(3252), 1, + sym_comment, + ACTIONS(2467), 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, + [100434] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2473), 1, + anon_sym_DASH2, + STATE(3253), 1, sym_comment, - ACTIONS(1885), 14, + ACTIONS(2471), 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, + [100459] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3254), 1, + sym_comment, + ACTIONS(2361), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2363), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226838,16 +227240,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, - [100292] = 3, + [100484] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, - sym_comment, - ACTIONS(2660), 14, - anon_sym_EQ, + ACTIONS(6413), 1, + anon_sym_finally, + ACTIONS(6415), 1, sym__newline, + STATE(3150), 1, + aux_sym__repeat_newline, + STATE(3255), 1, + sym_comment, + ACTIONS(6418), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226859,19 +227263,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, - [100315] = 6, - ACTIONS(103), 1, + [100513] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5850), 1, - sym__space, - ACTIONS(6404), 1, - ts_builtin_sym_end, - STATE(3253), 1, - sym_comment, + ACTIONS(5171), 1, + sym__unquoted_pattern, STATE(3256), 1, - aux_sym_attribute_repeat1, - ACTIONS(5824), 11, + sym_comment, + ACTIONS(914), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226883,18 +227285,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, - [100344] = 6, + [100540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6406), 1, - anon_sym_else, - ACTIONS(6408), 1, - sym__newline, - STATE(3220), 1, - aux_sym__repeat_newline, - STATE(3254), 1, + STATE(3257), 1, sym_comment, - ACTIONS(6411), 11, + ACTIONS(2656), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226906,39 +227304,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100373] = 5, + anon_sym_RBRACE, + [100563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6413), 1, - sym__newline, - STATE(3255), 2, - aux_sym__repeat_newline, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2106), 1, + anon_sym_DASH2, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(3258), 1, sym_comment, - ACTIONS(1878), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, + ACTIONS(2104), 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_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [100400] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100592] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6416), 1, - ts_builtin_sym_end, - ACTIONS(6418), 1, + ACTIONS(6422), 1, sym__space, - STATE(3256), 2, + STATE(3259), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(6035), 11, + ACTIONS(6420), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226950,14 +227347,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, - [100427] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100617] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3257), 1, + ACTIONS(6426), 1, + sym__space, + STATE(3260), 1, sym_comment, - ACTIONS(5243), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6424), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226969,16 +227368,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_AT2, - [100450] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100642] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, - sym_comment, - ACTIONS(5295), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_finally, + ACTIONS(6430), 1, sym__newline, + STATE(3157), 1, + aux_sym__repeat_newline, + STATE(3261), 1, + sym_comment, + ACTIONS(6433), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226989,37 +227392,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_LBRACE, - [100473] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [100671] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2560), 1, - anon_sym_DASH2, - STATE(3259), 1, + ACTIONS(6437), 1, + sym__space, + STATE(3262), 1, sym_comment, - ACTIONS(2558), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6435), 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, - [100498] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [100696] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3260), 1, + STATE(3263), 1, sym_comment, - ACTIONS(2390), 2, + ACTIONS(5421), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2392), 11, + ACTIONS(5419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227031,15 +227434,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, - [100522] = 4, - ACTIONS(103), 1, + [100720] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3264), 1, sym_comment, - ACTIONS(5696), 2, + ACTIONS(6271), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5694), 11, + ACTIONS(6269), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227051,41 +227454,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, - [100546] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(3262), 1, - sym_comment, - STATE(4565), 1, - sym__immediate_decimal, - ACTIONS(6421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6423), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100582] = 4, - ACTIONS(103), 1, + [100744] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2249), 2, + ACTIONS(5425), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2251), 11, + ACTIONS(5423), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227097,14 +227474,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, - [100606] = 4, - ACTIONS(3), 1, + [100768] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(3266), 1, sym_comment, - STATE(3286), 1, - aux_sym__repeat_newline, - ACTIONS(5648), 12, + ACTIONS(2431), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2433), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227116,44 +227494,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, - [100630] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6425), 1, - anon_sym_DOLLAR, - ACTIONS(6427), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token2, - STATE(3265), 1, - sym_comment, - STATE(4313), 1, - sym__immediate_decimal, - ACTIONS(1622), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6433), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4669), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100670] = 4, - ACTIONS(103), 1, + [100792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2660), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2662), 11, + ACTIONS(6439), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227165,43 +227511,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, - [100694] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - sym__entry_separator, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6054), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6056), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6435), 1, - anon_sym_DOT, - STATE(3267), 1, - sym_comment, - STATE(4168), 1, - sym__immediate_decimal, - ACTIONS(1604), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6058), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4167), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100734] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100814] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3268), 1, sym_comment, - ACTIONS(2257), 2, + ACTIONS(2435), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2259), 11, + ACTIONS(2437), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227213,15 +227533,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, - [100758] = 4, - ACTIONS(103), 1, + [100838] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3269), 1, sym_comment, - ACTIONS(2354), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2356), 11, + ACTIONS(6441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227233,34 +227550,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, - [100782] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6439), 1, - anon_sym_DASH2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(3270), 1, sym_comment, - ACTIONS(6437), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5718), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - 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, - [100806] = 4, - ACTIONS(103), 1, + [100884] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6443), 1, - sym__space, STATE(3271), 1, sym_comment, - ACTIONS(6441), 12, + ACTIONS(2439), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227272,44 +227592,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, - [100830] = 12, - ACTIONS(103), 1, + [100908] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1620), 1, - sym__space, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5826), 1, anon_sym_DOLLAR, - ACTIONS(6445), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6447), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5966), 1, + anon_sym_RBRACK, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, STATE(3272), 1, sym_comment, - STATE(4356), 1, - sym__immediate_decimal, - ACTIONS(1622), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6449), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3057), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100870] = 4, - ACTIONS(103), 1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [100954] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3273), 1, sym_comment, - ACTIONS(2550), 2, + ACTIONS(5545), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2552), 11, + ACTIONS(5543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227321,125 +227643,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100894] = 4, - ACTIONS(3), 1, + [100978] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_DASH2, STATE(3274), 1, sym_comment, - ACTIONS(5243), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6115), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6113), 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, - [100918] = 15, - 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, + [101002] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(5958), 1, - anon_sym_RBRACK, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, STATE(3275), 1, sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [100964] = 15, + ACTIONS(2443), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2445), 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, + [101026] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(5820), 1, sym_identifier, - ACTIONS(5834), 1, + ACTIONS(5826), 1, anon_sym_DOLLAR, - ACTIONS(5836), 1, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - ACTIONS(6042), 1, - anon_sym_RPAREN, - STATE(2543), 1, + ACTIONS(5962), 1, + anon_sym_PIPE, + STATE(2564), 1, sym_param_long_flag, - STATE(2656), 1, + STATE(2724), 1, sym__param_name, - STATE(2997), 1, + STATE(3042), 1, aux_sym_parameter_parens_repeat1, STATE(3276), 1, sym_comment, - STATE(3488), 1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, sym_param_rest, - STATE(3489), 1, + STATE(3609), 1, sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, + STATE(3860), 1, sym_parameter, - [101010] = 15, - ACTIONS(3), 1, + [101072] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6451), 1, - anon_sym_PIPE, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, STATE(3277), 1, sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [101056] = 3, - ACTIONS(3), 1, + ACTIONS(2447), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2449), 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, + [101096] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3278), 1, sym_comment, - ACTIONS(4875), 13, + ACTIONS(2451), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227451,14 +227754,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, - [101078] = 3, - ACTIONS(3), 1, + [101120] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3279), 1, sym_comment, - ACTIONS(6453), 13, + ACTIONS(2381), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2383), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227470,14 +227774,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, - [101100] = 3, + [101144] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3280), 1, sym_comment, - ACTIONS(6455), 13, + ACTIONS(6250), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227489,14 +227793,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, - [101122] = 3, + [101166] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6445), 1, + anon_sym_else, STATE(3281), 1, sym_comment, - ACTIONS(6457), 13, + ACTIONS(6443), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227508,106 +227813,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, - anon_sym_RBRACE, - [101144] = 15, - ACTIONS(3), 1, + [101190] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6459), 1, - anon_sym_RBRACK, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, STATE(3282), 1, sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [101190] = 15, - ACTIONS(3), 1, + ACTIONS(2467), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2469), 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, + [101214] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6461), 1, - anon_sym_RPAREN, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, STATE(3283), 1, sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [101236] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6425), 1, - anon_sym_DOLLAR, - ACTIONS(6427), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token2, - STATE(3284), 1, - sym_comment, - STATE(4351), 1, - sym__immediate_decimal, - ACTIONS(1647), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6433), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4529), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101276] = 4, + ACTIONS(2471), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2473), 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, + [101238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6463), 1, + ACTIONS(6447), 1, anon_sym_DASH2, - STATE(3285), 1, + STATE(3284), 1, sym_comment, - ACTIONS(5460), 12, + ACTIONS(5385), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -227620,60 +227873,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101300] = 4, + [101262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3286), 1, + ACTIONS(6449), 1, + anon_sym_DASH2, + STATE(3285), 1, sym_comment, - ACTIONS(5570), 12, + ACTIONS(5387), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101324] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - sym__space, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6445), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6447), 1, - aux_sym__immediate_decimal_token2, - STATE(3287), 1, - sym_comment, - STATE(4245), 1, - sym__immediate_decimal, - ACTIONS(1647), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6449), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3088), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101364] = 3, - ACTIONS(3), 1, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101286] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3286), 1, sym_comment, - ACTIONS(5790), 13, + ACTIONS(2186), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2188), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227685,16 +227913,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, - [101386] = 3, - ACTIONS(3), 1, + [101310] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3289), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6380), 13, + ACTIONS(2385), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2387), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227706,15 +227933,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, - [101408] = 4, - ACTIONS(103), 1, + [101334] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3290), 1, + STATE(3288), 1, sym_comment, - ACTIONS(2378), 2, + ACTIONS(6362), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2380), 11, + ACTIONS(6360), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227726,12 +227953,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, - [101432] = 3, + [101358] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6141), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6143), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6451), 1, + anon_sym_DOT, + STATE(3289), 1, + sym_comment, + STATE(4095), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6145), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101398] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, + STATE(3290), 1, sym_comment, - ACTIONS(4881), 13, + ACTIONS(6453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227745,12 +228000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101454] = 3, + [101420] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3292), 1, + STATE(3291), 1, sym_comment, - ACTIONS(5946), 13, + ACTIONS(5976), 13, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -227764,35 +228019,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, - [101476] = 4, - ACTIONS(103), 1, + [101442] = 12, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3293), 1, - sym_comment, - ACTIONS(1893), 2, - ts_builtin_sym_end, + ACTIONS(1642), 1, sym__space, - ACTIONS(1895), 11, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(6455), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6457), 1, + aux_sym__immediate_decimal_token2, + STATE(3292), 1, + sym_comment, + STATE(4336), 1, + sym__immediate_decimal, + ACTIONS(1644), 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, - [101500] = 4, - ACTIONS(103), 1, + ACTIONS(6459), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3113), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101482] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3293), 1, sym_comment, - ACTIONS(2382), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2384), 11, + STATE(3306), 1, + aux_sym__repeat_newline, + ACTIONS(5708), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227804,35 +228066,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, - [101524] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [101506] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + ACTIONS(6461), 1, + anon_sym_DASH2, + STATE(3294), 1, sym_comment, - ACTIONS(6355), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6353), 11, + ACTIONS(5389), 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, - [101548] = 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, + [101530] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6463), 1, + anon_sym_DASH2, + STATE(3295), 1, + sym_comment, + ACTIONS(5391), 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, + [101554] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3296), 1, sym_comment, - ACTIONS(2386), 2, + ACTIONS(2664), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2388), 11, + ACTIONS(2666), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227844,34 +228127,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, - [101572] = 4, + [101578] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6465), 1, - anon_sym_EQ, + anon_sym_DASH2, STATE(3297), 1, sym_comment, - ACTIONS(6467), 12, + ACTIONS(5393), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [101596] = 4, + 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, + [101602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6469), 1, - anon_sym_else, + ACTIONS(6467), 1, + anon_sym_DASH2, STATE(3298), 1, sym_comment, - ACTIONS(6471), 12, + ACTIONS(5395), 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, + [101626] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3299), 1, + sym_comment, + ACTIONS(2389), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227883,65 +228187,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [101620] = 13, - ACTIONS(103), 1, + [101650] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1622), 1, - anon_sym_RBRACK, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6477), 1, - aux_sym__immediate_decimal_token2, - STATE(3299), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(3300), 1, sym_comment, - STATE(3916), 1, + STATE(4371), 1, sym__immediate_decimal, - ACTIONS(6479), 2, + ACTIONS(6469), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6471), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4197), 2, + STATE(925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101662] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3300), 1, - sym_comment, - ACTIONS(4614), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4612), 11, + ACTIONS(1642), 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, - [101686] = 4, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [101686] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3301), 1, sym_comment, - ACTIONS(2668), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2670), 11, + ACTIONS(6115), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227953,33 +228230,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, - [101710] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101708] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6473), 1, + anon_sym_DASH2, STATE(3302), 1, sym_comment, - ACTIONS(1893), 13, - ts_builtin_sym_end, + ACTIONS(5397), 12, anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, [101732] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3303), 1, sym_comment, - ACTIONS(5948), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6475), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227991,15 +228269,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, - [101754] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101754] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3304), 1, sym_comment, - ACTIONS(2426), 2, + ACTIONS(6273), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2428), 11, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228011,14 +228290,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, - [101778] = 3, + [101776] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(3270), 1, + aux_sym__repeat_newline, STATE(3305), 1, sym_comment, - ACTIONS(6380), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5788), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228030,43 +228309,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, - [101800] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + [101800] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - sym__space, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4982), 1, - anon_sym_DOT, - ACTIONS(6179), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6181), 1, - aux_sym__immediate_decimal_token2, + STATE(501), 1, + aux_sym__repeat_newline, STATE(3306), 1, sym_comment, - STATE(4117), 1, - sym__immediate_decimal, - ACTIONS(1604), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6183), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4116), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101840] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3307), 1, - sym_comment, - ACTIONS(2394), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2396), 11, + ACTIONS(5680), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228078,12 +228329,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, - [101864] = 3, + anon_sym_RPAREN, + [101824] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3307), 1, sym_comment, - ACTIONS(6481), 13, + ACTIONS(6477), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228097,14 +228349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101886] = 3, + [101846] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3308), 1, sym_comment, - ACTIONS(6371), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228116,97 +228366,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, - [101908] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101868] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + ACTIONS(6483), 1, + anon_sym_DASH2, + STATE(3309), 1, sym_comment, - ACTIONS(2414), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2416), 11, + ACTIONS(6481), 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, - [101932] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6483), 1, - anon_sym_RBRACK, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, - STATE(3311), 1, - sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [101978] = 15, + [101892] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(5820), 1, sym_identifier, - ACTIONS(5834), 1, + ACTIONS(5824), 1, + anon_sym_RPAREN, + ACTIONS(5826), 1, anon_sym_DOLLAR, - ACTIONS(5836), 1, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - ACTIONS(6485), 1, - anon_sym_RPAREN, - STATE(2543), 1, + STATE(2564), 1, sym_param_long_flag, - STATE(2656), 1, + STATE(2724), 1, sym__param_name, - STATE(2997), 1, + STATE(3042), 1, aux_sym_parameter_parens_repeat1, - STATE(3312), 1, + STATE(3310), 1, sym_comment, - STATE(3488), 1, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, sym_param_rest, - STATE(3489), 1, + STATE(3609), 1, sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, + STATE(3860), 1, sym_parameter, - [102024] = 4, - ACTIONS(103), 1, + [101938] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(3311), 1, sym_comment, - ACTIONS(2418), 2, + ACTIONS(2393), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2420), 11, + ACTIONS(2395), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228218,15 +228439,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, - [102048] = 4, - ACTIONS(103), 1, + [101962] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3314), 1, + STATE(3312), 1, sym_comment, - ACTIONS(2554), 2, + ACTIONS(2397), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2556), 11, + ACTIONS(2399), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228238,167 +228459,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102072] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(5960), 1, - anon_sym_RBRACK, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, - STATE(3315), 1, - sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [102118] = 9, - ACTIONS(3), 1, + [101986] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(765), 1, - sym__immediate_decimal, - STATE(3316), 1, + STATE(3313), 1, sym_comment, - ACTIONS(5966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6487), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(764), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1600), 4, - anon_sym_if, + ACTIONS(6288), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6286), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [102152] = 5, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102010] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, - anon_sym_DASH2, - STATE(3317), 1, + ACTIONS(6487), 1, + sym__space, + STATE(3314), 1, sym_comment, - ACTIONS(6489), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6485), 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, - [102178] = 9, - ACTIONS(3), 1, + [102034] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6489), 1, anon_sym_DOLLAR, - STATE(786), 1, - sym__immediate_decimal, - STATE(3318), 1, - sym_comment, - ACTIONS(5966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6487), 2, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, aux_sym__immediate_decimal_token2, - STATE(785), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [102212] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(802), 1, - sym__immediate_decimal, - STATE(3319), 1, + STATE(3315), 1, sym_comment, - ACTIONS(5966), 2, + STATE(4220), 1, + sym__immediate_decimal, + ACTIONS(1644), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6497), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6487), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(801), 2, + STATE(4414), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1681), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [102246] = 9, - ACTIONS(3), 1, + [102074] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1689), 1, + sym__space, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - STATE(804), 1, - sym__immediate_decimal, - STATE(3320), 1, + ACTIONS(6455), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6457), 1, + aux_sym__immediate_decimal_token2, + STATE(3316), 1, sym_comment, - ACTIONS(5966), 2, + STATE(4339), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6459), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6487), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(803), 2, + STATE(3136), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1685), 4, - anon_sym_if, + [102114] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3317), 1, + sym_comment, + ACTIONS(2455), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2457), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [102280] = 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, + [102138] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3321), 1, + STATE(3318), 1, sym_comment, - ACTIONS(2546), 2, + ACTIONS(2455), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2548), 11, + ACTIONS(2457), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228410,15 +228595,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, - [102304] = 4, - ACTIONS(103), 1, + [102162] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3322), 1, + STATE(3319), 1, + sym_comment, + ACTIONS(6499), 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, + [102184] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3320), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(2656), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4633), 11, + ACTIONS(2658), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228430,14 +228634,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, - [102328] = 3, + [102208] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3323), 1, + STATE(3321), 1, sym_comment, - ACTIONS(6373), 13, + ACTIONS(5982), 13, ts_builtin_sym_end, - anon_sym_finally, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228449,12 +228653,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, - [102350] = 3, + [102230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3324), 1, + ACTIONS(6501), 1, + anon_sym_else, + STATE(3322), 1, sym_comment, - ACTIONS(6495), 13, + ACTIONS(6443), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228466,16 +228672,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, - [102372] = 3, - ACTIONS(3), 1, + [102254] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3325), 1, + STATE(3323), 1, sym_comment, - ACTIONS(6392), 13, + ACTIONS(6292), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(6290), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228487,43 +228693,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102394] = 15, + [102278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(6085), 1, + anon_sym_DASH2, + STATE(3324), 1, + sym_comment, + ACTIONS(5249), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5832), 1, + sym__newline, anon_sym_PIPE, - ACTIONS(5834), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5836), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5840), 1, + [102302] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6505), 1, anon_sym_DASH2, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, - STATE(3326), 1, + STATE(3325), 1, sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [102440] = 3, - ACTIONS(3), 1, + ACTIONS(6503), 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, + [102326] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1644), 1, + anon_sym_RBRACK, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6507), 1, + anon_sym_DOT, + ACTIONS(6509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token2, + STATE(3326), 1, + sym_comment, + STATE(3918), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4049), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102368] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3327), 1, sym_comment, - ACTIONS(6497), 13, + ACTIONS(2401), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2403), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228535,17 +228782,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, - [102462] = 4, - ACTIONS(103), 1, + [102392] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3328), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(914), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2400), 11, + ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228557,15 +228802,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, - [102486] = 4, - ACTIONS(103), 1, + [102416] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6515), 1, + anon_sym_EQ, STATE(3329), 1, sym_comment, - ACTIONS(2402), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2404), 11, + ACTIONS(6517), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228577,15 +228821,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, - [102510] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [102440] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3330), 1, sym_comment, - ACTIONS(2558), 2, + ACTIONS(2405), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2560), 11, + ACTIONS(2407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228597,12 +228842,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, - [102534] = 3, + [102464] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3331), 1, sym_comment, - ACTIONS(6499), 13, + ACTIONS(1909), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228614,14 +228861,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, - [102556] = 3, - ACTIONS(3), 1, + [102486] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3332), 1, sym_comment, - ACTIONS(6501), 13, + ACTIONS(6210), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6208), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228633,14 +228881,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, - [102578] = 3, - ACTIONS(3), 1, + [102510] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3333), 1, sym_comment, - ACTIONS(6503), 13, + ACTIONS(1738), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228652,17 +228901,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, - [102600] = 4, - ACTIONS(103), 1, + [102534] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3334), 1, sym_comment, - ACTIONS(5346), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5344), 11, + ACTIONS(6517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228674,15 +228918,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, - [102624] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102556] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3335), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(2409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6331), 11, + ACTIONS(2411), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228694,15 +228940,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, - [102648] = 4, - ACTIONS(103), 1, + [102580] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3336), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(2596), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5348), 11, + ACTIONS(2598), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228714,15 +228960,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, - [102672] = 4, - ACTIONS(103), 1, + [102604] = 9, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(923), 1, + sym__immediate_decimal, STATE(3337), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(5926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6519), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(922), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1628), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [102638] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3338), 1, + sym_comment, + ACTIONS(2592), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2408), 11, + ACTIONS(2594), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228734,55 +229005,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, - [102696] = 5, + [102662] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_DASH2, - ACTIONS(5184), 1, - sym__unquoted_pattern_in_record, - STATE(3338), 1, - sym_comment, - ACTIONS(884), 11, - anon_sym_EQ, + ACTIONS(5820), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_DOLLAR, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - [102722] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6507), 1, + ACTIONS(5832), 1, anon_sym_DASH2, + ACTIONS(6521), 1, + anon_sym_RBRACK, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, STATE(3339), 1, sym_comment, - ACTIONS(6505), 12, - anon_sym_EQ, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [102708] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_DOLLAR, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [102746] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(6523), 1, + anon_sym_RPAREN, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, STATE(3340), 1, sym_comment, - ACTIONS(2668), 13, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [102754] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3341), 1, + sym_comment, + ACTIONS(2277), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2279), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228794,15 +229087,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, - [102768] = 4, - ACTIONS(103), 1, + [102778] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3342), 1, sym_comment, - ACTIONS(2450), 2, + ACTIONS(2656), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2452), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228814,15 +229106,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, - [102792] = 4, - ACTIONS(103), 1, + [102800] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3342), 1, + STATE(3343), 1, sym_comment, - ACTIONS(2454), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2456), 11, + ACTIONS(6525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228834,15 +229123,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, - [102816] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102822] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3343), 1, + ACTIONS(6529), 1, + anon_sym_DASH2, + STATE(3344), 1, sym_comment, - ACTIONS(2458), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2460), 11, + ACTIONS(6527), 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, + [102846] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6531), 1, + anon_sym_EQ, + STATE(3345), 1, + sym_comment, + ACTIONS(6517), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228854,15 +229164,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, - [102840] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [102870] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3344), 1, + STATE(3346), 1, sym_comment, - ACTIONS(2462), 2, + ACTIONS(1901), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2464), 11, + ACTIONS(1903), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228874,15 +229185,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, - [102864] = 4, - ACTIONS(103), 1, + [102894] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3345), 1, + STATE(3347), 1, sym_comment, - ACTIONS(2466), 2, + ACTIONS(6388), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2468), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228894,55 +229204,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, - [102888] = 4, + [102916] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6509), 1, - anon_sym_DASH2, - STATE(3346), 1, - sym_comment, - ACTIONS(5383), 12, - anon_sym_EQ, + ACTIONS(5820), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - [102912] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6511), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - STATE(3347), 1, - sym_comment, - ACTIONS(5385), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(6533), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102936] = 4, - ACTIONS(103), 1, - anon_sym_POUND, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, STATE(3348), 1, sym_comment, - ACTIONS(884), 2, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [102962] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3349), 1, + sym_comment, + ACTIONS(2413), 2, ts_builtin_sym_end, sym__space, - ACTIONS(785), 11, + ACTIONS(2415), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228954,54 +229255,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, - [102960] = 4, + [102986] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - STATE(3349), 1, - sym_comment, - ACTIONS(5387), 12, + ACTIONS(6535), 1, anon_sym_EQ, - sym_identifier, + STATE(3350), 1, + sym_comment, + ACTIONS(6517), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102984] = 4, + [103010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6515), 1, - anon_sym_DASH2, - STATE(3350), 1, + ACTIONS(6537), 1, + anon_sym_else, + STATE(3351), 1, sym_comment, - ACTIONS(5389), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6443), 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, + [103034] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103008] = 4, + STATE(3352), 1, + sym_comment, + STATE(4377), 1, + sym__immediate_decimal, + ACTIONS(6469), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6471), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [103070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6517), 1, + ACTIONS(6539), 1, anon_sym_DASH2, - STATE(3351), 1, + STATE(3353), 1, sym_comment, - ACTIONS(5391), 12, + ACTIONS(5476), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -229014,64 +229341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103032] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_DOLLAR, - ACTIONS(5836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5838), 1, - anon_sym_DASH_DASH, - ACTIONS(5840), 1, - anon_sym_DASH2, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(2543), 1, - sym_param_long_flag, - STATE(2656), 1, - sym__param_name, - STATE(2997), 1, - aux_sym_parameter_parens_repeat1, - STATE(3352), 1, - sym_comment, - STATE(3488), 1, - sym_param_rest, - STATE(3489), 1, - sym_param_opt, - STATE(3491), 1, - sym_param_short_flag, - STATE(3849), 1, - sym_parameter, - [103078] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3353), 1, - sym_comment, - ACTIONS(6323), 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, - [103100] = 4, + [103094] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6519), 1, + ACTIONS(6543), 1, + anon_sym_QMARK, + ACTIONS(6545), 1, anon_sym_DASH2, STATE(3354), 1, sym_comment, - ACTIONS(5393), 12, + ACTIONS(6541), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229081,15 +229360,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, - [103124] = 3, - ACTIONS(3), 1, + [103120] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3355), 1, sym_comment, - ACTIONS(6467), 13, + ACTIONS(2580), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2582), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229101,34 +229382,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [103146] = 4, - ACTIONS(103), 1, + [103144] = 12, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1628), 1, + sym__space, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(4990), 1, + anon_sym_DOT, + ACTIONS(6280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, STATE(3356), 1, sym_comment, - ACTIONS(1714), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1588), 11, + STATE(3987), 1, + sym__immediate_decimal, + ACTIONS(1632), 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, - [103170] = 3, - ACTIONS(3), 1, + ACTIONS(6284), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4106), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103184] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3357), 1, sym_comment, - ACTIONS(6521), 13, + ACTIONS(6401), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6399), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229140,14 +229430,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, - [103192] = 3, - ACTIONS(3), 1, + [103208] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3358), 1, sym_comment, - ACTIONS(6523), 13, + ACTIONS(2710), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2712), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229159,55 +229450,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, - [103214] = 3, - ACTIONS(3), 1, + [103232] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3359), 1, sym_comment, - ACTIONS(6525), 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, - [103236] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3360), 1, - sym_comment, - ACTIONS(6527), 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, - [103258] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3361), 1, - sym_comment, - ACTIONS(6171), 2, + ACTIONS(2166), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6169), 11, + ACTIONS(2168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229219,15 +229470,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, - [103282] = 4, - ACTIONS(103), 1, + [103256] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3362), 1, + STATE(3360), 1, sym_comment, - ACTIONS(6175), 2, + ACTIONS(5501), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6173), 11, + ACTIONS(5499), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229239,54 +229490,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, - [103306] = 4, + [103280] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6531), 1, - anon_sym_DASH2, - STATE(3363), 1, - sym_comment, - ACTIONS(6529), 12, - anon_sym_EQ, + ACTIONS(5820), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_DOLLAR, + ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [103330] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6533), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - STATE(3364), 1, - sym_comment, - ACTIONS(5395), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6547), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103354] = 4, - ACTIONS(3), 1, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, + STATE(3361), 1, + sym_comment, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [103326] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3365), 1, + STATE(3362), 1, sym_comment, - ACTIONS(5720), 12, + ACTIONS(2154), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2156), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229298,16 +229541,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, - [103378] = 4, - ACTIONS(103), 1, + [103350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3366), 1, + STATE(3363), 1, sym_comment, - ACTIONS(2470), 2, + ACTIONS(6089), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2472), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229319,15 +229560,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, - [103402] = 4, - ACTIONS(103), 1, + [103372] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3367), 1, + STATE(3364), 1, sym_comment, - ACTIONS(2470), 2, + ACTIONS(2459), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2472), 11, + ACTIONS(2461), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229339,15 +229580,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, - [103426] = 4, - ACTIONS(103), 1, + [103396] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3368), 1, + ACTIONS(2128), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3365), 1, + sym_comment, + ACTIONS(2126), 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, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [103420] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3366), 1, sym_comment, - ACTIONS(2350), 2, + ACTIONS(2463), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2352), 11, + ACTIONS(2465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229359,15 +229620,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, - [103450] = 4, - ACTIONS(103), 1, + [103444] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3369), 1, + STATE(3367), 1, sym_comment, - ACTIONS(2368), 2, + ACTIONS(2174), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2370), 11, + ACTIONS(2176), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229379,12 +229640,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, - [103474] = 3, + [103468] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6451), 1, + anon_sym_DOT, + ACTIONS(6509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token2, + STATE(3368), 1, + sym_comment, + STATE(4042), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4028), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103508] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3370), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6535), 13, + ACTIONS(6154), 13, + ts_builtin_sym_end, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229396,17 +229687,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, + [103530] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1644), 1, anon_sym_RBRACE, - [103496] = 4, - ACTIONS(103), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(6551), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6553), 1, + aux_sym__immediate_decimal_token2, + STATE(3370), 1, + sym_comment, + STATE(3913), 1, + sym__immediate_decimal, + ACTIONS(6555), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4049), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103572] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3371), 1, sym_comment, - ACTIONS(4618), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4616), 11, + ACTIONS(5638), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229418,15 +229733,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, - [103520] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103594] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6537), 1, - anon_sym_else, STATE(3372), 1, sym_comment, - ACTIONS(6471), 12, + ACTIONS(2423), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229438,14 +229755,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, - [103544] = 3, - ACTIONS(3), 1, + [103618] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3373), 1, sym_comment, - ACTIONS(1885), 13, + ACTIONS(2427), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2429), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229457,62 +229775,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103566] = 4, - ACTIONS(103), 1, + [103642] = 15, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5887), 1, + anon_sym_RBRACK, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, STATE(3374), 1, sym_comment, - ACTIONS(6323), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6321), 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, - [103590] = 10, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [103688] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, + STATE(761), 1, + sym__immediate_decimal, STATE(3375), 1, sym_comment, - STATE(4557), 1, - sym__immediate_decimal, - ACTIONS(6421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6423), 2, + ACTIONS(5926), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(768), 2, + ACTIONS(6519), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(760), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1620), 3, + ACTIONS(1707), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [103626] = 4, - ACTIONS(103), 1, + [103722] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6174), 1, + sym__newline, + ACTIONS(6557), 1, + anon_sym_else, STATE(3376), 1, sym_comment, - ACTIONS(2372), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2374), 11, - sym__newline, + STATE(3379), 1, + aux_sym__repeat_newline, + ACTIONS(6177), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229523,16 +229853,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, - [103650] = 4, - ACTIONS(103), 1, + [103750] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6101), 1, + sym__newline, + ACTIONS(6559), 1, + anon_sym_else, STATE(3377), 1, sym_comment, - ACTIONS(2241), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2243), 11, - sym__newline, + STATE(3381), 1, + aux_sym__repeat_newline, + ACTIONS(6104), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229543,16 +229875,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, - [103674] = 4, - ACTIONS(103), 1, + [103778] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6108), 1, + sym__newline, + ACTIONS(6561), 1, + anon_sym_else, STATE(3378), 1, sym_comment, - ACTIONS(2630), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2632), 11, - sym__newline, + STATE(3382), 1, + aux_sym__repeat_newline, + ACTIONS(6111), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229563,15 +229897,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, - [103698] = 3, + [103806] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6119), 1, + sym__newline, + ACTIONS(6563), 1, + anon_sym_else, STATE(3379), 1, sym_comment, - ACTIONS(2660), 13, - ts_builtin_sym_end, - anon_sym_EQ, - sym__newline, + STATE(3383), 1, + aux_sym__repeat_newline, + ACTIONS(6122), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229582,15 +229919,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, - [103720] = 4, + [103834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6539), 1, - anon_sym_EQ, + ACTIONS(6351), 1, + sym__newline, + ACTIONS(6565), 1, + anon_sym_else, STATE(3380), 1, sym_comment, - ACTIONS(6467), 12, - sym__newline, + STATE(3384), 1, + aux_sym__repeat_newline, + ACTIONS(6354), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229601,16 +229941,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, - [103744] = 4, + [103862] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6373), 1, + sym__newline, + ACTIONS(6567), 1, anon_sym_else, STATE(3381), 1, sym_comment, - ACTIONS(6471), 12, - sym__newline, + STATE(3385), 1, + aux_sym__repeat_newline, + ACTIONS(6376), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229621,17 +229963,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, - [103768] = 4, - ACTIONS(103), 1, + [103890] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6383), 1, + sym__newline, + ACTIONS(6569), 1, + anon_sym_else, STATE(3382), 1, sym_comment, - ACTIONS(4639), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4637), 11, - sym__newline, + STATE(3386), 1, + aux_sym__repeat_newline, + ACTIONS(6386), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229642,15 +229985,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, - [103792] = 3, + [103918] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1890), 1, + sym__newline, + ACTIONS(6571), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, STATE(3383), 1, sym_comment, - ACTIONS(6325), 13, - ts_builtin_sym_end, - anon_sym_finally, - sym__newline, + ACTIONS(1888), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229661,16 +230007,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, - [103814] = 4, + [103946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6543), 1, - anon_sym_finally, + ACTIONS(6366), 1, + sym__newline, + ACTIONS(6574), 1, + anon_sym_else, STATE(3384), 1, sym_comment, - ACTIONS(6329), 12, - ts_builtin_sym_end, - sym__newline, + STATE(3387), 1, + aux_sym__repeat_newline, + ACTIONS(6369), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229681,16 +230029,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, - [103838] = 4, - ACTIONS(103), 1, + [103974] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1890), 1, + sym__newline, + ACTIONS(6576), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, STATE(3385), 1, sym_comment, - ACTIONS(2474), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2476), 11, - sym__newline, + ACTIONS(1888), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229701,45 +230051,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, - [103862] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1622), 1, - anon_sym_RBRACE, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6545), 1, - anon_sym_DOT, - ACTIONS(6547), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6549), 1, - aux_sym__immediate_decimal_token2, - STATE(3386), 1, - sym_comment, - STATE(3886), 1, - sym__immediate_decimal, - ACTIONS(6551), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4197), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103904] = 4, + [104002] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6553), 1, - anon_sym_EQ, - STATE(3387), 1, - sym_comment, - ACTIONS(6467), 12, - ts_builtin_sym_end, + ACTIONS(1890), 1, sym__newline, + ACTIONS(6579), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3386), 1, + sym_comment, + ACTIONS(1888), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229750,16 +230073,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, - [103928] = 4, - ACTIONS(103), 1, + [104030] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3388), 1, - sym_comment, - ACTIONS(2478), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2480), 11, + ACTIONS(1890), 1, sym__newline, + ACTIONS(6582), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3387), 1, + sym_comment, + ACTIONS(1888), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229770,15 +230095,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, - [103952] = 4, - ACTIONS(103), 1, + [104058] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3389), 1, + STATE(3388), 1, sym_comment, - ACTIONS(6378), 2, + ACTIONS(6422), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6376), 11, + ACTIONS(6420), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229790,38 +230115,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103976] = 4, + [104082] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6555), 1, - anon_sym_EQ, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(5889), 1, + anon_sym_RPAREN, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, + STATE(3389), 1, + sym_comment, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [104128] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(763), 1, + sym__immediate_decimal, STATE(3390), 1, sym_comment, - ACTIONS(6467), 12, + ACTIONS(5926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6519), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(762), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 4, + 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, - [104000] = 6, + anon_sym_EQ_GT, + [104162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6408), 1, - sym__newline, - ACTIONS(6557), 1, - anon_sym_else, STATE(3391), 1, sym_comment, - STATE(3394), 1, - aux_sym__repeat_newline, - ACTIONS(6411), 10, + ACTIONS(1901), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229832,62 +230190,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, - [104028] = 6, + [104184] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6337), 1, - sym__newline, - ACTIONS(6559), 1, - anon_sym_else, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(765), 1, + sym__immediate_decimal, STATE(3392), 1, sym_comment, - STATE(3396), 1, - aux_sym__repeat_newline, - ACTIONS(6340), 10, - anon_sym_SEMI, + ACTIONS(5926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6519), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 4, + anon_sym_if, + 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, - [104056] = 6, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [104218] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6348), 1, - sym__newline, - ACTIONS(6561), 1, - anon_sym_else, + ACTIONS(1689), 1, + sym__entry_separator, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6489), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, + aux_sym__immediate_decimal_token2, STATE(3393), 1, sym_comment, - STATE(3397), 1, - aux_sym__repeat_newline, - ACTIONS(6351), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [104084] = 6, + STATE(4224), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4416), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104258] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6359), 1, - sym__newline, - ACTIONS(6563), 1, - anon_sym_else, STATE(3394), 1, sym_comment, - STATE(3398), 1, - aux_sym__repeat_newline, - ACTIONS(6362), 10, + ACTIONS(6388), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229898,18 +230262,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, - [104112] = 6, - ACTIONS(3), 1, + [104280] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6246), 1, - sym__newline, - ACTIONS(6565), 1, - anon_sym_else, STATE(3395), 1, sym_comment, - STATE(3399), 1, - aux_sym__repeat_newline, - ACTIONS(6249), 10, + ACTIONS(4637), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4635), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229920,18 +230282,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, - [104140] = 6, - ACTIONS(3), 1, + [104304] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6253), 1, - sym__newline, - ACTIONS(6567), 1, - anon_sym_else, STATE(3396), 1, sym_comment, - STATE(3400), 1, - aux_sym__repeat_newline, - ACTIONS(6256), 10, + ACTIONS(4641), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4639), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229942,18 +230302,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, - [104168] = 6, - ACTIONS(3), 1, + [104328] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6260), 1, - sym__newline, - ACTIONS(6569), 1, - anon_sym_else, STATE(3397), 1, sym_comment, - STATE(3401), 1, - aux_sym__repeat_newline, - ACTIONS(6263), 10, + ACTIONS(4645), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4643), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229964,18 +230322,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, - [104196] = 6, + [104352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6571), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(6585), 1, + anon_sym_finally, STATE(3398), 1, sym_comment, - ACTIONS(1878), 10, + ACTIONS(6158), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229986,18 +230342,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104224] = 6, + [104376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - sym__newline, - ACTIONS(6574), 1, - anon_sym_else, + ACTIONS(811), 1, + anon_sym_DASH2, + ACTIONS(5241), 1, + sym__unquoted_pattern_in_record, STATE(3399), 1, sym_comment, - STATE(3402), 1, - aux_sym__repeat_newline, - ACTIONS(6081), 10, + ACTIONS(914), 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, + [104402] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, + sym_identifier, + ACTIONS(5826), 1, + anon_sym_DOLLAR, + ACTIONS(5828), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 1, + anon_sym_DASH_DASH, + ACTIONS(5832), 1, + anon_sym_DASH2, + ACTIONS(6587), 1, + anon_sym_PIPE, + STATE(2564), 1, + sym_param_long_flag, + STATE(2724), 1, + sym__param_name, + STATE(3042), 1, + aux_sym_parameter_parens_repeat1, + STATE(3400), 1, + sym_comment, + STATE(3462), 1, + sym_param_short_flag, + STATE(3499), 1, + sym_param_rest, + STATE(3609), 1, + sym_param_opt, + STATE(3860), 1, + sym_parameter, + [104448] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3401), 1, + sym_comment, + ACTIONS(6589), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230008,18 +230411,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, - [104252] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6576), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3400), 1, + ACTIONS(6591), 1, + anon_sym_EQ, + STATE(3402), 1, sym_comment, - ACTIONS(1878), 10, + ACTIONS(6517), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230030,18 +230433,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, - [104280] = 6, + [104494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6579), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3401), 1, + STATE(3403), 1, sym_comment, - ACTIONS(1878), 10, + ACTIONS(2664), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230052,18 +230452,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, - [104308] = 6, + [104516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__newline, - ACTIONS(6582), 1, - anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3402), 1, + STATE(3404), 1, sym_comment, - ACTIONS(1878), 10, + ACTIONS(6593), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230074,15 +230469,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, - [104336] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104538] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3403), 1, + STATE(3405), 1, sym_comment, - ACTIONS(1885), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1887), 11, + ACTIONS(4899), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230094,15 +230488,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, - [104360] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104560] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3404), 1, + STATE(3406), 1, sym_comment, - ACTIONS(6299), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6297), 11, + ACTIONS(6595), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230114,15 +230507,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, - [104384] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104582] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3405), 1, + STATE(3407), 1, sym_comment, - ACTIONS(5492), 2, + ACTIONS(6426), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5490), 11, + ACTIONS(6424), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230134,15 +230529,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, - [104408] = 4, - ACTIONS(103), 1, + [104606] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3406), 1, + STATE(3408), 1, sym_comment, - ACTIONS(2108), 2, + ACTIONS(6358), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2110), 11, + ACTIONS(6356), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230154,15 +230549,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, - [104432] = 4, - ACTIONS(103), 1, + [104630] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3407), 1, + STATE(3409), 1, sym_comment, - ACTIONS(6303), 2, + ACTIONS(6437), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6301), 11, + ACTIONS(6435), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230174,15 +230569,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, - [104456] = 4, - ACTIONS(103), 1, + [104654] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(3410), 1, sym_comment, - ACTIONS(6307), 2, + ACTIONS(6162), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6305), 11, + ACTIONS(6160), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230194,15 +230589,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, - [104480] = 4, - ACTIONS(103), 1, + [104678] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3409), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6311), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6309), 11, + ACTIONS(4893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230214,35 +230606,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, - [104504] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3410), 1, - sym_comment, - ACTIONS(1965), 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, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [104528] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3411), 1, + STATE(3412), 1, sym_comment, - ACTIONS(6315), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6313), 11, + ACTIONS(6597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230254,15 +230625,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, - [104552] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104722] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3412), 1, + STATE(3413), 1, sym_comment, - ACTIONS(6319), 2, + ACTIONS(1909), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6317), 11, + ACTIONS(1911), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230274,42 +230647,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, - [104576] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - sym__entry_separator, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6435), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6477), 1, - aux_sym__immediate_decimal_token2, - STATE(3413), 1, - sym_comment, - STATE(4194), 1, - sym__immediate_decimal, - ACTIONS(1604), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4193), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104616] = 4, + [104746] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3365), 1, - aux_sym__repeat_newline, STATE(3414), 1, sym_comment, - ACTIONS(5552), 12, + ACTIONS(6599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230322,15 +230665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104640] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [104768] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3415), 1, sym_comment, - ACTIONS(2410), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2412), 11, + ACTIONS(6601), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230342,12 +230683,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, - [104664] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104790] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3416), 1, sym_comment, - ACTIONS(6585), 12, + ACTIONS(2584), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2586), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230359,14 +230705,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, - [104685] = 3, - ACTIONS(3), 1, + [104814] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3417), 1, sym_comment, - ACTIONS(5790), 12, + ACTIONS(2588), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2590), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230378,12 +230725,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, - [104706] = 3, - ACTIONS(3), 1, + [104838] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3418), 1, sym_comment, - ACTIONS(6587), 12, + ACTIONS(4633), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4631), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230395,32 +230745,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [104727] = 4, + [104862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5875), 1, - anon_sym_DASH2, STATE(3419), 1, sym_comment, - ACTIONS(5873), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6603), 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, - [104750] = 3, + [104883] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3420), 1, sym_comment, - ACTIONS(6589), 12, + ACTIONS(6605), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230433,54 +230781,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104771] = 6, - ACTIONS(3), 1, + [104904] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6591), 1, - sym__newline, - ACTIONS(6594), 1, - anon_sym_DASH2, - STATE(3421), 1, - sym_comment, - ACTIONS(1965), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4509), 8, - sym_identifier, - anon_sym_PIPE, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1644), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104798] = 4, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6611), 1, + aux_sym__immediate_decimal_token2, + STATE(3421), 1, + sym_comment, + STATE(4444), 1, + sym__immediate_decimal, + ACTIONS(6613), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4414), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6598), 1, - anon_sym_DASH2, STATE(3422), 1, sym_comment, - ACTIONS(6596), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6615), 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, - [104821] = 4, + [104964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(6619), 1, anon_sym_DASH2, STATE(3423), 1, sym_comment, - ACTIONS(2406), 11, + ACTIONS(6617), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230492,14 +230845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104844] = 4, + [104987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(6623), 1, anon_sym_DASH2, STATE(3424), 1, sym_comment, - ACTIONS(2410), 11, + ACTIONS(6621), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230511,12 +230864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104867] = 3, + [105010] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3425), 1, sym_comment, - ACTIONS(4899), 12, + ACTIONS(6595), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230528,116 +230882,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [104888] = 4, + [105031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5918), 1, - anon_sym_DASH2, STATE(3426), 1, sym_comment, - ACTIONS(5916), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6589), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104911] = 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, + [105052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2452), 1, - anon_sym_DASH2, STATE(3427), 1, sym_comment, - ACTIONS(2450), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6593), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104934] = 12, - 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, + [105073] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1756), 1, anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(6137), 1, anon_sym_LPAREN2, - ACTIONS(6054), 1, + ACTIONS(6141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6056), 1, + ACTIONS(6143), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6600), 1, + ACTIONS(6625), 1, anon_sym_RBRACK, - ACTIONS(6602), 1, + ACTIONS(6627), 1, anon_sym_DOLLAR2, - ACTIONS(6604), 1, + ACTIONS(6629), 1, aux_sym__unquoted_in_list_token2, STATE(3428), 1, sym_comment, - STATE(3859), 1, + STATE(3835), 1, sym__immediate_decimal, - ACTIONS(6058), 2, + ACTIONS(6145), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4166), 2, + STATE(4091), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104973] = 3, - ACTIONS(3), 1, + [105112] = 11, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1707), 1, + sym__entry_separator, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6633), 1, + aux_sym__immediate_decimal_token2, STATE(3429), 1, sym_comment, - ACTIONS(6606), 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, - [104994] = 3, - ACTIONS(3), 1, + STATE(4376), 1, + sym__immediate_decimal, + ACTIONS(1709), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4374), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105149] = 11, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1677), 1, + sym__entry_separator, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6633), 1, + aux_sym__immediate_decimal_token2, STATE(3430), 1, sym_comment, - ACTIONS(6608), 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, - [105015] = 4, + STATE(4381), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105186] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6633), 1, + aux_sym__immediate_decimal_token2, + STATE(3431), 1, + sym_comment, + STATE(4394), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4386), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105223] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1689), 1, + sym__entry_separator, + ACTIONS(1691), 1, + anon_sym_RBRACK, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6611), 1, + aux_sym__immediate_decimal_token2, + STATE(3432), 1, + sym_comment, + STATE(4556), 1, + sym__immediate_decimal, + ACTIONS(6613), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4416), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6612), 1, + ACTIONS(6635), 1, anon_sym_DASH2, - STATE(3431), 1, + STATE(3433), 1, sym_comment, - ACTIONS(6610), 11, + ACTIONS(5976), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230649,14 +231069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105038] = 4, + [105285] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(6637), 1, anon_sym_DASH2, - STATE(3432), 1, + STATE(3434), 1, sym_comment, - ACTIONS(2454), 11, + ACTIONS(5982), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230668,12 +231088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105061] = 3, + [105308] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3433), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6614), 12, + ACTIONS(6475), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230685,51 +231106,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105082] = 4, + [105329] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2460), 1, - anon_sym_DASH2, - STATE(3434), 1, - sym_comment, - ACTIONS(2458), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2903), 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, - [105105] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2464), 1, - anon_sym_DASH2, - STATE(3435), 1, + STATE(615), 1, + aux_sym__pipe_separator, + STATE(3436), 1, sym_comment, - ACTIONS(2462), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(2075), 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, - [105128] = 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, + [105356] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3436), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6453), 12, + ACTIONS(6441), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -230742,50 +231145,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, - [105149] = 4, + [105377] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, - anon_sym_DASH2, - STATE(3437), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2466), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6479), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [105172] = 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, + [105398] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_DASH2, - STATE(3438), 1, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + aux_sym__immediate_decimal_token5, + STATE(3439), 1, sym_comment, - ACTIONS(5235), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(751), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [105195] = 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(753), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105425] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3440), 1, sym_comment, - ACTIONS(6616), 12, + ACTIONS(6517), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230797,76 +231202,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, - [105216] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5842), 1, - anon_sym_DASH2, - STATE(3440), 1, - sym_comment, - ACTIONS(5330), 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, - [105239] = 6, + [105446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6618), 1, - anon_sym_DOT, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token5, STATE(3441), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(6453), 12, + ts_builtin_sym_end, 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, - [105266] = 8, - 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, + [105467] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(383), 1, - sym_cell_path, STATE(3442), 1, sym_comment, - STATE(3613), 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_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [105297] = 3, + ACTIONS(6499), 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, + [105488] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3443), 1, sym_comment, - ACTIONS(6624), 12, + ACTIONS(6525), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230878,39 +231256,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105318] = 11, - ACTIONS(103), 1, + [105509] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1689), 1, sym__entry_separator, - ACTIONS(6050), 1, + ACTIONS(1691), 1, + anon_sym_RBRACE, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6137), 1, anon_sym_LPAREN2, - ACTIONS(6626), 1, + ACTIONS(6607), 1, anon_sym_DOLLAR, - ACTIONS(6628), 1, + ACTIONS(6643), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, STATE(3444), 1, sym_comment, - STATE(4660), 1, + STATE(4634), 1, sym__immediate_decimal, - ACTIONS(1604), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6479), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4656), 2, + STATE(4416), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105355] = 3, + [105548] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6649), 1, + anon_sym_DOT, + ACTIONS(6651), 1, + aux_sym__immediate_decimal_token5, STATE(3445), 1, sym_comment, - ACTIONS(6632), 12, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 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, + [105575] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3446), 1, + sym_comment, + ACTIONS(6439), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230922,93 +231322,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105376] = 7, - ACTIONS(103), 1, + [105596] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1460), 1, - anon_sym_BANG, - ACTIONS(6634), 1, - anon_sym_QMARK2, - STATE(350), 1, - sym__path_suffix, - STATE(3446), 1, + ACTIONS(6653), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token5, + STATE(3447), 1, sym_comment, - ACTIONS(1450), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1448), 6, + ACTIONS(759), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [105405] = 4, + sym__unquoted_pattern_in_list, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105623] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5912), 1, + ACTIONS(1893), 1, anon_sym_DASH2, - STATE(3447), 1, + ACTIONS(6657), 1, + sym__newline, + STATE(3448), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5241), 11, + ACTIONS(1888), 9, anon_sym_EQ, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105648] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6660), 1, + sym__newline, + ACTIONS(6663), 1, + anon_sym_DASH2, + STATE(3449), 1, + sym_comment, + ACTIONS(2126), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4529), 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, - [105428] = 3, + [105675] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + ACTIONS(5956), 1, + anon_sym_DASH2, + STATE(3450), 1, sym_comment, - ACTIONS(6636), 12, + ACTIONS(5954), 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, - [105449] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105698] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(6489), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, + aux_sym__immediate_decimal_token2, + STATE(3451), 1, + sym_comment, + STATE(4366), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4548), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105735] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + sym__entry_separator, + ACTIONS(6489), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, + aux_sym__immediate_decimal_token2, + STATE(3452), 1, + sym_comment, + STATE(4376), 1, + sym__immediate_decimal, + ACTIONS(1709), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4374), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105772] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__entry_separator, + ACTIONS(6489), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, + aux_sym__immediate_decimal_token2, + STATE(3453), 1, + sym_comment, + STATE(4381), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105809] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(6489), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, + aux_sym__immediate_decimal_token2, + STATE(3454), 1, + sym_comment, + STATE(4394), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4386), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105846] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6638), 1, + ACTIONS(6665), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token5, - STATE(3449), 1, + STATE(3455), 1, sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(761), 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, - [105476] = 3, + [105873] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3450), 1, + STATE(3456), 1, sym_comment, - ACTIONS(6642), 12, + ACTIONS(6669), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231021,12 +231546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105497] = 3, + [105894] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3451), 1, + STATE(3457), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(4893), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231039,31 +231564,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, - [105518] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2110), 1, - anon_sym_DASH2, - STATE(3452), 1, - sym_comment, - ACTIONS(2108), 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, - [105541] = 3, + [105915] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3453), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6467), 12, + ACTIONS(6597), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231076,12 +231582,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, - [105562] = 3, + [105936] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3454), 1, + STATE(3459), 1, sym_comment, - ACTIONS(6644), 12, + ACTIONS(6671), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231094,12 +231600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105583] = 3, + [105957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3460), 1, sym_comment, - ACTIONS(6646), 12, + ACTIONS(6673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231112,89 +231618,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105604] = 12, - ACTIONS(103), 1, + [105978] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1620), 1, + ACTIONS(1642), 1, sym__entry_separator, - ACTIONS(1622), 1, - anon_sym_RBRACK, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6050), 1, + ACTIONS(1644), 1, + anon_sym_RBRACE, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6137), 1, anon_sym_LPAREN2, - ACTIONS(6626), 1, + ACTIONS(6607), 1, anon_sym_DOLLAR, - ACTIONS(6648), 1, + ACTIONS(6643), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6650), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3456), 1, + STATE(3461), 1, sym_comment, - STATE(4517), 1, + STATE(4610), 1, sym__immediate_decimal, - ACTIONS(6652), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4669), 2, + STATE(4414), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105643] = 3, + [106017] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3457), 1, + ACTIONS(6677), 1, + anon_sym_DASH2, + STATE(3462), 1, sym_comment, - ACTIONS(6654), 12, + ACTIONS(6675), 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, - [105664] = 11, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1620), 1, - anon_sym_LBRACE, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(6656), 1, - anon_sym_DOT, - STATE(3458), 1, + ACTIONS(5908), 1, + anon_sym_DASH2, + STATE(3463), 1, sym_comment, - STATE(4285), 1, - sym__immediate_decimal, - ACTIONS(6658), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6660), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4383), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105701] = 6, + ACTIONS(5906), 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, + [106063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - STATE(702), 1, - aux_sym__pipe_separator, - STATE(3459), 1, + STATE(3464), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(2138), 9, + ACTIONS(4899), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231204,12 +231701,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, - [105728] = 3, + [106084] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3460), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6662), 12, + ACTIONS(6599), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231221,13 +231719,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, - [105749] = 3, + [106105] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3461), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6664), 12, + ACTIONS(4901), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231240,12 +231737,13 @@ 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, + [106126] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3462), 1, + STATE(3467), 1, sym_comment, - ACTIONS(6666), 12, + ACTIONS(6601), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231257,31 +231755,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, - [105791] = 3, + [106147] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3463), 1, + ACTIONS(6681), 1, + anon_sym_DASH2, + STATE(3468), 1, sym_comment, - ACTIONS(6668), 12, + ACTIONS(6679), 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, - [105812] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106170] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3469), 1, sym_comment, - ACTIONS(6670), 12, + ACTIONS(6683), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231294,12 +231792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105833] = 3, + [106191] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3465), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6672), 12, + ACTIONS(6685), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231312,38 +231810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105854] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - sym__space, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(6674), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6676), 1, - aux_sym__immediate_decimal_token2, - STATE(3055), 1, - sym__immediate_decimal, - STATE(3466), 1, - sym_comment, - ACTIONS(1604), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6183), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3054), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105891] = 3, + [106212] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3467), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6678), 12, + ACTIONS(6687), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231356,12 +231828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105912] = 3, + [106233] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3468), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6680), 12, + ACTIONS(6689), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231374,51 +231846,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105933] = 4, - ACTIONS(3), 1, + [106254] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6682), 1, - anon_sym_DASH2, - STATE(3469), 1, + ACTIONS(6691), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(383), 1, + sym_cell_path, + STATE(3473), 1, sym_comment, - ACTIONS(6371), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(3634), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1468), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1466), 5, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [105956] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [106285] = 12, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3470), 1, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1644), 1, + anon_sym_RBRACE, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6693), 1, + anon_sym_DOT, + STATE(3474), 1, sym_comment, - ACTIONS(6455), 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, - [105977] = 4, + STATE(4207), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4049), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6684), 1, + ACTIONS(2156), 1, anon_sym_DASH2, - STATE(3471), 1, + STATE(3475), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(2154), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231430,12 +231915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106000] = 3, + [106347] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3472), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6686), 12, + ACTIONS(6695), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231448,12 +231933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106021] = 3, + [106368] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3473), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6688), 12, + ACTIONS(6697), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231466,12 +231951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106042] = 3, + [106389] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3474), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6690), 12, + ACTIONS(6699), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231484,18 +231969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106063] = 6, + [106410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - STATE(710), 1, - aux_sym__pipe_separator, - STATE(3475), 1, + STATE(3479), 1, sym_comment, - STATE(3611), 1, - aux_sym__repeat_newline, - ACTIONS(2138), 9, + ACTIONS(6701), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231505,117 +231986,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [106090] = 11, - ACTIONS(103), 1, + anon_sym_RPAREN, + [106431] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1600), 1, - sym__entry_separator, - ACTIONS(6425), 1, - anon_sym_DOLLAR, - ACTIONS(6427), 1, + ACTIONS(1628), 1, + sym__space, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token2, - STATE(3476), 1, - sym_comment, - STATE(4660), 1, - sym__immediate_decimal, - ACTIONS(1604), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6433), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4656), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106127] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(6425), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(6427), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6703), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, + ACTIONS(6705), 1, aux_sym__immediate_decimal_token2, - STATE(3477), 1, - sym_comment, - STATE(4603), 1, + STATE(3111), 1, sym__immediate_decimal, - ACTIONS(1671), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6433), 2, + STATE(3480), 1, + sym_comment, + ACTIONS(1632), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6284), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4568), 2, + STATE(3110), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106164] = 11, - ACTIONS(103), 1, + [106468] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(6425), 1, - anon_sym_DOLLAR, - ACTIONS(6427), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token2, - STATE(3478), 1, + STATE(3481), 1, sym_comment, - STATE(4561), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6433), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4443), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106201] = 11, - ACTIONS(103), 1, + ACTIONS(6707), 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, + [106489] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - sym__entry_separator, - ACTIONS(6425), 1, - anon_sym_DOLLAR, - ACTIONS(6427), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token2, - STATE(3479), 1, + STATE(3482), 1, sym_comment, - STATE(4479), 1, - sym__immediate_decimal, - ACTIONS(1687), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6433), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4641), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106238] = 3, + ACTIONS(6709), 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, + [106510] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3480), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6521), 12, - ts_builtin_sym_end, + ACTIONS(6711), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231627,13 +232066,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, - [106259] = 3, + anon_sym_RPAREN, + [106531] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3481), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6523), 12, - ts_builtin_sym_end, + ACTIONS(6713), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231645,90 +232084,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, - [106280] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token2, - STATE(3482), 1, - sym_comment, - STATE(4603), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4568), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106317] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token2, - STATE(3483), 1, - sym_comment, - STATE(4561), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4443), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106354] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1685), 1, - sym__entry_separator, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token2, - STATE(3484), 1, - sym_comment, - STATE(4479), 1, - sym__immediate_decimal, - ACTIONS(1687), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4641), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106391] = 3, + anon_sym_RPAREN, + [106552] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3485), 1, sym_comment, - ACTIONS(6692), 12, + ACTIONS(6715), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231741,41 +232103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106412] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6054), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6056), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6602), 1, - anon_sym_DOLLAR2, - ACTIONS(6604), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6694), 1, - anon_sym_RBRACK, - STATE(3486), 1, - sym_comment, - STATE(3859), 1, - sym__immediate_decimal, - ACTIONS(6058), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4166), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106451] = 4, + [106573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(2598), 1, anon_sym_DASH2, - STATE(3487), 1, + STATE(3486), 1, sym_comment, - ACTIONS(5295), 11, + ACTIONS(2596), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231787,14 +232122,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106474] = 4, + [106596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6698), 1, + ACTIONS(2168), 1, anon_sym_DASH2, - STATE(3488), 1, + STATE(3487), 1, sym_comment, - ACTIONS(6696), 11, + ACTIONS(2166), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231806,14 +232141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106497] = 4, + [106619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6702), 1, + ACTIONS(2176), 1, anon_sym_DASH2, - STATE(3489), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6700), 11, + ACTIONS(2174), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231825,32 +232160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106520] = 3, + [106642] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3490), 1, + ACTIONS(2188), 1, + anon_sym_DASH2, + STATE(3489), 1, sym_comment, - ACTIONS(6704), 12, + ACTIONS(2186), 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, - [106541] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6708), 1, + ACTIONS(5863), 1, anon_sym_DASH2, - STATE(3491), 1, + STATE(3490), 1, sym_comment, - ACTIONS(6706), 11, + ACTIONS(5861), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231862,12 +232198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106564] = 3, + [106688] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6525), 12, + ACTIONS(6115), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231880,14 +232216,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, - [106585] = 4, + [106709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(6719), 1, anon_sym_DASH2, - STATE(3493), 1, + STATE(3492), 1, sym_comment, - ACTIONS(5255), 11, + ACTIONS(6717), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231899,32 +232235,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106608] = 3, + [106732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3494), 1, + ACTIONS(2403), 1, + anon_sym_DASH2, + STATE(3493), 1, sym_comment, - ACTIONS(6710), 12, + ACTIONS(2401), 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, - [106629] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106755] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6712), 1, + ACTIONS(2407), 1, anon_sym_DASH2, - STATE(3495), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(2405), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231936,156 +232273,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106652] = 3, + [106778] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3496), 1, + ACTIONS(2411), 1, + anon_sym_DASH2, + STATE(3495), 1, sym_comment, - ACTIONS(6714), 12, + ACTIONS(2409), 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, - [106673] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3497), 1, - sym_comment, - ACTIONS(6495), 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, - [106694] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3498), 1, - sym_comment, - ACTIONS(4881), 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, - [106715] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106801] = 11, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3499), 1, + ACTIONS(1707), 1, + sym__space, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(6703), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6705), 1, + aux_sym__immediate_decimal_token2, + STATE(3131), 1, + sym__immediate_decimal, + STATE(3496), 1, sym_comment, - ACTIONS(6527), 12, - ts_builtin_sym_end, + ACTIONS(1709), 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, - [106736] = 11, - ACTIONS(103), 1, + ACTIONS(6284), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106838] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1677), 1, sym__space, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(6674), 1, + ACTIONS(6703), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6676), 1, + ACTIONS(6705), 1, aux_sym__immediate_decimal_token2, - STATE(3083), 1, + STATE(3133), 1, sym__immediate_decimal, - STATE(3500), 1, + STATE(3497), 1, sym_comment, - ACTIONS(1671), 2, + ACTIONS(1679), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6183), 2, + ACTIONS(6284), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3082), 2, + STATE(3132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106773] = 11, - ACTIONS(103), 1, + [106875] = 11, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(1681), 1, sym__space, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(6674), 1, + ACTIONS(6703), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6676), 1, + ACTIONS(6705), 1, aux_sym__immediate_decimal_token2, - STATE(3085), 1, + STATE(3135), 1, sym__immediate_decimal, - STATE(3501), 1, + STATE(3498), 1, sym_comment, ACTIONS(1683), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6183), 2, + ACTIONS(6284), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3084), 2, + STATE(3134), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106810] = 3, + [106912] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3502), 1, + ACTIONS(6723), 1, + anon_sym_DASH2, + STATE(3499), 1, sym_comment, - ACTIONS(6457), 12, - ts_builtin_sym_end, + ACTIONS(6721), 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, - [106831] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5846), 1, + ACTIONS(2433), 1, anon_sym_DASH2, - STATE(3503), 1, + STATE(3500), 1, sym_comment, - ACTIONS(5281), 11, + ACTIONS(2431), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232097,14 +232408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106854] = 4, + [106958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6718), 1, + ACTIONS(2437), 1, anon_sym_DASH2, - STATE(3504), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6716), 11, + ACTIONS(2435), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232116,40 +232427,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106877] = 11, - ACTIONS(103), 1, + [106981] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - sym__space, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(2441), 1, + anon_sym_DASH2, + STATE(3502), 1, + sym_comment, + ACTIONS(2439), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6674), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6676), 1, - aux_sym__immediate_decimal_token2, - STATE(3087), 1, - sym__immediate_decimal, - STATE(3505), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107004] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2445), 1, + anon_sym_DASH2, + STATE(3503), 1, sym_comment, - ACTIONS(1687), 2, + ACTIONS(2443), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(6183), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3086), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106914] = 4, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6720), 1, + ACTIONS(2449), 1, anon_sym_DASH2, - STATE(3506), 1, + STATE(3504), 1, sym_comment, - ACTIONS(5946), 11, + ACTIONS(2447), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232161,14 +232484,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106937] = 4, + [107050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6722), 1, + ACTIONS(2453), 1, anon_sym_DASH2, - STATE(3507), 1, + STATE(3505), 1, + sym_comment, + ACTIONS(2451), 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, + [107073] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2383), 1, + anon_sym_DASH2, + STATE(3506), 1, sym_comment, - ACTIONS(5948), 11, + ACTIONS(2381), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232180,13 +232522,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106960] = 3, + [107096] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DOT, + ACTIONS(6727), 1, + aux_sym__immediate_decimal_token5, + STATE(3507), 1, + sym_comment, + ACTIONS(751), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107123] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3508), 1, sym_comment, - ACTIONS(6497), 12, - ts_builtin_sym_end, + ACTIONS(6729), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232198,12 +232560,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, - [106981] = 3, + anon_sym_RPAREN, + [107144] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3509), 1, sym_comment, - ACTIONS(6724), 12, + ACTIONS(6731), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232216,33 +232579,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107002] = 6, + [107165] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6726), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6728), 1, - aux_sym__immediate_decimal_token5, STATE(3510), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(6733), 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, - [107029] = 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, + [107186] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3511), 1, sym_comment, - ACTIONS(6730), 12, + ACTIONS(6735), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232255,50 +232615,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107050] = 4, + [107207] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6734), 1, - anon_sym_DASH2, STATE(3512), 1, sym_comment, - ACTIONS(6732), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6737), 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, - [107073] = 4, + [107228] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6738), 1, - anon_sym_DASH2, STATE(3513), 1, sym_comment, - ACTIONS(6736), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6739), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [107249] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6741), 1, + anon_sym_DOT, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token5, + STATE(3514), 1, + sym_comment, + ACTIONS(751), 4, anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(753), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [107276] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6747), 1, + aux_sym__immediate_decimal_token5, + STATE(3515), 1, + sym_comment, + ACTIONS(759), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107303] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3516), 1, + sym_comment, + ACTIONS(6749), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107096] = 3, + [107324] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3514), 1, + STATE(3517), 1, sym_comment, - ACTIONS(6740), 12, + ACTIONS(6751), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232311,12 +232729,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107117] = 3, + [107345] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6753), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6755), 1, + aux_sym__immediate_decimal_token5, + STATE(3518), 1, + sym_comment, + ACTIONS(759), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [107372] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3515), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6742), 12, + ACTIONS(6757), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232329,13 +232768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107138] = 3, + [107393] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3516), 1, + STATE(3520), 1, sym_comment, - ACTIONS(6535), 12, - ts_builtin_sym_end, + ACTIONS(6759), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232347,12 +232785,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, - [107159] = 3, + anon_sym_RPAREN, + [107414] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3517), 1, + STATE(3521), 1, sym_comment, - ACTIONS(6744), 12, + ACTIONS(6761), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232365,12 +232804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107180] = 3, + [107435] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3518), 1, + STATE(3522), 1, sym_comment, - ACTIONS(6746), 12, + ACTIONS(4917), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232383,12 +232822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107201] = 3, + [107456] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3523), 1, sym_comment, - ACTIONS(6748), 12, + ACTIONS(6763), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232401,12 +232840,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107222] = 3, + [107477] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3524), 1, + sym_comment, + ACTIONS(6765), 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, + [107498] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6769), 1, + anon_sym_DASH2, + STATE(3525), 1, + sym_comment, + ACTIONS(6767), 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, + [107521] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3526), 1, sym_comment, - ACTIONS(6750), 12, + ACTIONS(6771), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232419,12 +232895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107243] = 3, + [107542] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3521), 1, + STATE(3527), 1, sym_comment, - ACTIONS(6752), 12, + ACTIONS(6773), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232437,12 +232913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107264] = 3, + [107563] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3522), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6754), 12, + ACTIONS(6775), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232455,39 +232931,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107285] = 12, - ACTIONS(103), 1, + [107584] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(1647), 1, + ACTIONS(5816), 1, + anon_sym_DASH2, + STATE(3529), 1, + sym_comment, + ACTIONS(5265), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6648), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6650), 1, - aux_sym__immediate_decimal_token2, - STATE(3523), 1, - sym_comment, - STATE(4361), 1, - sym__immediate_decimal, - ACTIONS(6652), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4529), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107324] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107607] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3524), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6756), 12, + ACTIONS(6777), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232500,12 +232968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107345] = 3, + [107628] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3525), 1, + STATE(3531), 1, sym_comment, - ACTIONS(6758), 12, + ACTIONS(6779), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232518,14 +232986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107366] = 4, + [107649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2370), 1, + ACTIONS(5834), 1, anon_sym_DASH2, - STATE(3526), 1, + STATE(3532), 1, sym_comment, - ACTIONS(2368), 11, + ACTIONS(5292), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232537,35 +233005,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107389] = 6, - ACTIONS(103), 1, + [107672] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - anon_sym_DOT, - ACTIONS(6762), 1, - aux_sym__immediate_decimal_token5, - STATE(3527), 1, + STATE(3533), 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, - [107416] = 4, + ACTIONS(6781), 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, + [107693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6766), 1, + ACTIONS(6783), 1, anon_sym_DASH2, - STATE(3528), 1, + STATE(3534), 1, sym_comment, - ACTIONS(6764), 11, + ACTIONS(6250), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232577,12 +233042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107439] = 3, + [107716] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3529), 1, + STATE(3535), 1, sym_comment, - ACTIONS(6768), 12, + ACTIONS(6785), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232595,12 +233060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107460] = 3, + [107737] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3530), 1, + STATE(3536), 1, sym_comment, - ACTIONS(6770), 12, + ACTIONS(6787), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232613,50 +233078,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107481] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_DASH2, - STATE(3531), 1, - sym_comment, - ACTIONS(2241), 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, - [107504] = 4, + [107758] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2251), 1, - anon_sym_DASH2, - STATE(3532), 1, + STATE(3537), 1, sym_comment, - ACTIONS(2249), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6789), 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, - [107527] = 3, + [107779] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3533), 1, + STATE(3538), 1, sym_comment, - ACTIONS(6772), 12, + ACTIONS(6791), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232669,12 +233114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107548] = 3, + [107800] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3534), 1, + STATE(3539), 1, sym_comment, - ACTIONS(6774), 12, + ACTIONS(6793), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232687,33 +233132,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107569] = 4, + [107821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - anon_sym_DASH2, - STATE(3535), 1, + STATE(3540), 1, sym_comment, - ACTIONS(5881), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6795), 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, - [107592] = 4, + [107842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2259), 1, + ACTIONS(5878), 1, anon_sym_DASH2, - STATE(3536), 1, + STATE(3541), 1, sym_comment, - ACTIONS(2257), 11, + ACTIONS(5350), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232725,13 +233169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107615] = 3, + [107865] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3537), 1, + STATE(3542), 1, sym_comment, - ACTIONS(4875), 12, - ts_builtin_sym_end, + ACTIONS(6797), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232743,12 +233186,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, - [107636] = 3, + anon_sym_RPAREN, + [107886] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3538), 1, + STATE(3543), 1, sym_comment, - ACTIONS(6776), 12, + ACTIONS(5638), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232760,13 +233205,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, - [107657] = 3, + [107907] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3539), 1, + STATE(3544), 1, sym_comment, - ACTIONS(6778), 12, + ACTIONS(6799), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232779,12 +233223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107678] = 3, + [107928] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3540), 1, + STATE(3545), 1, sym_comment, - ACTIONS(6780), 12, + ACTIONS(6801), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232797,32 +233241,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107699] = 3, + [107949] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3541), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_LBRACE, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + ACTIONS(6803), 1, + anon_sym_DOT, + STATE(3546), 1, sym_comment, - ACTIONS(4897), 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, - [107720] = 4, + STATE(4287), 1, + sym__immediate_decimal, + ACTIONS(6805), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6807), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4572), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107986] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2396), 1, + ACTIONS(6809), 1, anon_sym_DASH2, - STATE(3542), 1, + STATE(3547), 1, sym_comment, - ACTIONS(2394), 11, + ACTIONS(6388), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232834,14 +233286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107743] = 4, + [108009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(6809), 1, anon_sym_DASH2, - STATE(3543), 1, + STATE(3548), 1, sym_comment, - ACTIONS(2414), 11, + ACTIONS(6388), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232853,13 +233305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107766] = 3, + [108032] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3544), 1, + STATE(3549), 1, sym_comment, - ACTIONS(6481), 12, - ts_builtin_sym_end, + ACTIONS(6811), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232871,31 +233322,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, - [107787] = 4, + anon_sym_RPAREN, + [108053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2420), 1, - anon_sym_DASH2, - STATE(3545), 1, + STATE(3550), 1, sym_comment, - ACTIONS(2418), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6813), 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, - [107810] = 3, + [108074] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + STATE(3551), 1, sym_comment, - ACTIONS(6782), 12, + ACTIONS(6815), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232908,35 +233359,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107831] = 6, - ACTIONS(103), 1, + [108095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6784), 1, - anon_sym_DOT, - ACTIONS(6786), 1, - aux_sym__immediate_decimal_token5, - STATE(3547), 1, + ACTIONS(5891), 1, + anon_sym_DASH2, + STATE(3552), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(5247), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, 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, - [107858] = 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108118] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6788), 1, + ACTIONS(5893), 1, + anon_sym_DASH2, + STATE(3553), 1, + sym_comment, + ACTIONS(5296), 11, anon_sym_EQ, - STATE(3548), 1, + 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, + [108141] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3554), 1, sym_comment, - ACTIONS(6467), 11, + ACTIONS(6817), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232948,18 +233414,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, - [107881] = 6, + anon_sym_RPAREN, + [108162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6408), 1, - sym__newline, - ACTIONS(6790), 1, - anon_sym_else, - STATE(3549), 1, + ACTIONS(6819), 1, + anon_sym_EQ, + STATE(3555), 1, sym_comment, - STATE(3552), 1, - aux_sym__repeat_newline, - ACTIONS(6411), 9, + ACTIONS(6517), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232969,18 +233434,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, - [107908] = 6, + [108185] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6337), 1, + ACTIONS(6174), 1, sym__newline, - ACTIONS(6792), 1, + ACTIONS(6821), 1, anon_sym_else, - STATE(3550), 1, + STATE(3556), 1, sym_comment, - STATE(3554), 1, + STATE(3560), 1, aux_sym__repeat_newline, - ACTIONS(6340), 9, + ACTIONS(6177), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232990,18 +233455,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, - [107935] = 6, + [108212] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6823), 1, + anon_sym_DASH2, + STATE(3557), 1, + sym_comment, + ACTIONS(6089), 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, + [108235] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6348), 1, + ACTIONS(6101), 1, sym__newline, - ACTIONS(6794), 1, + ACTIONS(6825), 1, anon_sym_else, - STATE(3551), 1, + STATE(3558), 1, sym_comment, - STATE(3555), 1, + STATE(3562), 1, aux_sym__repeat_newline, - ACTIONS(6351), 9, + ACTIONS(6104), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233011,18 +233495,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, - [107962] = 6, + [108262] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6359), 1, + ACTIONS(6108), 1, sym__newline, - ACTIONS(6796), 1, + ACTIONS(6827), 1, anon_sym_else, - STATE(3552), 1, + STATE(3559), 1, sym_comment, - STATE(3556), 1, + STATE(3563), 1, aux_sym__repeat_newline, - ACTIONS(6362), 9, + ACTIONS(6111), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233032,18 +233516,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, - [107989] = 6, + [108289] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6246), 1, + ACTIONS(6119), 1, sym__newline, - ACTIONS(6798), 1, + ACTIONS(6829), 1, anon_sym_else, - STATE(3553), 1, + STATE(3560), 1, sym_comment, - STATE(3557), 1, + STATE(3564), 1, aux_sym__repeat_newline, - ACTIONS(6249), 9, + ACTIONS(6122), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233053,18 +233537,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, - [108016] = 6, + [108316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6253), 1, + ACTIONS(6351), 1, sym__newline, - ACTIONS(6800), 1, + ACTIONS(6831), 1, anon_sym_else, - STATE(3554), 1, + STATE(3561), 1, sym_comment, - STATE(3558), 1, + STATE(3565), 1, aux_sym__repeat_newline, - ACTIONS(6256), 9, + ACTIONS(6354), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233074,18 +233558,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, - [108043] = 6, + [108343] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, + ACTIONS(6373), 1, sym__newline, - ACTIONS(6802), 1, + ACTIONS(6833), 1, anon_sym_else, - STATE(3555), 1, + STATE(3562), 1, sym_comment, - STATE(3559), 1, + STATE(3566), 1, aux_sym__repeat_newline, - ACTIONS(6263), 9, + ACTIONS(6376), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233095,18 +233579,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, - [108070] = 6, + [108370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(6383), 1, sym__newline, - ACTIONS(6804), 1, + ACTIONS(6835), 1, anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3556), 1, + STATE(3563), 1, sym_comment, - ACTIONS(1878), 9, + STATE(3567), 1, + aux_sym__repeat_newline, + ACTIONS(6386), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233116,18 +233600,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, - [108097] = 6, + [108397] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(6807), 1, + ACTIONS(6837), 1, anon_sym_else, - STATE(3557), 1, - sym_comment, - STATE(3560), 1, + STATE(501), 1, aux_sym__repeat_newline, - ACTIONS(6081), 9, + STATE(3564), 1, + sym_comment, + ACTIONS(1888), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233137,18 +233621,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, - [108124] = 6, + [108424] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(6366), 1, sym__newline, - ACTIONS(6809), 1, + ACTIONS(6840), 1, anon_sym_else, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3558), 1, + STATE(3565), 1, sym_comment, - ACTIONS(1878), 9, + STATE(3568), 1, + aux_sym__repeat_newline, + ACTIONS(6369), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233158,18 +233642,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, - [108151] = 6, + [108451] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(6812), 1, + ACTIONS(6842), 1, anon_sym_else, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3559), 1, + STATE(3566), 1, sym_comment, - ACTIONS(1878), 9, + ACTIONS(1888), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233179,18 +233663,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, - [108178] = 6, + [108478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1890), 1, sym__newline, - ACTIONS(6815), 1, + ACTIONS(6845), 1, anon_sym_else, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3560), 1, + STATE(3567), 1, sym_comment, - ACTIONS(1878), 9, + ACTIONS(1888), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233200,62 +233684,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, - [108205] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1622), 1, - anon_sym_RBRACE, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6475), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6477), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6818), 1, - anon_sym_DOT, - STATE(3561), 1, - sym_comment, - STATE(4357), 1, - sym__immediate_decimal, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4197), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108244] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6820), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6822), 1, - aux_sym__immediate_decimal_token5, - STATE(3562), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [108271] = 3, + [108505] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3563), 1, - sym_comment, - ACTIONS(6824), 12, + ACTIONS(1890), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6848), 1, + anon_sym_else, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3568), 1, + sym_comment, + ACTIONS(1888), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233265,13 +233705,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, - [108292] = 3, + [108532] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3564), 1, + STATE(3569), 1, sym_comment, - ACTIONS(6826), 12, + ACTIONS(6851), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233284,33 +233723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108313] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6828), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, - aux_sym__immediate_decimal_token5, - STATE(3565), 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, - [108340] = 3, + [108553] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3566), 1, + STATE(3570), 1, sym_comment, - ACTIONS(6832), 12, + ACTIONS(6853), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233323,14 +233741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108361] = 4, + [108574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6836), 1, + ACTIONS(5914), 1, anon_sym_DASH2, - STATE(3567), 1, + STATE(3571), 1, sym_comment, - ACTIONS(6834), 11, + ACTIONS(5308), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -233342,12 +233760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108384] = 3, + [108597] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3568), 1, + STATE(3572), 1, sym_comment, - ACTIONS(6838), 12, + ACTIONS(6855), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233360,31 +233778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108405] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3569), 1, - sym_comment, - ACTIONS(6499), 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, - [108426] = 3, + [108618] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + STATE(3573), 1, sym_comment, - ACTIONS(6501), 12, - ts_builtin_sym_end, + ACTIONS(6857), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233396,12 +233795,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, - [108447] = 3, + anon_sym_RPAREN, + [108639] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3571), 1, + STATE(3574), 1, sym_comment, - ACTIONS(6840), 12, + ACTIONS(6859), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233414,12 +233814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108468] = 3, + [108660] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3572), 1, + STATE(3575), 1, sym_comment, - ACTIONS(6842), 12, + ACTIONS(6861), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233432,39 +233832,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108489] = 12, - ACTIONS(103), 1, + [108681] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1622), 1, - anon_sym_RBRACE, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, + ACTIONS(1756), 1, anon_sym_DOLLAR, - ACTIONS(6844), 1, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6846), 1, + ACTIONS(6143), 1, aux_sym__immediate_decimal_token2, - STATE(3573), 1, + ACTIONS(6627), 1, + anon_sym_DOLLAR2, + ACTIONS(6629), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6863), 1, + anon_sym_RBRACK, + STATE(3576), 1, sym_comment, - STATE(4531), 1, + STATE(3835), 1, sym__immediate_decimal, - ACTIONS(6848), 2, + ACTIONS(6145), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4669), 2, + STATE(4091), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108528] = 3, + [108720] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3574), 1, + STATE(3577), 1, sym_comment, - ACTIONS(6850), 12, + ACTIONS(6865), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233477,12 +233877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108549] = 3, + [108741] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3575), 1, + STATE(3578), 1, sym_comment, - ACTIONS(6852), 12, + ACTIONS(6867), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233495,13 +233895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108570] = 3, + [108762] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3576), 1, + STATE(3579), 1, sym_comment, - ACTIONS(6503), 12, - ts_builtin_sym_end, + ACTIONS(6869), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233513,59 +233912,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, - [108591] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(6854), 1, - sym__newline, - STATE(3577), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1878), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108616] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(1647), 1, - anon_sym_RBRACE, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6844), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6846), 1, - aux_sym__immediate_decimal_token2, - STATE(3578), 1, - sym_comment, - STATE(4535), 1, - sym__immediate_decimal, - ACTIONS(6848), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4529), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108655] = 3, + [108783] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3579), 1, + STATE(3580), 1, sym_comment, - ACTIONS(6857), 12, + ACTIONS(6871), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233578,31 +233931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108676] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6684), 1, - anon_sym_DASH2, - STATE(3580), 1, - sym_comment, - ACTIONS(6380), 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, - [108699] = 3, + [108804] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3581), 1, sym_comment, - ACTIONS(6859), 12, + ACTIONS(6873), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233615,12 +233949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108720] = 3, + [108825] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3582), 1, sym_comment, - ACTIONS(6861), 12, + ACTIONS(6875), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233633,12 +233967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108741] = 3, + [108846] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3583), 1, sym_comment, - ACTIONS(6863), 12, + ACTIONS(6877), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233651,12 +233985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108762] = 3, + [108867] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3584), 1, sym_comment, - ACTIONS(6865), 12, + ACTIONS(6879), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233669,12 +234003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108783] = 3, + [108888] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3585), 1, sym_comment, - ACTIONS(6867), 12, + ACTIONS(6881), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233687,12 +234021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108804] = 3, + [108909] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3586), 1, sym_comment, - ACTIONS(6869), 12, + ACTIONS(6883), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233705,12 +234039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108825] = 3, + [108930] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3587), 1, sym_comment, - ACTIONS(6871), 12, + ACTIONS(6885), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233723,12 +234057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108846] = 3, + [108951] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3588), 1, sym_comment, - ACTIONS(6873), 12, + ACTIONS(6887), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233741,12 +234075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108867] = 3, + [108972] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3589), 1, sym_comment, - ACTIONS(6875), 12, + ACTIONS(6889), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233759,32 +234093,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108888] = 3, - ACTIONS(3), 1, + [108993] = 11, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6633), 1, + aux_sym__immediate_decimal_token2, STATE(3590), 1, sym_comment, - ACTIONS(6877), 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, - [108909] = 4, + STATE(4366), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4548), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6891), 1, anon_sym_EQ, STATE(3591), 1, sym_comment, - ACTIONS(6467), 11, + ACTIONS(6517), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233796,12 +234138,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, - [108932] = 3, + [109053] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3592), 1, sym_comment, - ACTIONS(6881), 12, + ACTIONS(6893), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233814,12 +234156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108953] = 3, + [109074] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3593), 1, sym_comment, - ACTIONS(6883), 12, + ACTIONS(6895), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233832,12 +234174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108974] = 3, + [109095] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3594), 1, sym_comment, - ACTIONS(6885), 12, + ACTIONS(6897), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233850,14 +234192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108995] = 4, + [109116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6887), 1, + ACTIONS(6899), 1, anon_sym_else, STATE(3595), 1, sym_comment, - ACTIONS(6471), 11, + ACTIONS(6443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233869,12 +234211,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, - [109018] = 3, + [109139] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3596), 1, sym_comment, - ACTIONS(6889), 12, + ACTIONS(6901), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233887,33 +234229,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109039] = 6, - ACTIONS(103), 1, + [109160] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6891), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - aux_sym__immediate_decimal_token5, STATE(3597), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(6903), 12, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109066] = 3, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [109181] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3598), 1, sym_comment, - ACTIONS(6895), 12, + ACTIONS(6905), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233926,12 +234265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109087] = 3, + [109202] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3599), 1, sym_comment, - ACTIONS(6897), 12, + ACTIONS(6907), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233944,12 +234283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109108] = 3, + [109223] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3600), 1, sym_comment, - ACTIONS(6899), 12, + ACTIONS(6909), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233962,12 +234301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109129] = 3, + [109244] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3601), 1, sym_comment, - ACTIONS(6901), 12, + ACTIONS(6911), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233980,14 +234319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109150] = 3, + [109265] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + STATE(539), 1, + aux_sym__pipe_separator, STATE(3602), 1, sym_comment, - ACTIONS(6903), 12, - sym__newline, - anon_sym_SEMI, + STATE(3624), 1, + aux_sym__repeat_newline, + ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233997,13 +234340,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, - [109171] = 3, + [109292] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3603), 1, sym_comment, - ACTIONS(6905), 12, + ACTIONS(6913), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234016,12 +234358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109192] = 3, + [109313] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3604), 1, sym_comment, - ACTIONS(6907), 12, + ACTIONS(6477), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234033,31 +234376,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, + [109334] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1484), 1, + anon_sym_BANG, + ACTIONS(6915), 1, + anon_sym_QMARK2, + STATE(368), 1, + sym__path_suffix, + STATE(3605), 1, + sym_comment, + ACTIONS(1474), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1472), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [109363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6919), 1, + anon_sym_DASH2, + STATE(3606), 1, + sym_comment, + ACTIONS(6917), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [109213] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109386] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3605), 1, + ACTIONS(6923), 1, + anon_sym_DASH2, + STATE(3607), 1, sym_comment, - ACTIONS(6909), 12, + ACTIONS(6921), 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, - [109234] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109409] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3606), 1, + STATE(3608), 1, sym_comment, - ACTIONS(6911), 12, + ACTIONS(6925), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234070,60 +234454,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109255] = 5, - ACTIONS(103), 1, + [109430] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6786), 1, - aux_sym__immediate_decimal_token5, - STATE(3607), 1, + ACTIONS(6929), 1, + anon_sym_DASH2, + STATE(3609), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(6927), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109453] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5487), 1, + anon_sym_DASH2, + STATE(3610), 1, + sym_comment, + STATE(3618), 1, + aux_sym_parameter_repeat2, + ACTIONS(1509), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5485), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109479] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(914), 1, + sym__space, + ACTIONS(1796), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5076), 1, + sym__unquoted_pattern, + ACTIONS(6931), 1, + anon_sym_DOT_DOT2, + ACTIONS(6935), 1, sym_filesize_unit, + ACTIONS(6937), 1, sym_duration_unit, - sym__entry_separator, - [109279] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3608), 1, + STATE(3611), 1, sym_comment, - STATE(3613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3888), 1, - sym_cell_path, - ACTIONS(1689), 3, + STATE(5081), 1, + sym__expr_parenthesized_immediate, + ACTIONS(811), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6933), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1691), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + [109515] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6727), 1, + aux_sym__immediate_decimal_token5, + STATE(3612), 1, + sym_comment, + ACTIONS(751), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - [109309] = 6, + sym__unquoted_pattern, + ACTIONS(753), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109539] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6915), 1, + ACTIONS(5537), 1, anon_sym_DASH2, - STATE(3609), 1, + STATE(3613), 1, sym_comment, - STATE(3649), 1, + STATE(3618), 1, aux_sym_parameter_repeat2, - ACTIONS(1496), 2, + ACTIONS(1509), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6913), 7, + ACTIONS(5535), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234131,101 +234557,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109335] = 10, + [109565] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - STATE(3610), 1, + ACTIONS(2560), 1, + aux_sym_expr_unary_token1, + ACTIONS(4905), 1, + anon_sym_LPAREN, + ACTIONS(4907), 1, + anon_sym_DASH2, + STATE(980), 1, + sym__expr_unary_minus, + STATE(3614), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6917), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6919), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(805), 2, - sym__expr_parenthesized_immediate, + ACTIONS(2552), 2, + anon_sym_true, + anon_sym_false, + STATE(985), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [109369] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3611), 1, - sym_comment, - ACTIONS(2544), 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, - [109393] = 4, - ACTIONS(103), 1, + [109597] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3612), 1, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token5, + STATE(3615), 1, sym_comment, - ACTIONS(1524), 3, + ACTIONS(751), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(753), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1522), 8, + [109621] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token5, + STATE(3616), 1, + sym_comment, + ACTIONS(791), 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, - [109415] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3613), 1, - sym_comment, - STATE(3615), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1528), 3, + sym__unquoted_pattern_in_list, + ACTIONS(793), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1526), 5, + [109645] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + STATE(3617), 1, + sym_comment, + ACTIONS(791), 4, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - [109443] = 6, + sym__unquoted_pattern_in_list, + ACTIONS(793), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [109669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5454), 1, + ACTIONS(6948), 1, anon_sym_DASH2, - STATE(3614), 1, - sym_comment, - STATE(3649), 1, - aux_sym_parameter_repeat2, - ACTIONS(1496), 2, + ACTIONS(6945), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5452), 7, + STATE(3618), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(6943), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234233,77 +234656,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109469] = 6, - ACTIONS(103), 1, + [109693] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6921), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3615), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 1, sym__entry_separator, - ACTIONS(1536), 5, - anon_sym_RBRACK, + ACTIONS(1691), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [109495] = 6, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6633), 1, + aux_sym__immediate_decimal_token2, + STATE(3619), 1, + sym_comment, + STATE(5038), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4416), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109729] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6924), 1, - anon_sym_DOT, - ACTIONS(6926), 1, + ACTIONS(175), 1, + aux_sym_expr_unary_token1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(4905), 1, + anon_sym_LPAREN, + ACTIONS(4907), 1, + anon_sym_DASH2, + STATE(980), 1, + sym__expr_unary_minus, + STATE(3620), 1, + sym_comment, + ACTIONS(1949), 2, + anon_sym_true, + anon_sym_false, + STATE(985), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109761] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token5, - STATE(3616), 1, + STATE(3621), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(751), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(753), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109521] = 4, + sym__entry_separator, + [109785] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(73), 1, + aux_sym_expr_unary_token1, + ACTIONS(1693), 1, + anon_sym_DOLLAR, + ACTIONS(4931), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_DASH2, - STATE(3617), 1, + STATE(1293), 1, + sym__expr_unary_minus, + STATE(3622), 1, sym_comment, - ACTIONS(1965), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [109543] = 6, + ACTIONS(2510), 2, + anon_sym_true, + anon_sym_false, + STATE(1358), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, + ACTIONS(6952), 1, anon_sym_DASH2, STATE(3618), 1, - sym_comment, - STATE(3649), 1, aux_sym_parameter_repeat2, - ACTIONS(1496), 2, + STATE(3623), 1, + sym_comment, + ACTIONS(1509), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6928), 7, + ACTIONS(6950), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234311,42 +234766,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109569] = 9, + [109843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, + ACTIONS(2903), 1, + sym__newline, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3624), 1, + sym_comment, + ACTIONS(2359), 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, + [109867] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(914), 1, + sym__entry_separator, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_DOT_DOT2, + ACTIONS(6960), 1, + sym_filesize_unit, + ACTIONS(6962), 1, + sym_duration_unit, + STATE(3625), 1, + sym_comment, + STATE(5048), 1, + sym__expr_parenthesized_immediate, + ACTIONS(811), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109903] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(3830), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - ACTIONS(4914), 1, + ACTIONS(4935), 1, anon_sym_DASH2, - ACTIONS(5324), 1, + ACTIONS(5259), 1, anon_sym_LPAREN, - STATE(1291), 1, + STATE(1293), 1, sym__expr_unary_minus, - STATE(3619), 1, + STATE(3626), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2510), 2, anon_sym_true, anon_sym_false, - STATE(1356), 4, + STATE(1358), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [109601] = 6, + [109935] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, - anon_sym_DASH2, - STATE(3620), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(3627), 1, sym_comment, - STATE(3649), 1, + STATE(5034), 1, + sym__immediate_decimal, + ACTIONS(6964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109969] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_LBRACE, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(3628), 1, + sym_comment, + STATE(5096), 1, + sym__immediate_decimal, + ACTIONS(6964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110003] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6970), 1, + anon_sym_DASH2, + STATE(3618), 1, aux_sym_parameter_repeat2, - ACTIONS(1496), 2, + STATE(3629), 1, + sym_comment, + ACTIONS(1509), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6932), 7, + ACTIONS(6968), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234354,62 +234901,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109627] = 9, - ACTIONS(3), 1, + [110029] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(2774), 1, - aux_sym_expr_unary_token1, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - ACTIONS(4887), 1, - anon_sym_DASH2, - STATE(947), 1, - sym__expr_unary_minus, - STATE(3621), 1, + ACTIONS(6972), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6974), 1, + aux_sym__immediate_decimal_token5, + STATE(3630), 1, sym_comment, - ACTIONS(1931), 2, - anon_sym_true, - anon_sym_false, - STATE(950), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [109659] = 9, + ACTIONS(759), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [110055] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1628), 1, + anon_sym_LBRACE, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + anon_sym_DOT, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(2525), 1, - aux_sym_expr_unary_token1, - ACTIONS(4885), 1, - anon_sym_LPAREN, - ACTIONS(4887), 1, - anon_sym_DASH2, - STATE(947), 1, - sym__expr_unary_minus, - STATE(3622), 1, + STATE(3631), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_true, - anon_sym_false, - STATE(950), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(4570), 1, + sym__immediate_decimal, + ACTIONS(6805), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6807), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4567), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [109691] = 4, - ACTIONS(103), 1, + [110089] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3623), 1, + STATE(3632), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1529), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1516), 8, + ACTIONS(1527), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -234418,146 +234963,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109713] = 9, - ACTIONS(3), 1, + [110111] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1655), 1, + ACTIONS(1642), 1, + sym__entry_separator, + ACTIONS(1644), 1, + anon_sym_RBRACE, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, anon_sym_DOLLAR, - ACTIONS(4910), 1, - anon_sym_LPAREN, - ACTIONS(4914), 1, - anon_sym_DASH2, - STATE(1291), 1, - sym__expr_unary_minus, - STATE(3624), 1, + ACTIONS(6631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6633), 1, + aux_sym__immediate_decimal_token2, + STATE(3633), 1, sym_comment, - ACTIONS(2499), 2, - anon_sym_true, - anon_sym_false, - STATE(1356), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(4956), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4414), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [109745] = 6, - ACTIONS(3), 1, + [110147] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6936), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6938), 1, + ACTIONS(6691), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3634), 1, + sym_comment, + STATE(3636), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1579), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1577), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [110175] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6976), 1, + anon_sym_DOT, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token5, - STATE(3625), 1, + STATE(3635), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(751), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_record, + ACTIONS(753), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109771] = 6, - ACTIONS(3), 1, + sym__entry_separator, + [110201] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6942), 1, + ACTIONS(6980), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3636), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1490), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [110227] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6983), 1, aux_sym__immediate_decimal_token5, - STATE(3626), 1, + STATE(3637), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(791), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(793), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109797] = 6, - ACTIONS(3), 1, + [110251] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_DASH2, - STATE(3627), 1, + ACTIONS(6691), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3634), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3638), 1, sym_comment, - STATE(3649), 1, - aux_sym_parameter_repeat2, - ACTIONS(1496), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5440), 7, - sym_identifier, - anon_sym_PIPE, + STATE(3974), 1, + sym_cell_path, + ACTIONS(1703), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1705), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [109823] = 9, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [110281] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(173), 1, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(1602), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(4885), 1, - anon_sym_LPAREN, - ACTIONS(4887), 1, + ACTIONS(4907), 1, anon_sym_DASH2, - STATE(947), 1, + STATE(980), 1, sym__expr_unary_minus, - STATE(3628), 1, + STATE(3639), 1, sym_comment, - ACTIONS(1931), 2, + ACTIONS(1949), 2, anon_sym_true, anon_sym_false, - STATE(950), 4, + STATE(985), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [109855] = 10, + [110313] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_LBRACE, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1608), 1, - anon_sym_DOT, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(3629), 1, - sym_comment, - STATE(4380), 1, - sym__immediate_decimal, - ACTIONS(6658), 2, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6660), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4379), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109889] = 4, - ACTIONS(103), 1, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + STATE(3640), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 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, + [110339] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3630), 1, + STATE(3641), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1533), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1468), 8, + ACTIONS(1531), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -234566,16 +235151,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109911] = 4, - ACTIONS(103), 1, + [110361] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3631), 1, + ACTIONS(6651), 1, + aux_sym__immediate_decimal_token5, + STATE(3642), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 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, + [110385] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3643), 1, + sym_comment, + ACTIONS(1537), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1472), 8, + ACTIONS(1535), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -234584,77 +235188,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109933] = 10, + [110407] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1620), 1, - anon_sym_LBRACE, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(3632), 1, - sym_comment, - STATE(4965), 1, - sym__immediate_decimal, - ACTIONS(6917), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6919), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(768), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109967] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6944), 1, + ACTIONS(6989), 1, anon_sym_DOT, - ACTIONS(6946), 1, + ACTIONS(6991), 1, aux_sym__immediate_decimal_token5, - STATE(3633), 1, + STATE(3644), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, + ACTIONS(751), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(753), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [109993] = 5, - ACTIONS(103), 1, + [110433] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(6993), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token5, - STATE(3634), 1, + STATE(3645), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 7, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110459] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token5, + STATE(3646), 1, + sym_comment, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(793), 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, - [110017] = 4, + [110483] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6948), 1, + ACTIONS(5474), 1, + anon_sym_DASH2, + STATE(3618), 1, + aux_sym_parameter_repeat2, + STATE(3647), 1, + sym_comment, + ACTIONS(1509), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5472), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110509] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6999), 1, anon_sym_else, - STATE(3635), 1, + STATE(3648), 1, sym_comment, - ACTIONS(6471), 10, + ACTIONS(6443), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234665,54 +235285,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, - [110039] = 5, - ACTIONS(103), 1, + [110531] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6950), 1, - aux_sym__immediate_decimal_token5, - STATE(3636), 1, + STATE(3649), 1, sym_comment, - ACTIONS(775), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(777), 6, - anon_sym_LPAREN2, + ACTIONS(1488), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [110063] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6762), 1, - aux_sym__immediate_decimal_token5, - STATE(3637), 1, - sym_comment, - ACTIONS(739), 4, + ACTIONS(1486), 8, anon_sym_RBRACK, anon_sym_RBRACE, + 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, - [110087] = 4, - ACTIONS(103), 1, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110553] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3638), 1, + STATE(3650), 1, sym_comment, - ACTIONS(1532), 3, + ACTIONS(1543), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1530), 8, + ACTIONS(1541), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -234721,16 +235321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [110109] = 4, - ACTIONS(103), 1, + [110575] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3639), 1, + STATE(3651), 1, sym_comment, - ACTIONS(1482), 3, + ACTIONS(1547), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1480), 8, + ACTIONS(1545), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -234739,63 +235339,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [110131] = 5, + [110597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token5, - STATE(3640), 1, + ACTIONS(2128), 1, + anon_sym_DASH2, + STATE(3652), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(2126), 10, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110155] = 11, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110619] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5046), 1, - sym__unquoted_pattern, - ACTIONS(6952), 1, - anon_sym_DOT_DOT2, - ACTIONS(6956), 1, - sym_filesize_unit, - ACTIONS(6958), 1, - sym_duration_unit, - STATE(3641), 1, + ACTIONS(6691), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3634), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3653), 1, sym_comment, - STATE(5052), 1, - sym__expr_parenthesized_immediate, - ACTIONS(785), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6954), 2, + STATE(3911), 1, + sym_cell_path, + ACTIONS(1669), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110191] = 6, + sym__entry_separator, + ACTIONS(1671), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [110649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, + ACTIONS(7003), 1, anon_sym_DASH2, - STATE(3642), 1, - sym_comment, - STATE(3649), 1, + STATE(3618), 1, aux_sym_parameter_repeat2, - ACTIONS(1496), 2, + STATE(3654), 1, + sym_comment, + ACTIONS(1509), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5448), 7, + ACTIONS(7001), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234803,38 +235399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [110217] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6960), 1, - aux_sym__immediate_decimal_token5, - STATE(3643), 1, - sym_comment, - ACTIONS(775), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(777), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [110241] = 6, + [110675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(7005), 1, anon_sym_DOT, - ACTIONS(6964), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token5, - STATE(3644), 1, + STATE(3655), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(751), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(753), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -234842,1396 +235419,1323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110267] = 11, - ACTIONS(103), 1, + [110701] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1620), 1, - sym__entry_separator, - ACTIONS(1622), 1, - anon_sym_RBRACE, - ACTIONS(6050), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6628), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(4024), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, aux_sym__immediate_decimal_token2, - STATE(3645), 1, - sym_comment, - STATE(5092), 1, + STATE(1927), 1, sym__immediate_decimal, - ACTIONS(6479), 2, + STATE(3656), 1, + sym_comment, + ACTIONS(7013), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4669), 2, + STATE(1993), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110303] = 5, - ACTIONS(103), 1, + [110734] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6966), 1, - aux_sym__immediate_decimal_token5, - STATE(3646), 1, + STATE(3657), 1, sym_comment, - ACTIONS(775), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(791), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 6, - sym__space, + sym__unquoted_pattern_in_list, + ACTIONS(793), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110327] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3647), 1, - sym_comment, - STATE(3941), 1, - sym_cell_path, - ACTIONS(1675), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1677), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110357] = 11, - ACTIONS(103), 1, + [110755] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(6970), 1, - anon_sym_DOT_DOT2, - ACTIONS(6974), 1, - sym_filesize_unit, - ACTIONS(6976), 1, - sym_duration_unit, - STATE(3648), 1, + STATE(3658), 1, sym_comment, - STATE(4994), 1, - sym__expr_parenthesized_immediate, - ACTIONS(785), 2, + ACTIONS(791), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110393] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6983), 1, - anon_sym_DASH2, - ACTIONS(6980), 2, - sym__newline, - anon_sym_COMMA, - STATE(3649), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6978), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [110417] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token5, - STATE(3650), 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(793), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110443] = 5, - ACTIONS(3), 1, + [110776] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6989), 1, - aux_sym__immediate_decimal_token5, - STATE(3651), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(3918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7015), 1, + aux_sym__immediate_decimal_token2, + STATE(1876), 1, + sym__immediate_decimal, + STATE(3659), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 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, - [110467] = 11, - ACTIONS(103), 1, + ACTIONS(7017), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(708), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110809] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(1647), 1, - anon_sym_RBRACE, - ACTIONS(6050), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6628), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(4010), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7019), 1, aux_sym__immediate_decimal_token2, - STATE(3652), 1, - sym_comment, - STATE(5010), 1, + STATE(1986), 1, sym__immediate_decimal, - ACTIONS(6479), 2, + STATE(3660), 1, + sym_comment, + ACTIONS(7021), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4529), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110503] = 9, - ACTIONS(103), 1, + [110842] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3785), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(6991), 1, + ACTIONS(7023), 1, anon_sym_DQUOTE, - ACTIONS(6993), 1, + ACTIONS(7025), 1, anon_sym_SQUOTE, - ACTIONS(6995), 1, + ACTIONS(7027), 1, anon_sym_BQUOTE, - ACTIONS(6997), 1, + ACTIONS(7029), 1, aux_sym_path_token1, - STATE(2579), 1, + STATE(3605), 1, sym_val_string, - STATE(3653), 1, + STATE(3661), 1, sym_comment, - STATE(2389), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110534] = 4, - ACTIONS(103), 1, + [110873] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3654), 1, + STATE(3662), 1, sym_comment, - ACTIONS(866), 4, + ACTIONS(803), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(868), 6, + ACTIONS(805), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110555] = 6, - ACTIONS(103), 1, + [110894] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6999), 1, - anon_sym_DOT, - ACTIONS(7001), 1, + STATE(3663), 1, + sym_comment, + ACTIONS(759), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110915] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token5, - STATE(3655), 1, + STATE(3664), 1, sym_comment, - ACTIONS(1784), 4, + ACTIONS(1774), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1786), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1776), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110580] = 10, - ACTIONS(103), 1, + sym__unquoted_pattern, + [110940] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3149), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5046), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(6179), 1, + ACTIONS(5298), 1, + anon_sym_DOLLAR, + ACTIONS(5924), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6181), 1, + ACTIONS(7035), 1, aux_sym__immediate_decimal_token2, - STATE(3656), 1, + STATE(3665), 1, sym_comment, - STATE(3835), 1, + STATE(3873), 1, sym__immediate_decimal, - ACTIONS(6183), 2, + ACTIONS(7037), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4019), 2, + STATE(3937), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110613] = 10, - ACTIONS(103), 1, + [110973] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3149), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5046), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(6445), 1, + ACTIONS(5298), 1, + anon_sym_DOLLAR, + ACTIONS(6236), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6447), 1, + ACTIONS(7039), 1, aux_sym__immediate_decimal_token2, - STATE(3657), 1, + STATE(3666), 1, sym_comment, - STATE(4262), 1, + STATE(4278), 1, sym__immediate_decimal, - ACTIONS(6449), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3249), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110646] = 6, - ACTIONS(103), 1, + [111006] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7003), 1, - anon_sym_DOT, - ACTIONS(7005), 1, - aux_sym__immediate_decimal_token5, - STATE(3658), 1, + ACTIONS(7043), 1, + anon_sym_DQUOTE, + ACTIONS(7045), 1, + anon_sym_SQUOTE, + ACTIONS(7047), 1, + anon_sym_BQUOTE, + ACTIONS(7049), 1, + aux_sym_path_token1, + ACTIONS(7051), 1, + sym_raw_string_begin, + STATE(382), 1, + sym_val_string, + STATE(3667), 1, sym_comment, - ACTIONS(1784), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1786), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110671] = 4, + STATE(386), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111037] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - anon_sym_DASH2, - STATE(3659), 1, - sym_comment, - ACTIONS(4509), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(2945), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [110692] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3660), 1, + STATE(761), 1, + sym__immediate_decimal, + STATE(3668), 1, sym_comment, - ACTIONS(866), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(868), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110713] = 4, + ACTIONS(6807), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(7053), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(760), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111068] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3661), 1, - sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 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, - [110734] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5332), 1, + ACTIONS(1677), 1, + anon_sym_LBRACE, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(3662), 1, - sym_comment, - STATE(4278), 1, + STATE(763), 1, sym__immediate_decimal, - ACTIONS(7009), 2, + STATE(3669), 1, + sym_comment, + ACTIONS(6807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4619), 2, + ACTIONS(7053), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110767] = 10, - ACTIONS(103), 1, + [111099] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6050), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(6626), 1, + ACTIONS(1681), 1, + anon_sym_LBRACE, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(6844), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6846), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7011), 1, - aux_sym__unquoted_in_record_token2, - STATE(3663), 1, - sym_comment, - STATE(4515), 1, + STATE(765), 1, sym__immediate_decimal, - ACTIONS(6848), 2, + STATE(3670), 1, + sym_comment, + ACTIONS(6807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4502), 2, + ACTIONS(7053), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110800] = 10, - ACTIONS(103), 1, + [111130] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(6475), 1, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + ACTIONS(5076), 1, + aux_sym_unquoted_token2, + ACTIONS(6280), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6477), 1, + ACTIONS(6282), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6604), 1, - aux_sym__unquoted_in_list_token2, - STATE(3664), 1, + STATE(3671), 1, sym_comment, - STATE(3902), 1, + STATE(3834), 1, sym__immediate_decimal, - ACTIONS(6479), 2, + ACTIONS(6284), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4128), 2, + STATE(3999), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110833] = 10, - ACTIONS(103), 1, + [111163] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5332), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(6917), 1, + ACTIONS(5076), 1, + aux_sym_unquoted_token2, + ACTIONS(6455), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, + ACTIONS(6457), 1, aux_sym__immediate_decimal_token2, - STATE(3665), 1, + STATE(3672), 1, sym_comment, - STATE(5023), 1, + STATE(4319), 1, sym__immediate_decimal, - ACTIONS(7015), 2, + ACTIONS(6459), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(3093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110866] = 10, - ACTIONS(103), 1, + [111196] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3149), 1, + ACTIONS(3840), 1, + sym_raw_string_begin, + ACTIONS(7055), 1, + anon_sym_DQUOTE, + ACTIONS(7057), 1, + anon_sym_SQUOTE, + ACTIONS(7059), 1, + anon_sym_BQUOTE, + ACTIONS(7061), 1, + aux_sym_path_token1, + STATE(2642), 1, + sym_val_string, + STATE(3673), 1, + sym_comment, + STATE(2411), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111227] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(7063), 1, + anon_sym_DOT_DOT2, + ACTIONS(7067), 1, + sym_filesize_unit, + ACTIONS(7069), 1, + sym_duration_unit, + STATE(3674), 1, + sym_comment, + ACTIONS(7065), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(914), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111256] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3675), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 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, + [111277] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, + ACTIONS(4966), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5046), 1, + ACTIONS(5076), 1, aux_sym_unquoted_token2, - STATE(2540), 1, + STATE(2538), 1, sym__immediate_decimal, - STATE(3666), 1, + STATE(3676), 1, sym_comment, - ACTIONS(4944), 2, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2715), 2, + STATE(2713), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110899] = 10, - ACTIONS(103), 1, + [111310] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR, - ACTIONS(4968), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4970), 1, + ACTIONS(4998), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5046), 1, + ACTIONS(5076), 1, aux_sym_unquoted_token2, - STATE(2790), 1, + STATE(2901), 1, sym__immediate_decimal, - STATE(3667), 1, + STATE(3677), 1, sym_comment, - ACTIONS(4972), 2, + ACTIONS(5000), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3249), 2, + STATE(3093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110932] = 9, - ACTIONS(103), 1, + [111343] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(3068), 1, sym_raw_string_begin, - ACTIONS(7017), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7019), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7021), 1, + ACTIONS(7075), 1, anon_sym_BQUOTE, - ACTIONS(7023), 1, + ACTIONS(7077), 1, aux_sym_path_token1, - STATE(2402), 1, + STATE(2386), 1, sym_val_string, - STATE(3668), 1, + STATE(3678), 1, sym_comment, - STATE(2607), 4, + STATE(2599), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110963] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7025), 1, - aux_sym__immediate_decimal_token5, - STATE(3669), 1, - sym_comment, - ACTIONS(775), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(777), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [110986] = 10, - ACTIONS(103), 1, + [111374] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1610), 1, + ACTIONS(1638), 1, aux_sym__immediate_decimal_token1, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(7027), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7029), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token2, - STATE(690), 1, + STATE(633), 1, sym__immediate_decimal, - STATE(3670), 1, + STATE(3679), 1, sym_comment, - ACTIONS(7031), 2, + ACTIONS(7081), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(696), 2, + STATE(708), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111019] = 10, - ACTIONS(103), 1, + [111407] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1649), 1, + ACTIONS(1665), 1, aux_sym__immediate_decimal_token1, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(7027), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token2, - STATE(929), 1, + STATE(952), 1, sym__immediate_decimal, - STATE(3671), 1, + STATE(3680), 1, sym_comment, - ACTIONS(7035), 2, + ACTIONS(7085), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111052] = 9, - ACTIONS(103), 1, + [111440] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7037), 1, + ACTIONS(7087), 1, anon_sym_DQUOTE, - ACTIONS(7039), 1, + ACTIONS(7089), 1, anon_sym_SQUOTE, - ACTIONS(7041), 1, + ACTIONS(7091), 1, anon_sym_BQUOTE, - ACTIONS(7043), 1, + ACTIONS(7093), 1, aux_sym_path_token1, - ACTIONS(7045), 1, + ACTIONS(7095), 1, sym_raw_string_begin, - STATE(1755), 1, + STATE(1786), 1, sym_val_string, - STATE(3672), 1, + STATE(3681), 1, sym_comment, - STATE(1801), 4, + STATE(1816), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111083] = 10, - ACTIONS(103), 1, + [111471] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3682), 1, + sym_comment, + ACTIONS(803), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(805), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [111492] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(1846), 1, + ACTIONS(1864), 1, aux_sym_unquoted_token2, - ACTIONS(4930), 1, + ACTIONS(4944), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5326), 1, + ACTIONS(5261), 1, anon_sym_DOLLAR, - ACTIONS(7047), 1, + ACTIONS(7097), 1, aux_sym__immediate_decimal_token2, - STATE(2490), 1, + STATE(2478), 1, sym__immediate_decimal, - STATE(3673), 1, + STATE(3683), 1, sym_comment, - ACTIONS(7049), 2, + ACTIONS(7099), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2652), 2, + STATE(2576), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111116] = 10, - ACTIONS(103), 1, + [111525] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(1846), 1, + ACTIONS(1864), 1, aux_sym_unquoted_token2, - ACTIONS(4946), 1, + ACTIONS(4952), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5326), 1, + ACTIONS(5261), 1, anon_sym_DOLLAR, - ACTIONS(7051), 1, + ACTIONS(7101), 1, aux_sym__immediate_decimal_token2, - STATE(2659), 1, + STATE(2688), 1, sym__immediate_decimal, - STATE(3674), 1, + STATE(3684), 1, sym_comment, - ACTIONS(7053), 2, + ACTIONS(7103), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1294), 2, + STATE(1308), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111149] = 9, - ACTIONS(103), 1, + [111558] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7105), 1, anon_sym_DQUOTE, - ACTIONS(7057), 1, + ACTIONS(7107), 1, anon_sym_SQUOTE, - ACTIONS(7059), 1, + ACTIONS(7109), 1, anon_sym_BQUOTE, - ACTIONS(7061), 1, + ACTIONS(7111), 1, aux_sym_path_token1, - ACTIONS(7063), 1, + ACTIONS(7113), 1, sym_raw_string_begin, - STATE(3675), 1, + STATE(3685), 1, sym_comment, - STATE(3876), 1, + STATE(3967), 1, sym_val_string, - STATE(4029), 4, + STATE(4149), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111180] = 10, - ACTIONS(103), 1, + [111589] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(4974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5171), 1, + aux_sym_unquoted_token2, + STATE(2632), 1, + sym__immediate_decimal, + STATE(3686), 1, + sym_comment, + ACTIONS(4978), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2825), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111622] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(4920), 1, + ACTIONS(4927), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5332), 1, + ACTIONS(5298), 1, anon_sym_DOLLAR, - ACTIONS(7065), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token2, - STATE(2468), 1, + STATE(2461), 1, sym__immediate_decimal, - STATE(3676), 1, + STATE(3687), 1, sym_comment, - ACTIONS(7067), 2, + ACTIONS(7117), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2554), 2, + STATE(2558), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111213] = 10, - ACTIONS(103), 1, + [111655] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(4924), 1, + ACTIONS(4948), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5332), 1, + ACTIONS(5298), 1, anon_sym_DOLLAR, - ACTIONS(7069), 1, + ACTIONS(7119), 1, aux_sym__immediate_decimal_token2, - STATE(2596), 1, + STATE(2588), 1, sym__immediate_decimal, - STATE(3677), 1, + STATE(3688), 1, sym_comment, - ACTIONS(7071), 2, + ACTIONS(7121), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111246] = 9, - ACTIONS(103), 1, + [111688] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7073), 1, + ACTIONS(7029), 1, + aux_sym_path_token1, + ACTIONS(7123), 1, anon_sym_DQUOTE, - ACTIONS(7075), 1, + ACTIONS(7125), 1, anon_sym_SQUOTE, - ACTIONS(7077), 1, + ACTIONS(7127), 1, anon_sym_BQUOTE, - ACTIONS(7079), 1, - aux_sym_path_token1, - ACTIONS(7081), 1, + ACTIONS(7129), 1, sym_raw_string_begin, - STATE(3446), 1, + STATE(3605), 1, sym_val_string, - STATE(3678), 1, + STATE(3689), 1, sym_comment, - STATE(3612), 4, + STATE(3632), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111277] = 10, - ACTIONS(103), 1, + [111719] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(5332), 1, + ACTIONS(5298), 1, anon_sym_DOLLAR, - ACTIONS(6070), 1, + ACTIONS(6296), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7083), 1, + ACTIONS(7131), 1, aux_sym__immediate_decimal_token2, - STATE(3679), 1, + STATE(3690), 1, sym_comment, - STATE(3917), 1, + STATE(3899), 1, sym__immediate_decimal, - ACTIONS(7085), 2, + ACTIONS(7133), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3963), 2, + STATE(3937), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111310] = 10, - ACTIONS(103), 1, + [111752] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(5332), 1, + ACTIONS(5298), 1, anon_sym_DOLLAR, - ACTIONS(6421), 1, + ACTIONS(6469), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7087), 1, + ACTIONS(7135), 1, aux_sym__immediate_decimal_token2, - STATE(3680), 1, + STATE(3691), 1, sym_comment, - STATE(4523), 1, + STATE(4364), 1, sym__immediate_decimal, - ACTIONS(7089), 2, + ACTIONS(7137), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111343] = 9, - ACTIONS(103), 1, + [111785] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7091), 1, + ACTIONS(7139), 1, anon_sym_DQUOTE, - ACTIONS(7093), 1, + ACTIONS(7141), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7143), 1, anon_sym_BQUOTE, - ACTIONS(7097), 1, + ACTIONS(7145), 1, aux_sym_path_token1, - ACTIONS(7099), 1, + ACTIONS(7147), 1, sym_raw_string_begin, - STATE(344), 1, + STATE(345), 1, sym_val_string, - STATE(3681), 1, + STATE(3692), 1, sym_comment, - STATE(357), 4, + STATE(352), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111374] = 10, - ACTIONS(103), 1, + [111816] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(1846), 1, + ACTIONS(1864), 1, aux_sym_unquoted_token2, - ACTIONS(3448), 1, + ACTIONS(3488), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7101), 1, + ACTIONS(7149), 1, anon_sym_DOLLAR, - ACTIONS(7103), 1, + ACTIONS(7151), 1, aux_sym__immediate_decimal_token2, - STATE(1472), 1, + STATE(1468), 1, sym__immediate_decimal, - STATE(3682), 1, + STATE(3693), 1, sym_comment, - ACTIONS(7105), 2, + ACTIONS(7153), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(982), 2, + STATE(936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111407] = 10, - ACTIONS(103), 1, + [111849] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(1846), 1, + ACTIONS(1864), 1, aux_sym_unquoted_token2, - ACTIONS(3493), 1, + ACTIONS(3518), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7101), 1, + ACTIONS(7149), 1, anon_sym_DOLLAR, - ACTIONS(7107), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token2, - STATE(1529), 1, + STATE(1531), 1, sym__immediate_decimal, - STATE(3683), 1, + STATE(3694), 1, sym_comment, - ACTIONS(7109), 2, + ACTIONS(7157), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1294), 2, + STATE(1308), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111440] = 9, - ACTIONS(103), 1, + [111882] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(948), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(950), 1, + ACTIONS(970), 1, anon_sym_SQUOTE, - ACTIONS(952), 1, + ACTIONS(972), 1, anon_sym_BQUOTE, - ACTIONS(964), 1, + ACTIONS(984), 1, sym_raw_string_begin, - ACTIONS(7111), 1, + ACTIONS(7159), 1, aux_sym_path_token1, - STATE(2494), 1, + STATE(2499), 1, sym_val_string, - STATE(3684), 1, + STATE(3695), 1, sym_comment, - STATE(2564), 4, + STATE(2543), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111471] = 10, - ACTIONS(103), 1, + [111913] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(4002), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7027), 1, - anon_sym_DOLLAR, - ACTIONS(7113), 1, - aux_sym__immediate_decimal_token2, - STATE(1933), 1, - sym__immediate_decimal, - STATE(3685), 1, + STATE(3696), 1, sym_comment, - ACTIONS(7115), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2010), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111504] = 10, - ACTIONS(103), 1, + ACTIONS(803), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(805), 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, + [111934] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(4010), 1, + ACTIONS(4042), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7027), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7117), 1, + ACTIONS(7161), 1, aux_sym__immediate_decimal_token2, - STATE(2053), 1, + STATE(2095), 1, sym__immediate_decimal, - STATE(3686), 1, + STATE(3697), 1, sym_comment, - ACTIONS(7119), 2, + ACTIONS(7163), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111537] = 9, - ACTIONS(103), 1, + [111967] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7165), 1, anon_sym_DQUOTE, - ACTIONS(7123), 1, + ACTIONS(7167), 1, anon_sym_SQUOTE, - ACTIONS(7125), 1, + ACTIONS(7169), 1, anon_sym_BQUOTE, - ACTIONS(7127), 1, + ACTIONS(7171), 1, aux_sym_path_token1, - ACTIONS(7129), 1, + ACTIONS(7173), 1, sym_raw_string_begin, - STATE(1907), 1, + STATE(1933), 1, sym_val_string, - STATE(3687), 1, + STATE(3698), 1, sym_comment, - STATE(1960), 4, + STATE(1951), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111568] = 10, - ACTIONS(103), 1, + [111998] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(3420), 1, + ACTIONS(3474), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7027), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7131), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token2, - STATE(1458), 1, + STATE(1455), 1, sym__immediate_decimal, - STATE(3688), 1, + STATE(3699), 1, sym_comment, - ACTIONS(7133), 2, + ACTIONS(7177), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(696), 2, + STATE(708), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111601] = 10, - ACTIONS(103), 1, + [112031] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(3452), 1, + ACTIONS(3480), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7027), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7135), 1, + ACTIONS(7179), 1, aux_sym__immediate_decimal_token2, - STATE(1510), 1, + STATE(1507), 1, sym__immediate_decimal, - STATE(3689), 1, + STATE(3700), 1, sym_comment, - ACTIONS(7137), 2, + ACTIONS(7181), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111634] = 9, - ACTIONS(103), 1, + [112064] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(843), 1, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(845), 1, + ACTIONS(871), 1, anon_sym_SQUOTE, - ACTIONS(847), 1, + ACTIONS(873), 1, anon_sym_BQUOTE, - ACTIONS(859), 1, + ACTIONS(885), 1, sym_raw_string_begin, - ACTIONS(7139), 1, + ACTIONS(7183), 1, aux_sym_path_token1, - STATE(2471), 1, + STATE(2455), 1, sym_val_string, - STATE(3690), 1, + STATE(3701), 1, sym_comment, - STATE(2476), 4, + STATE(2503), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111665] = 9, - ACTIONS(103), 1, + [112095] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7185), 1, anon_sym_DQUOTE, - ACTIONS(7143), 1, + ACTIONS(7187), 1, anon_sym_SQUOTE, - ACTIONS(7145), 1, + ACTIONS(7189), 1, anon_sym_BQUOTE, - ACTIONS(7147), 1, + ACTIONS(7191), 1, aux_sym_path_token1, - ACTIONS(7149), 1, + ACTIONS(7193), 1, sym_raw_string_begin, - STATE(3691), 1, + STATE(3702), 1, sym_comment, - STATE(4284), 1, + STATE(4242), 1, sym_val_string, - STATE(4376), 4, + STATE(4395), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111696] = 9, - ACTIONS(103), 1, + [112126] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7023), 1, + ACTIONS(7077), 1, aux_sym_path_token1, - ACTIONS(7151), 1, + ACTIONS(7195), 1, anon_sym_DQUOTE, - ACTIONS(7153), 1, + ACTIONS(7197), 1, anon_sym_SQUOTE, - ACTIONS(7155), 1, + ACTIONS(7199), 1, anon_sym_BQUOTE, - ACTIONS(7157), 1, + ACTIONS(7201), 1, sym_raw_string_begin, - STATE(2402), 1, + STATE(2386), 1, sym_val_string, - STATE(3692), 1, + STATE(3703), 1, sym_comment, - STATE(2613), 4, + STATE(2606), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111727] = 9, - ACTIONS(103), 1, + [112157] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7159), 1, - anon_sym_DQUOTE, - ACTIONS(7161), 1, - anon_sym_SQUOTE, - ACTIONS(7163), 1, - anon_sym_BQUOTE, - ACTIONS(7165), 1, - aux_sym_path_token1, - ACTIONS(7167), 1, - sym_raw_string_begin, - STATE(1745), 1, - sym_val_string, - STATE(3693), 1, + ACTIONS(7203), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7205), 1, + aux_sym__immediate_decimal_token5, + STATE(3704), 1, sym_comment, - STATE(1757), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111758] = 9, - ACTIONS(103), 1, + ACTIONS(1774), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1776), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [112182] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3785), 1, + ACTIONS(3840), 1, sym_raw_string_begin, - ACTIONS(6991), 1, + ACTIONS(7055), 1, anon_sym_DQUOTE, - ACTIONS(6993), 1, + ACTIONS(7057), 1, anon_sym_SQUOTE, - ACTIONS(6995), 1, + ACTIONS(7059), 1, anon_sym_BQUOTE, - ACTIONS(7169), 1, + ACTIONS(7207), 1, aux_sym_path_token1, - STATE(2408), 1, + STATE(2405), 1, sym_val_string, - STATE(3694), 1, + STATE(3705), 1, sym_comment, - STATE(2389), 4, + STATE(2411), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111789] = 9, - ACTIONS(103), 1, + [112213] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1764), 1, + ACTIONS(1772), 1, sym_raw_string_begin, - ACTIONS(7023), 1, + ACTIONS(7077), 1, aux_sym_path_token1, - ACTIONS(7171), 1, + ACTIONS(7209), 1, anon_sym_DQUOTE, - ACTIONS(7173), 1, + ACTIONS(7211), 1, anon_sym_SQUOTE, - ACTIONS(7175), 1, + ACTIONS(7213), 1, anon_sym_BQUOTE, - STATE(2402), 1, + STATE(2386), 1, sym_val_string, - STATE(3695), 1, + STATE(3706), 1, sym_comment, - STATE(2288), 4, + STATE(2276), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111820] = 9, - ACTIONS(103), 1, + [112244] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(3068), 1, sym_raw_string_begin, - ACTIONS(7017), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7019), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7021), 1, + ACTIONS(7075), 1, anon_sym_BQUOTE, - ACTIONS(7177), 1, + ACTIONS(7215), 1, aux_sym_path_token1, - STATE(2522), 1, + STATE(2541), 1, sym_val_string, - STATE(3696), 1, + STATE(3707), 1, sym_comment, - STATE(2607), 4, + STATE(2599), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111851] = 9, - ACTIONS(103), 1, + [112275] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1436), 1, + ACTIONS(1454), 1, sym_raw_string_begin, - ACTIONS(7179), 1, + ACTIONS(7023), 1, anon_sym_DQUOTE, - ACTIONS(7181), 1, + ACTIONS(7025), 1, anon_sym_SQUOTE, - ACTIONS(7183), 1, + ACTIONS(7027), 1, anon_sym_BQUOTE, - ACTIONS(7185), 1, + ACTIONS(7217), 1, aux_sym_path_token1, - STATE(3697), 1, + STATE(3708), 1, sym_comment, - STATE(3856), 1, + STATE(3874), 1, sym_val_string, - STATE(3780), 4, + STATE(3776), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111882] = 9, - ACTIONS(103), 1, + [112306] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7187), 1, + ACTIONS(7219), 1, anon_sym_DQUOTE, - ACTIONS(7189), 1, + ACTIONS(7221), 1, anon_sym_SQUOTE, - ACTIONS(7191), 1, + ACTIONS(7223), 1, anon_sym_BQUOTE, - ACTIONS(7193), 1, + ACTIONS(7225), 1, aux_sym_path_token1, - ACTIONS(7195), 1, + ACTIONS(7227), 1, sym_raw_string_begin, - STATE(346), 1, + STATE(347), 1, sym_val_string, - STATE(3698), 1, + STATE(3709), 1, sym_comment, - STATE(361), 4, + STATE(358), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111913] = 11, - ACTIONS(103), 1, + [112337] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_RBRACE, - ACTIONS(884), 1, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5032), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5034), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5171), 1, + aux_sym_unquoted_token2, + STATE(2926), 1, + sym__immediate_decimal, + STATE(3710), 1, + sym_comment, + ACTIONS(5036), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3362), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112370] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6141), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6143), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6629), 1, + aux_sym__unquoted_in_list_token2, + STATE(3711), 1, + sym_comment, + STATE(3835), 1, + sym__immediate_decimal, + ACTIONS(6145), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112403] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + ACTIONS(6493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6495), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6629), 1, + aux_sym__unquoted_in_list_token2, + STATE(3712), 1, + sym_comment, + STATE(4217), 1, + sym__immediate_decimal, + ACTIONS(6497), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112436] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(811), 1, + anon_sym_RBRACK, + ACTIONS(914), 1, sym__entry_separator, - ACTIONS(5174), 1, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7011), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7197), 1, + ACTIONS(7229), 1, anon_sym_DOT_DOT2, - ACTIONS(7201), 1, + ACTIONS(7233), 1, sym_filesize_unit, - ACTIONS(7203), 1, + ACTIONS(7235), 1, sym_duration_unit, - STATE(3699), 1, + STATE(3713), 1, sym_comment, - STATE(5080), 1, + STATE(5048), 1, sym__expr_parenthesized_immediate, - ACTIONS(7199), 2, + ACTIONS(7231), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111948] = 9, - ACTIONS(103), 1, - anon_sym_POUND, + [112471] = 9, ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(7205), 1, + ACTIONS(7237), 1, anon_sym_DQUOTE, - ACTIONS(7207), 1, + ACTIONS(7239), 1, anon_sym_SQUOTE, - ACTIONS(7209), 1, + ACTIONS(7241), 1, anon_sym_BQUOTE, - ACTIONS(7211), 1, + ACTIONS(7243), 1, aux_sym_path_token1, - STATE(514), 1, + STATE(419), 1, sym_val_string, - STATE(3700), 1, + STATE(3714), 1, sym_comment, - STATE(505), 4, + STATE(436), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111979] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6946), 1, - aux_sym__immediate_decimal_token5, - STATE(3701), 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, - [112002] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_LBRACE, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(765), 1, - sym__immediate_decimal, - STATE(3702), 1, - sym_comment, - ACTIONS(6660), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(7213), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(764), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112033] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7215), 1, - anon_sym_DOT, - ACTIONS(7217), 1, - aux_sym__immediate_decimal_token5, - STATE(3703), 1, - sym_comment, - ACTIONS(1784), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [112058] = 9, - ACTIONS(103), 1, + [112502] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7219), 1, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(7245), 1, anon_sym_DQUOTE, - ACTIONS(7221), 1, + ACTIONS(7247), 1, anon_sym_SQUOTE, - ACTIONS(7223), 1, + ACTIONS(7249), 1, anon_sym_BQUOTE, - ACTIONS(7225), 1, + ACTIONS(7251), 1, aux_sym_path_token1, - ACTIONS(7227), 1, - sym_raw_string_begin, - STATE(381), 1, + STATE(519), 1, sym_val_string, - STATE(3704), 1, + STATE(3715), 1, sym_comment, - STATE(387), 4, + STATE(504), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [112089] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3705), 1, - sym_comment, - 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, - [112110] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token5, - STATE(3706), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112133] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(7229), 1, - anon_sym_DOT_DOT2, - ACTIONS(7233), 1, - sym_filesize_unit, - ACTIONS(7235), 1, - sym_duration_unit, - STATE(3707), 1, - sym_comment, - ACTIONS(7231), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [112162] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7237), 1, - aux_sym__immediate_decimal_token5, - STATE(3708), 1, - sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 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, - [112185] = 5, + [112533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7239), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token5, - STATE(3709), 1, + STATE(3716), 1, sym_comment, - ACTIONS(775), 2, + ACTIONS(751), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(777), 7, + ACTIONS(753), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -236239,1407 +236743,1277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112208] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3710), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [112229] = 4, + [112556] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3711), 1, - sym_comment, - ACTIONS(866), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(868), 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, - [112250] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1628), 1, + anon_sym_LBRACE, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1661), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1846), 1, - aux_sym_unquoted_token2, - ACTIONS(7101), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(7241), 1, - aux_sym__immediate_decimal_token2, - STATE(734), 1, + STATE(923), 1, sym__immediate_decimal, - STATE(3712), 1, + STATE(3717), 1, sym_comment, - ACTIONS(7243), 2, + ACTIONS(6807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112283] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - ACTIONS(1718), 1, + ACTIONS(7053), 2, aux_sym__immediate_decimal_token1, - ACTIONS(1846), 1, - aux_sym_unquoted_token2, - ACTIONS(7101), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 1, aux_sym__immediate_decimal_token2, - STATE(1135), 1, - sym__immediate_decimal, - STATE(3713), 1, - sym_comment, - ACTIONS(7247), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1294), 2, + STATE(922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112316] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_RBRACK, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(7249), 1, - anon_sym_DOT_DOT2, - ACTIONS(7253), 1, - sym_filesize_unit, - ACTIONS(7255), 1, - sym_duration_unit, - STATE(3714), 1, - sym_comment, - STATE(4994), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7251), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112351] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3715), 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, - [112372] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1764), 1, - sym_raw_string_begin, - ACTIONS(7171), 1, - anon_sym_DQUOTE, - ACTIONS(7173), 1, - anon_sym_SQUOTE, - ACTIONS(7175), 1, - anon_sym_BQUOTE, - ACTIONS(7257), 1, - aux_sym_path_token1, - STATE(2308), 1, - sym_val_string, - STATE(3716), 1, - sym_comment, - STATE(2288), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112403] = 6, - ACTIONS(103), 1, + [112587] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7261), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, aux_sym__immediate_decimal_token5, - STATE(3717), 1, + STATE(3718), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1788), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1732), 4, + ACTIONS(1790), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [112428] = 6, - ACTIONS(103), 1, + [112612] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7263), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7265), 1, + ACTIONS(7257), 1, + anon_sym_DOT, + ACTIONS(7259), 1, aux_sym__immediate_decimal_token5, - STATE(3718), 1, + STATE(3719), 1, sym_comment, - ACTIONS(1730), 4, - sym__space, + ACTIONS(1788), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1790), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [112453] = 10, - ACTIONS(103), 1, + sym__unquoted_pattern_in_list, + [112637] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3255), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(5050), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5052), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5184), 1, + ACTIONS(5241), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7267), 1, + ACTIONS(7261), 1, anon_sym_DOLLAR, - STATE(2698), 1, + STATE(2722), 1, sym__immediate_decimal, - STATE(3719), 1, + STATE(3720), 1, sym_comment, - ACTIONS(7269), 2, + ACTIONS(7263), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2987), 2, + STATE(2977), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112486] = 6, - ACTIONS(3), 1, + [112670] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT, - ACTIONS(7273), 1, + ACTIONS(7265), 1, aux_sym__immediate_decimal_token5, - STATE(3720), 1, + STATE(3721), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(791), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(793), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112511] = 9, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112693] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1681), 1, - anon_sym_LBRACE, - ACTIONS(2898), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(5298), 1, anon_sym_DOLLAR, - STATE(802), 1, - sym__immediate_decimal, - STATE(3721), 1, + ACTIONS(6805), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7267), 1, + aux_sym__immediate_decimal_token2, + STATE(3722), 1, sym_comment, - ACTIONS(6660), 2, + STATE(4230), 1, + sym__immediate_decimal, + ACTIONS(7269), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(7213), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(801), 2, + STATE(4521), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112542] = 10, - ACTIONS(103), 1, + [112726] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(6547), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6549), 1, + ACTIONS(5135), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7011), 1, + ACTIONS(5137), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5241), 1, aux_sym__unquoted_in_record_token2, - STATE(3722), 1, - sym_comment, - STATE(3882), 1, + ACTIONS(7261), 1, + anon_sym_DOLLAR, + STATE(3258), 1, sym__immediate_decimal, - ACTIONS(6551), 2, + STATE(3723), 1, + sym_comment, + ACTIONS(7271), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4128), 2, + STATE(3475), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112575] = 5, + [112759] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6926), 1, + ACTIONS(7273), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token5, - STATE(3723), 1, + STATE(3724), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1776), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(1774), 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, - [112598] = 4, - ACTIONS(103), 1, + [112784] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3724), 1, + ACTIONS(7277), 1, + anon_sym_DOT, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token5, + STATE(3725), 1, sym_comment, - ACTIONS(775), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1790), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(777), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1788), 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, - sym__entry_separator, - [112619] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1685), 1, - anon_sym_LBRACE, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(804), 1, - sym__immediate_decimal, - STATE(3725), 1, - sym_comment, - ACTIONS(6660), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(7213), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(803), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112650] = 10, - ACTIONS(103), 1, + [112809] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3366), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(5298), 1, anon_sym_DOLLAR, - ACTIONS(4976), 1, + ACTIONS(6964), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4978), 1, + ACTIONS(7281), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5132), 1, - aux_sym_unquoted_token2, - STATE(2644), 1, - sym__immediate_decimal, STATE(3726), 1, sym_comment, - ACTIONS(4980), 2, + STATE(4947), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2735), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112683] = 10, - ACTIONS(103), 1, + [112842] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4998), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5000), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5132), 1, - aux_sym_unquoted_token2, - STATE(3011), 1, - sym__immediate_decimal, STATE(3727), 1, sym_comment, - ACTIONS(5002), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3406), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112716] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6050), 1, + ACTIONS(791), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(793), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(6604), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - ACTIONS(6648), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6650), 1, - aux_sym__immediate_decimal_token2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112863] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6663), 1, + anon_sym_DASH2, STATE(3728), 1, sym_comment, - STATE(4547), 1, - sym__immediate_decimal, - ACTIONS(6652), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4502), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112749] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(4529), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6050), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [112884] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(6054), 1, + ACTIONS(1699), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6056), 1, + ACTIONS(1864), 1, + aux_sym_unquoted_token2, + ACTIONS(7149), 1, + anon_sym_DOLLAR, + ACTIONS(7285), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6604), 1, - aux_sym__unquoted_in_list_token2, + STATE(721), 1, + sym__immediate_decimal, STATE(3729), 1, sym_comment, - STATE(3859), 1, - sym__immediate_decimal, - ACTIONS(6058), 2, + ACTIONS(7287), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4166), 2, + STATE(936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112782] = 10, - ACTIONS(103), 1, + [112917] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6425), 1, - anon_sym_DOLLAR, - ACTIONS(6427), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(1722), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, + ACTIONS(1864), 1, + aux_sym_unquoted_token2, + ACTIONS(7149), 1, + anon_sym_DOLLAR, + ACTIONS(7289), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6604), 1, - aux_sym__unquoted_in_list_token2, + STATE(994), 1, + sym__immediate_decimal, STATE(3730), 1, sym_comment, - STATE(4293), 1, - sym__immediate_decimal, - ACTIONS(6433), 2, + ACTIONS(7291), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4502), 2, + STATE(1308), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112815] = 6, + [112950] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7275), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7277), 1, + ACTIONS(6991), 1, aux_sym__immediate_decimal_token5, STATE(3731), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(751), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 6, - anon_sym_if, + ACTIONS(753), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112840] = 5, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [112973] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_BANG, + ACTIONS(1772), 1, + sym_raw_string_begin, + ACTIONS(7209), 1, + anon_sym_DQUOTE, + ACTIONS(7211), 1, + anon_sym_SQUOTE, + ACTIONS(7213), 1, + anon_sym_BQUOTE, + ACTIONS(7293), 1, + aux_sym_path_token1, + STATE(2311), 1, + sym_val_string, STATE(3732), 1, sym_comment, - ACTIONS(1464), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1462), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [112863] = 4, - ACTIONS(103), 1, + STATE(2276), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [113004] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3733), 1, sym_comment, - ACTIONS(775), 4, + ACTIONS(759), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(777), 6, + ACTIONS(761), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [112884] = 4, - ACTIONS(103), 1, + [113025] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7295), 1, + aux_sym__immediate_decimal_token5, STATE(3734), 1, sym_comment, - ACTIONS(775), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(777), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(793), 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, - [112905] = 10, - ACTIONS(103), 1, + [113048] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7027), 1, - anon_sym_DOLLAR, - ACTIONS(7279), 1, - aux_sym__immediate_decimal_token2, - STATE(1889), 1, - sym__immediate_decimal, + ACTIONS(7297), 1, + aux_sym__immediate_decimal_token5, STATE(3735), 1, sym_comment, - ACTIONS(7281), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(696), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112938] = 10, - ACTIONS(103), 1, + ACTIONS(791), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(793), 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, + [113071] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1756), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(4006), 1, + ACTIONS(6509), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7027), 1, - anon_sym_DOLLAR, - ACTIONS(7283), 1, + ACTIONS(6511), 1, aux_sym__immediate_decimal_token2, - STATE(2007), 1, - sym__immediate_decimal, + ACTIONS(6629), 1, + aux_sym__unquoted_in_list_token2, STATE(3736), 1, sym_comment, - ACTIONS(7285), 2, + STATE(3981), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(3991), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112971] = 9, - ACTIONS(103), 1, + [113104] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(7079), 1, - aux_sym_path_token1, - ACTIONS(7179), 1, - anon_sym_DQUOTE, - ACTIONS(7181), 1, - anon_sym_SQUOTE, - ACTIONS(7183), 1, - anon_sym_BQUOTE, - STATE(3446), 1, - sym_val_string, + ACTIONS(6978), 1, + aux_sym__immediate_decimal_token5, STATE(3737), 1, sym_comment, - STATE(3780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [113002] = 9, - ACTIONS(103), 1, + ACTIONS(751), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(753), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [113127] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(7287), 1, - anon_sym_DQUOTE, - ACTIONS(7289), 1, - anon_sym_SQUOTE, - ACTIONS(7291), 1, - anon_sym_BQUOTE, - ACTIONS(7293), 1, - aux_sym_path_token1, - STATE(414), 1, - sym_val_string, STATE(3738), 1, sym_comment, - STATE(442), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [113033] = 10, - ACTIONS(103), 1, + ACTIONS(791), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(793), 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, + [113148] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3255), 1, - anon_sym_LPAREN2, - ACTIONS(5140), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5142), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5184), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7267), 1, - anon_sym_DOLLAR, - STATE(3064), 1, - sym__immediate_decimal, + ACTIONS(1464), 1, + anon_sym_BANG, STATE(3739), 1, sym_comment, - ACTIONS(7295), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3452), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113066] = 9, - ACTIONS(3), 1, + ACTIONS(1462), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1460), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [113171] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(2898), 1, - anon_sym_DOLLAR, - STATE(786), 1, - sym__immediate_decimal, STATE(3740), 1, sym_comment, - ACTIONS(6660), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(7213), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(785), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113097] = 6, - ACTIONS(103), 1, + ACTIONS(759), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [113192] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token1, ACTIONS(7299), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7301), 1, aux_sym__immediate_decimal_token5, STATE(3741), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1774), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1732), 4, + ACTIONS(1776), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [113122] = 10, - ACTIONS(103), 1, + [113217] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(6137), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5332), 1, + ACTIONS(6607), 1, anon_sym_DOLLAR, - ACTIONS(5964), 1, + ACTIONS(6609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7301), 1, + ACTIONS(6611), 1, aux_sym__immediate_decimal_token2, + ACTIONS(6629), 1, + aux_sym__unquoted_in_list_token2, STATE(3742), 1, sym_comment, - STATE(3834), 1, + STATE(4365), 1, sym__immediate_decimal, - ACTIONS(7303), 2, + ACTIONS(6613), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3963), 2, + STATE(4637), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113155] = 10, - ACTIONS(103), 1, + [113250] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + STATE(3743), 1, + sym_comment, + ACTIONS(803), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(805), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5332), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113271] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1756), 1, anon_sym_DOLLAR, - ACTIONS(6124), 1, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6551), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7305), 1, + ACTIONS(6553), 1, aux_sym__immediate_decimal_token2, - STATE(3743), 1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_record_token2, + STATE(3744), 1, sym_comment, - STATE(4241), 1, + STATE(3904), 1, sym__immediate_decimal, - ACTIONS(7307), 2, + ACTIONS(6555), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(3991), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113188] = 4, - ACTIONS(103), 1, + [113304] = 10, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3744), 1, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + ACTIONS(6607), 1, + anon_sym_DOLLAR, + ACTIONS(6643), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7303), 1, + aux_sym__unquoted_in_record_token2, + STATE(3745), 1, sym_comment, - ACTIONS(866), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + STATE(4518), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113337] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(914), 1, + sym__entry_separator, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(7303), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7305), 1, + anon_sym_DOT_DOT2, + ACTIONS(7309), 1, + sym_filesize_unit, + ACTIONS(7311), 1, + sym_duration_unit, + STATE(3746), 1, + sym_comment, + STATE(5039), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7307), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113372] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7313), 1, + anon_sym_DOT, + ACTIONS(7315), 1, + aux_sym__immediate_decimal_token5, + STATE(3747), 1, + sym_comment, + ACTIONS(1788), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1790), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [113397] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7317), 1, + anon_sym_DQUOTE, + ACTIONS(7319), 1, + anon_sym_SQUOTE, + ACTIONS(7321), 1, + anon_sym_BQUOTE, + ACTIONS(7323), 1, + aux_sym_path_token1, + ACTIONS(7325), 1, + sym_raw_string_begin, + STATE(1738), 1, + sym_val_string, + STATE(3748), 1, + sym_comment, + STATE(1765), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [113428] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4197), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(868), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7327), 1, sym_filesize_unit, + ACTIONS(7329), 1, sym_duration_unit, - sym__entry_separator, - [113209] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3745), 1, - sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, + ACTIONS(7331), 1, sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, + STATE(3749), 1, + sym_comment, + ACTIONS(4199), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113230] = 8, + ACTIONS(914), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [113456] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3366), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(7309), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(3002), 1, + STATE(753), 1, sym__immediate_decimal, - STATE(3746), 1, + STATE(3750), 1, sym_comment, - ACTIONS(4998), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7311), 2, + ACTIONS(6807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3313), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113258] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(7313), 1, - anon_sym_DOLLAR, - STATE(3073), 1, - sym__immediate_decimal, - STATE(3747), 1, - sym_comment, - ACTIONS(6674), 2, + ACTIONS(7053), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7315), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3068), 2, + STATE(752), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113286] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3748), 1, - sym_comment, - ACTIONS(866), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(868), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [113306] = 8, + [113484] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(3805), 1, anon_sym_DOLLAR, - STATE(2599), 1, + STATE(2696), 1, sym__immediate_decimal, - STATE(3749), 1, + STATE(3751), 1, sym_comment, - ACTIONS(4924), 2, + ACTIONS(4952), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4926), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(1337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113334] = 5, - ACTIONS(103), 1, + [113512] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7001), 1, + ACTIONS(7333), 1, aux_sym__immediate_decimal_token5, - STATE(3750), 1, + STATE(3752), 1, sym_comment, - ACTIONS(1784), 4, + ACTIONS(1866), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1786), 4, + ACTIONS(1868), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [113356] = 8, + [113534] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3149), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(7313), 1, + ACTIONS(7335), 1, anon_sym_DOLLAR, - STATE(3073), 1, + STATE(3123), 1, sym__immediate_decimal, - STATE(3751), 1, + STATE(3753), 1, sym_comment, - ACTIONS(4988), 2, + ACTIONS(6703), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7317), 2, + ACTIONS(7337), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3068), 2, + STATE(3122), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113384] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3752), 1, - sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 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, - [113404] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3753), 1, - sym_comment, - ACTIONS(7319), 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, - [113422] = 8, + [113562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(6491), 1, anon_sym_LPAREN2, - STATE(933), 1, - sym__immediate_decimal, STATE(3754), 1, sym_comment, - ACTIONS(1649), 2, + STATE(4222), 1, + sym__immediate_decimal, + ACTIONS(6493), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1651), 2, + ACTIONS(7339), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(4606), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113450] = 4, + [113590] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_DOLLAR, + ACTIONS(1695), 1, + anon_sym_LPAREN2, + STATE(1295), 1, + sym__immediate_decimal, STATE(3755), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 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, - [113470] = 8, + ACTIONS(1701), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1365), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113618] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3255), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(3071), 1, + STATE(2591), 1, sym__immediate_decimal, STATE(3756), 1, sym_comment, - ACTIONS(5142), 2, + ACTIONS(4948), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5144), 2, + ACTIONS(4950), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3545), 2, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113498] = 8, + [113646] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(2005), 1, + STATE(717), 1, sym__immediate_decimal, STATE(3757), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(1638), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2010), 2, + STATE(708), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113526] = 8, + [113674] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1657), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - STATE(985), 1, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + STATE(3146), 1, sym__immediate_decimal, STATE(3758), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(5137), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1663), 2, + ACTIONS(5139), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(982), 2, + STATE(3495), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113554] = 8, + [113702] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(6137), 1, anon_sym_LPAREN2, - STATE(951), 1, - sym__immediate_decimal, STATE(3759), 1, sym_comment, - ACTIONS(4010), 2, + STATE(4354), 1, + sym__immediate_decimal, + ACTIONS(6509), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(7341), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(774), 2, + STATE(3991), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113582] = 8, + [113730] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(788), 1, - sym__immediate_decimal, STATE(3760), 1, sym_comment, - ACTIONS(1612), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + STATE(4375), 1, + sym__immediate_decimal, + ACTIONS(6469), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(782), 2, + ACTIONS(6471), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113610] = 8, + [113758] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - STATE(788), 1, + STATE(1538), 1, sym__immediate_decimal, STATE(3761), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(3518), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(3520), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(782), 2, + STATE(1337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113638] = 8, + [113786] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, - anon_sym_DOLLAR, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(3012), 1, + sym_cell_path, STATE(3762), 1, sym_comment, - STATE(4562), 1, - sym__immediate_decimal, - ACTIONS(6421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6423), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(790), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113666] = 8, + ACTIONS(1917), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [113812] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(2104), 1, + sym__immediate_decimal, STATE(3763), 1, sym_comment, - STATE(4968), 1, - sym__immediate_decimal, - ACTIONS(6917), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6919), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113694] = 8, + [113840] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(7321), 1, - anon_sym_DOT_DOT2, - ACTIONS(7325), 1, - sym_filesize_unit, - ACTIONS(7327), 1, - sym_duration_unit, + ACTIONS(7343), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + aux_sym__immediate_decimal_token5, STATE(3764), 1, sym_comment, - ACTIONS(7323), 2, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(753), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(884), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113722] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(2946), 1, - sym_cell_path, - STATE(3765), 1, - sym_comment, - ACTIONS(1866), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [113748] = 8, + sym_filesize_unit, + sym_duration_unit, + [113864] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1657), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(1524), 1, + STATE(1508), 1, sym__immediate_decimal, - STATE(3766), 1, + STATE(3765), 1, sym_comment, - ACTIONS(3493), 2, + ACTIONS(3480), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3495), 2, + ACTIONS(3482), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1305), 2, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113776] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1532), 1, - sym__entry_separator, - STATE(3767), 1, - sym_comment, - ACTIONS(1530), 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, - [113796] = 8, + [113892] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(698), 1, + STATE(955), 1, sym__immediate_decimal, - STATE(3768), 1, + STATE(3766), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1612), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(696), 2, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113824] = 8, + [113920] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(3769), 1, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(3767), 1, sym_comment, - STATE(4422), 1, + STATE(4297), 1, sym__immediate_decimal, - ACTIONS(6628), 2, + ACTIONS(6236), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7329), 2, + ACTIONS(6238), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4626), 2, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113852] = 9, - ACTIONS(103), 1, + [113948] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(1488), 1, sym__entry_separator, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6970), 1, + STATE(3768), 1, + sym_comment, + ACTIONS(1486), 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, + [113968] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(7347), 1, anon_sym_DOT_DOT2, - ACTIONS(6974), 1, + ACTIONS(7351), 1, sym_filesize_unit, - ACTIONS(6976), 1, + ACTIONS(7353), 1, sym_duration_unit, - STATE(3770), 1, + STATE(3769), 1, sym_comment, - ACTIONS(785), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6972), 2, + ACTIONS(7349), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113882] = 8, + ACTIONS(914), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113996] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - STATE(788), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR, + STATE(3123), 1, sym__immediate_decimal, - STATE(3771), 1, + STATE(3770), 1, sym_comment, - ACTIONS(1612), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(5024), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(782), 2, + ACTIONS(7355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3122), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113910] = 8, + [114024] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(7357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token5, + STATE(3771), 1, + sym_comment, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114048] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - STATE(2081), 1, + STATE(1305), 1, sym__immediate_decimal, STATE(3772), 1, sym_comment, - ACTIONS(4010), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + ACTIONS(1782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113938] = 8, + [114076] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token5, + STATE(3773), 1, + sym_comment, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114098] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1695), 1, anon_sym_LPAREN2, - STATE(951), 1, + ACTIONS(3805), 1, + anon_sym_DOLLAR, + STATE(1295), 1, sym__immediate_decimal, - STATE(3773), 1, + STATE(3774), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(1782), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(774), 2, + STATE(1365), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113966] = 8, + [114126] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(979), 1, + STATE(942), 1, sym__immediate_decimal, - STATE(3774), 1, + STATE(3775), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1640), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1673), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(790), 2, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113994] = 4, - ACTIONS(103), 1, + [114154] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3775), 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, + ACTIONS(1529), 1, sym__entry_separator, - [114014] = 4, - ACTIONS(3), 1, - anon_sym_POUND, STATE(3776), 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, - [114034] = 8, + 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, + [114174] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(3866), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(6137), 1, anon_sym_LPAREN2, - STATE(979), 1, - sym__immediate_decimal, STATE(3777), 1, sym_comment, - ACTIONS(4010), 2, + STATE(5020), 1, + sym__immediate_decimal, + ACTIONS(6631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(7341), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(4637), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114062] = 8, + [114202] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(1506), 1, + STATE(1984), 1, sym__immediate_decimal, STATE(3778), 1, sym_comment, - ACTIONS(3452), 2, + ACTIONS(4024), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3454), 2, + ACTIONS(4026), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(1993), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114090] = 8, + [114230] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, + STATE(1020), 1, + sym__immediate_decimal, STATE(3779), 1, sym_comment, - STATE(4455), 1, - sym__immediate_decimal, - ACTIONS(6844), 2, + ACTIONS(1722), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7331), 2, + ACTIONS(1724), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4430), 2, + STATE(1337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114118] = 4, - ACTIONS(103), 1, + [114258] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1524), 1, - sym__entry_separator, + ACTIONS(7363), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7365), 1, + aux_sym__immediate_decimal_token5, STATE(3780), 1, sym_comment, - ACTIONS(1522), 8, + ACTIONS(1776), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1774), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [114282] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1543), 1, + sym__entry_separator, + STATE(3781), 1, + sym_comment, + ACTIONS(1541), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -237648,51 +238022,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114138] = 8, + [114302] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7367), 1, + aux_sym__immediate_decimal_token5, + STATE(3782), 1, + sym_comment, + ACTIONS(1866), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1868), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3149), 1, + STATE(3783), 1, + sym_comment, + ACTIONS(7369), 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, + [114342] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(7313), 1, + ACTIONS(7335), 1, anon_sym_DOLLAR, - STATE(3781), 1, + STATE(3784), 1, sym_comment, - STATE(4234), 1, + STATE(4338), 1, sym__immediate_decimal, - ACTIONS(6445), 2, + ACTIONS(6455), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7333), 2, + ACTIONS(7371), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3074), 2, + STATE(3124), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114166] = 5, + [114370] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7273), 1, + ACTIONS(3860), 1, + anon_sym_DOLLAR, + ACTIONS(6491), 1, + anon_sym_LPAREN2, + STATE(3785), 1, + sym_comment, + STATE(4599), 1, + sym__immediate_decimal, + ACTIONS(6493), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7339), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4587), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114398] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3786), 1, + sym_comment, + ACTIONS(791), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(793), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [114418] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7279), 1, aux_sym__immediate_decimal_token5, - STATE(3782), 1, + STATE(3787), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(1790), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1784), 6, + ACTIONS(1788), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114188] = 4, - ACTIONS(103), 1, + [114440] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + ACTIONS(2945), 1, + anon_sym_DOLLAR, + STATE(753), 1, + sym__immediate_decimal, + STATE(3788), 1, + sym_comment, + ACTIONS(1640), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(752), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114468] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(914), 1, + sym__entry_separator, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6956), 1, + anon_sym_DOT_DOT2, + ACTIONS(6960), 1, + sym_filesize_unit, + ACTIONS(6962), 1, + sym_duration_unit, + STATE(3789), 1, + sym_comment, + ACTIONS(811), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114498] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(1537), 1, sym__entry_separator, - STATE(3783), 1, + STATE(3790), 1, sym_comment, - ACTIONS(1480), 8, + ACTIONS(1535), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -237701,500 +238184,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114208] = 8, + [114518] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3819), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(6427), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - STATE(3784), 1, - sym_comment, - STATE(4422), 1, + STATE(955), 1, sym__immediate_decimal, - ACTIONS(6429), 2, + STATE(3791), 1, + sym_comment, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7335), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4626), 2, + STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114236] = 5, - ACTIONS(103), 1, + [114546] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7005), 1, + ACTIONS(7373), 1, + anon_sym_DOT, + ACTIONS(7375), 1, aux_sym__immediate_decimal_token5, - STATE(3785), 1, + STATE(3792), 1, sym_comment, - ACTIONS(1784), 4, + ACTIONS(1790), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1788), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1786), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114258] = 6, - ACTIONS(3), 1, + [114570] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7337), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7339), 1, - aux_sym__immediate_decimal_token5, - STATE(3786), 1, + ACTIONS(1547), 1, + sym__entry_separator, + STATE(3793), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114282] = 8, + ACTIONS(1545), 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, + [114590] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - ACTIONS(3830), 1, + ACTIONS(3866), 1, anon_sym_DOLLAR, - STATE(2664), 1, - sym__immediate_decimal, - STATE(3787), 1, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + STATE(3794), 1, sym_comment, - ACTIONS(4946), 2, + STATE(4599), 1, + sym__immediate_decimal, + ACTIONS(6631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4948), 2, + ACTIONS(7341), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1305), 2, + STATE(4587), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114310] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3788), 1, - sym_comment, - ACTIONS(866), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(868), 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, - [114330] = 8, + [114618] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3149), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(7313), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - STATE(2843), 1, + STATE(753), 1, sym__immediate_decimal, - STATE(3789), 1, + STATE(3795), 1, sym_comment, - ACTIONS(4968), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7341), 2, + ACTIONS(5926), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3074), 2, + ACTIONS(6519), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(752), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114358] = 8, + [114646] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3255), 1, - anon_sym_LPAREN2, - ACTIONS(3842), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - STATE(3543), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(942), 1, sym__immediate_decimal, - STATE(3790), 1, + STATE(3796), 1, sym_comment, - ACTIONS(5054), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5217), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3542), 2, + ACTIONS(4044), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114386] = 3, + [114674] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3791), 1, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(3019), 1, + sym_cell_path, + STATE(3797), 1, sym_comment, - ACTIONS(7343), 9, + ACTIONS(1901), 5, anon_sym_EQ, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114404] = 8, + [114700] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(1657), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - STATE(1303), 1, - sym__immediate_decimal, - STATE(3792), 1, - sym_comment, - ACTIONS(1663), 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(1302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114432] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3366), 1, - anon_sym_LPAREN2, - ACTIONS(7309), 1, - anon_sym_DOLLAR, - STATE(3310), 1, + STATE(938), 1, sym__immediate_decimal, - STATE(3793), 1, + STATE(3798), 1, sym_comment, - ACTIONS(5074), 2, + ACTIONS(1699), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7345), 2, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3307), 2, + STATE(936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114460] = 8, + [114728] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - STATE(3794), 1, - sym_comment, - STATE(5008), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR, + STATE(2906), 1, sym__immediate_decimal, - ACTIONS(6628), 2, + STATE(3799), 1, + sym_comment, + ACTIONS(4996), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7329), 2, + ACTIONS(7377), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4430), 2, + STATE(3124), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114488] = 8, + [114756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - STATE(1306), 1, - sym__immediate_decimal, - STATE(3795), 1, + STATE(3800), 1, sym_comment, - ACTIONS(1663), 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(1305), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114516] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4153), 1, + ACTIONS(759), 2, anon_sym_DOT_DOT2, - ACTIONS(7347), 1, - sym_filesize_unit, - ACTIONS(7349), 1, - sym_duration_unit, - ACTIONS(7351), 1, sym__unquoted_pattern, - STATE(3796), 1, - sym_comment, - ACTIONS(4155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 3, + ACTIONS(761), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [114544] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token5, - STATE(3797), 1, - sym_comment, - ACTIONS(1832), 4, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1834), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114566] = 8, + sym_filesize_unit, + sym_duration_unit, + [114776] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1657), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - STATE(1295), 1, + ACTIONS(7379), 1, + anon_sym_DOLLAR, + STATE(3330), 1, sym__immediate_decimal, - STATE(3798), 1, + STATE(3801), 1, sym_comment, - ACTIONS(1663), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + ACTIONS(5056), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1294), 2, + ACTIONS(7381), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3327), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114594] = 8, + [114804] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(3866), 1, anon_sym_DOLLAR, - ACTIONS(1606), 1, + ACTIONS(6137), 1, anon_sym_LPAREN2, - STATE(1982), 1, - sym__immediate_decimal, - STATE(3799), 1, + STATE(3802), 1, sym_comment, - ACTIONS(4006), 2, + STATE(4992), 1, + sym__immediate_decimal, + ACTIONS(6631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4008), 2, + ACTIONS(7341), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(4606), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114622] = 6, + [114832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7355), 1, + ACTIONS(7383), 1, anon_sym_DOT, - ACTIONS(7357), 1, + ACTIONS(7385), 1, aux_sym__immediate_decimal_token5, - STATE(3800), 1, + STATE(3803), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(1790), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1784), 5, + ACTIONS(1788), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114646] = 4, - ACTIONS(103), 1, + [114856] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1518), 1, - sym__entry_separator, - STATE(3801), 1, + STATE(3804), 1, sym_comment, - ACTIONS(1516), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(7387), 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, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [114666] = 8, - ACTIONS(3), 1, + [114874] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(7389), 1, + aux_sym__immediate_decimal_token5, + STATE(3805), 1, + sym_comment, + ACTIONS(1866), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - STATE(1303), 1, - sym__immediate_decimal, - STATE(3802), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [114896] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7259), 1, + aux_sym__immediate_decimal_token5, + STATE(3806), 1, sym_comment, - ACTIONS(1663), 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(1302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114694] = 8, + ACTIONS(1788), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1790), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114918] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(3348), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR, - STATE(788), 1, + STATE(3494), 1, sym__immediate_decimal, - STATE(3803), 1, + STATE(3807), 1, sym_comment, - ACTIONS(6660), 2, + ACTIONS(5088), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(7213), 2, + ACTIONS(5221), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(782), 2, + STATE(3493), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114722] = 8, + [114946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2706), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - STATE(3804), 1, - sym_comment, - STATE(4242), 1, - sym__immediate_decimal, - ACTIONS(6475), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7329), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4128), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114750] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3805), 1, + STATE(3808), 1, sym_comment, - ACTIONS(775), 3, - anon_sym_RBRACE, + ACTIONS(759), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(777), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(761), 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, + [114966] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7255), 1, + aux_sym__immediate_decimal_token5, + STATE(3809), 1, + sym_comment, + ACTIONS(1788), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [114770] = 8, + ACTIONS(1790), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114988] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(1693), 1, anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(1695), 1, anon_sym_LPAREN2, - STATE(3806), 1, - sym_comment, - STATE(5095), 1, + STATE(1319), 1, sym__immediate_decimal, - ACTIONS(6628), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7329), 2, + STATE(3810), 1, + sym_comment, + ACTIONS(1701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4502), 2, + ACTIONS(1782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1308), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114798] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7359), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7361), 1, - aux_sym__immediate_decimal_token5, - STATE(3807), 1, - sym_comment, - 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, - sym__entry_separator, - [114822] = 6, + [115016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7363), 1, - anon_sym_DOT, - ACTIONS(7365), 1, - aux_sym__immediate_decimal_token5, - STATE(3808), 1, + STATE(3811), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + ACTIONS(793), 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, - [114846] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1474), 1, - sym__entry_separator, - STATE(3809), 1, - sym_comment, - ACTIONS(1472), 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, - [114866] = 4, + [115036] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3810), 1, + STATE(3812), 1, sym_comment, - ACTIONS(866), 2, + ACTIONS(791), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(868), 7, + ACTIONS(793), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -238202,10847 +238585,10842 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114886] = 4, + [115056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3811), 1, + STATE(3813), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(803), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(805), 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, - [114906] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(6050), 1, - anon_sym_LPAREN2, - STATE(3812), 1, - sym_comment, - STATE(4605), 1, - sym__immediate_decimal, - ACTIONS(6648), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7367), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4430), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114934] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - sym__entry_separator, - STATE(3813), 1, - sym_comment, - ACTIONS(1468), 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, - [114954] = 8, + [115076] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, STATE(3814), 1, sym_comment, - STATE(4295), 1, + STATE(5095), 1, sym__immediate_decimal, - ACTIONS(6124), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6126), 2, + ACTIONS(6966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114982] = 5, - ACTIONS(103), 1, + [115104] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7217), 1, + ACTIONS(7391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7393), 1, aux_sym__immediate_decimal_token5, STATE(3815), 1, sym_comment, - ACTIONS(1784), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [115004] = 8, - ACTIONS(3), 1, + ACTIONS(761), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115128] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1657), 1, - anon_sym_LPAREN2, - STATE(1147), 1, - sym__immediate_decimal, STATE(3816), 1, sym_comment, - ACTIONS(1718), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1720), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1305), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115032] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7369), 1, - aux_sym__immediate_decimal_token5, - STATE(3817), 1, - sym_comment, - ACTIONS(1832), 4, + ACTIONS(759), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1834), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + [115148] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(914), 1, + sym__space, + ACTIONS(4197), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [115054] = 8, + ACTIONS(5076), 1, + sym__unquoted_pattern, + ACTIONS(6935), 1, + sym_filesize_unit, + ACTIONS(6937), 1, + sym_duration_unit, + STATE(3817), 1, + sym_comment, + ACTIONS(811), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4199), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115178] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LPAREN2, - ACTIONS(2898), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - STATE(788), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(987), 1, sym__immediate_decimal, STATE(3818), 1, sym_comment, - ACTIONS(5966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6487), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(782), 2, + ACTIONS(1667), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [115082] = 8, + [115206] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3819), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR, - ACTIONS(6427), 1, + ACTIONS(1634), 1, anon_sym_LPAREN2, + STATE(753), 1, + sym__immediate_decimal, STATE(3819), 1, sym_comment, - STATE(4338), 1, - sym__immediate_decimal, - ACTIONS(6429), 2, + ACTIONS(4042), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7335), 2, + ACTIONS(4044), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4430), 2, + STATE(752), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [115110] = 7, + [115234] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(3026), 1, - sym_cell_path, STATE(3820), 1, sym_comment, - ACTIONS(1885), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [115136] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7371), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token5, - STATE(3821), 1, - sym_comment, - 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, - [115160] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(4153), 1, - anon_sym_DOT_DOT2, - ACTIONS(5046), 1, - sym__unquoted_pattern, - ACTIONS(6956), 1, - sym_filesize_unit, - ACTIONS(6958), 1, - sym_duration_unit, - STATE(3822), 1, - sym_comment, - ACTIONS(785), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115190] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - STATE(3823), 1, - sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(803), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(805), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115212] = 7, + sym_filesize_unit, + sym_duration_unit, + [115254] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1533), 1, + sym__entry_separator, + STATE(3821), 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, + [115274] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(5112), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2469), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, + STATE(2485), 1, sym_path, - STATE(2936), 1, + STATE(3006), 1, sym_cell_path, - STATE(3824), 1, + STATE(3822), 1, sym_comment, - ACTIONS(1893), 5, + ACTIONS(1909), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [115238] = 6, - ACTIONS(103), 1, + [115300] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7377), 1, - anon_sym_DOT, + ACTIONS(3424), 1, + anon_sym_LPAREN2, ACTIONS(7379), 1, - aux_sym__immediate_decimal_token5, - STATE(3825), 1, + anon_sym_DOLLAR, + STATE(2968), 1, + sym__immediate_decimal, + STATE(3823), 1, sym_comment, - ACTIONS(1786), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1784), 4, + ACTIONS(5032), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7395), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3335), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115328] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [115262] = 5, - ACTIONS(103), 1, + STATE(753), 1, + sym__immediate_decimal, + STATE(3824), 1, + sym_comment, + ACTIONS(1640), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(752), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115356] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7381), 1, + ACTIONS(7315), 1, aux_sym__immediate_decimal_token5, - STATE(3826), 1, + STATE(3825), 1, sym_comment, - ACTIONS(1832), 4, + ACTIONS(1788), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 4, + ACTIONS(1790), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [115284] = 6, + [115378] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(7383), 1, - anon_sym_DOT_DOT2, + ACTIONS(3866), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, + STATE(3826), 1, + sym_comment, + STATE(4621), 1, + sym__immediate_decimal, + ACTIONS(6643), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7397), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4606), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115406] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3866), 1, + anon_sym_DOLLAR, + ACTIONS(6137), 1, + anon_sym_LPAREN2, STATE(3827), 1, sym_comment, - ACTIONS(7385), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115307] = 4, - ACTIONS(103), 1, + STATE(4491), 1, + sym__immediate_decimal, + ACTIONS(6609), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7399), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4606), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115434] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3828), 1, sym_comment, - ACTIONS(1919), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1921), 4, - anon_sym_RBRACK, + ACTIONS(803), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [115326] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7387), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7389), 1, - aux_sym__immediate_decimal_token5, - STATE(3829), 1, - sym_comment, - ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(805), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115349] = 7, + sym__entry_separator, + [115454] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3830), 1, + ACTIONS(1630), 1, + anon_sym_DOLLAR, + ACTIONS(1634), 1, + anon_sym_LPAREN2, + STATE(2010), 1, + sym__immediate_decimal, + STATE(3829), 1, sym_comment, - STATE(4639), 1, - sym_cell_path, - ACTIONS(7391), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115374] = 7, + 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(754), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115482] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(1886), 1, anon_sym_DOT2, - STATE(430), 1, + STATE(438), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(470), 1, + STATE(472), 1, sym_path, - STATE(949), 1, + STATE(984), 1, sym_cell_path, - STATE(3831), 1, + STATE(3830), 1, sym_comment, - ACTIONS(7393), 4, + ACTIONS(7401), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115399] = 7, + [115507] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3831), 1, + sym_comment, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115526] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7397), 1, + ACTIONS(2417), 1, anon_sym_DOT2, - STATE(1964), 1, + STATE(586), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2119), 1, + STATE(737), 1, sym_path, - STATE(2194), 1, + STATE(1370), 1, sym_cell_path, STATE(3832), 1, sym_comment, - ACTIONS(7395), 4, + ACTIONS(7403), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115424] = 4, - ACTIONS(3), 1, + [115551] = 8, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2114), 1, + sym__entry_separator, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7405), 1, + anon_sym_DOT_DOT2, STATE(3833), 1, sym_comment, - ACTIONS(1921), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1919), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(2116), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7407), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115443] = 6, - ACTIONS(3), 1, + [115578] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(7399), 1, + ACTIONS(2104), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(7409), 1, anon_sym_DOT_DOT2, STATE(3834), 1, sym_comment, - ACTIONS(7401), 2, + ACTIONS(2106), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7411), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115466] = 8, - ACTIONS(103), 1, + [115605] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2090), 1, - sym__space, - ACTIONS(2094), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(7403), 1, + ACTIONS(7413), 1, anon_sym_DOT_DOT2, STATE(3835), 1, sym_comment, - ACTIONS(2092), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7405), 2, + ACTIONS(2106), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7415), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115493] = 4, - ACTIONS(103), 1, + [115632] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3836), 1, sym_comment, - ACTIONS(1832), 4, + ACTIONS(1866), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1834), 4, + ACTIONS(1868), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [115512] = 7, - ACTIONS(3), 1, + [115651] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(1919), 1, + sym__table_head_separator, + ACTIONS(7420), 1, + anon_sym_DOT_DOT, + ACTIONS(7422), 1, anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(949), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3837), 1, sym_comment, - ACTIONS(7407), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115537] = 7, + STATE(3993), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4617), 1, + sym_path, + STATE(4909), 1, + sym_cell_path, + ACTIONS(7417), 2, + anon_sym_RBRACK, + sym__entry_separator, + [115680] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(7426), 1, anon_sym_DOT2, - STATE(669), 1, + STATE(2568), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(703), 1, + STATE(2660), 1, sym_path, - STATE(1342), 1, + STATE(3358), 1, sym_cell_path, STATE(3838), 1, sym_comment, - ACTIONS(7409), 4, + ACTIONS(7424), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115562] = 7, + [115705] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7413), 1, + ACTIONS(5040), 1, anon_sym_DOT2, - STATE(2508), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, + STATE(472), 1, sym_path, - STATE(3104), 1, - sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3839), 1, sym_comment, - ACTIONS(7411), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115587] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7415), 1, - aux_sym__immediate_decimal_token5, - STATE(3840), 1, - sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 5, + STATE(4387), 1, + sym_cell_path, + ACTIONS(7428), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115608] = 5, + [115730] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7365), 1, + ACTIONS(7345), 1, aux_sym__immediate_decimal_token5, - STATE(3841), 1, + STATE(3840), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(751), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, + ACTIONS(753), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115629] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_DOT2, - STATE(703), 1, - sym_path, - STATE(1342), 1, - sym_cell_path, - STATE(2432), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3842), 1, - sym_comment, - ACTIONS(7417), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115654] = 9, - ACTIONS(103), 1, + [115751] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__table_head_separator, - ACTIONS(7422), 1, - anon_sym_DOT_DOT, - ACTIONS(7424), 1, + ACTIONS(1468), 1, + sym__entry_separator, + ACTIONS(7430), 1, anon_sym_DOT2, - STATE(3843), 1, + STATE(3841), 1, sym_comment, - STATE(4137), 1, + STATE(3951), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4521), 1, + STATE(4251), 1, sym_path, - STATE(4870), 1, + STATE(4525), 1, sym_cell_path, - ACTIONS(7419), 2, + ACTIONS(1466), 3, anon_sym_RBRACK, - sym__entry_separator, - [115683] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2362), 1, - anon_sym_DOT2, - STATE(669), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(703), 1, - sym_path, - STATE(1342), 1, - sym_cell_path, - STATE(3844), 1, - sym_comment, - ACTIONS(7426), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115708] = 4, + anon_sym_GT2, + anon_sym_DOT_DOT, + [115778] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3845), 1, + STATE(3842), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(1923), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 6, + ACTIONS(1921), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115727] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7428), 1, - aux_sym__immediate_decimal_token5, - STATE(3846), 1, - sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115748] = 4, - ACTIONS(103), 1, + [115797] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3847), 1, + STATE(3843), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1866), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 4, + ACTIONS(1868), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [115767] = 7, + [115816] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(7434), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(1956), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, + STATE(2094), 1, sym_path, - STATE(3143), 1, + STATE(2214), 1, sym_cell_path, - STATE(3848), 1, + STATE(3844), 1, sym_comment, - ACTIONS(7430), 4, + ACTIONS(7432), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115792] = 4, + [115841] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7434), 1, - anon_sym_DASH2, - STATE(3849), 1, + ACTIONS(7438), 1, + anon_sym_DOT2, + STATE(2509), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, + sym_path, + STATE(3145), 1, + sym_cell_path, + STATE(3845), 1, sym_comment, - ACTIONS(7432), 7, + ACTIONS(7436), 4, + anon_sym_in, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [115811] = 5, - ACTIONS(3), 1, + anon_sym_nu, + anon_sym_env, + [115866] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7357), 1, - aux_sym__immediate_decimal_token5, - STATE(3850), 1, + STATE(3846), 1, sym_comment, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1774), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115832] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(7436), 1, - anon_sym_alias, - ACTIONS(7438), 1, - anon_sym_const, - ACTIONS(7440), 1, - anon_sym_def, - ACTIONS(7442), 1, - anon_sym_use, - ACTIONS(7444), 1, - anon_sym_extern, - ACTIONS(7446), 1, - anon_sym_module, - STATE(3851), 1, - sym_comment, - [115863] = 7, + ACTIONS(1776), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [115885] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(1886), 1, anon_sym_DOT2, - STATE(430), 1, + STATE(438), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(470), 1, + STATE(472), 1, sym_path, - STATE(949), 1, + STATE(984), 1, sym_cell_path, - STATE(3852), 1, + STATE(3847), 1, sym_comment, - ACTIONS(7448), 4, + ACTIONS(7440), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115888] = 7, + [115910] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7452), 1, + ACTIONS(2417), 1, anon_sym_DOT2, - STATE(2604), 1, + STATE(586), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2741), 1, + STATE(737), 1, sym_path, - STATE(3143), 1, + STATE(1370), 1, sym_cell_path, - STATE(3853), 1, + STATE(3848), 1, sym_comment, - ACTIONS(7450), 4, + ACTIONS(7442), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115913] = 7, + [115935] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(1886), 1, anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3854), 1, - sym_comment, - STATE(4124), 1, + STATE(438), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4798), 1, + STATE(472), 1, + sym_path, + STATE(984), 1, sym_cell_path, - ACTIONS(7454), 4, + STATE(3849), 1, + sym_comment, + ACTIONS(7444), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115938] = 8, - ACTIONS(103), 1, + [115960] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1444), 1, - sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3855), 1, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(7446), 1, + anon_sym_alias, + ACTIONS(7448), 1, + anon_sym_const, + ACTIONS(7450), 1, + anon_sym_def, + ACTIONS(7452), 1, + anon_sym_use, + ACTIONS(7454), 1, + anon_sym_extern, + ACTIONS(7456), 1, + anon_sym_module, + STATE(3850), 1, sym_comment, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4235), 1, - sym_path, - STATE(4554), 1, - sym_cell_path, - ACTIONS(1442), 3, + [115991] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3851), 1, + sym_comment, + ACTIONS(1921), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1923), 4, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - [115965] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [116010] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1450), 1, - sym__entry_separator, + ACTIONS(7458), 1, + anon_sym_DOT, ACTIONS(7460), 1, - anon_sym_QMARK2, + aux_sym__immediate_decimal_token5, + STATE(3852), 1, + sym_comment, + ACTIONS(751), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(753), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116033] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3853), 1, + sym_comment, + ACTIONS(1921), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1923), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [116052] = 6, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(7462), 1, - anon_sym_BANG, + aux_sym__immediate_decimal_token1, + ACTIONS(7464), 1, + aux_sym__immediate_decimal_token5, + STATE(3854), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116075] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3855), 1, + sym_comment, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116094] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + sym__table_head_separator, + ACTIONS(7466), 1, + anon_sym_DOT2, STATE(3856), 1, sym_comment, - STATE(4283), 1, - sym__path_suffix, - ACTIONS(1448), 4, + STATE(4574), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4978), 1, + sym_path, + STATE(5375), 1, + sym_cell_path, + ACTIONS(7420), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115990] = 4, - ACTIONS(103), 1, + sym__entry_separator, + [116121] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3857), 1, - sym_comment, - ACTIONS(1832), 4, + ACTIONS(2114), 1, sym__space, + ACTIONS(2118), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 4, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(7468), 1, + anon_sym_DOT_DOT2, + STATE(3857), 1, + sym_comment, + ACTIONS(2116), 2, sym__newline, anon_sym_SEMI, + ACTIONS(7470), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116148] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7472), 1, + aux_sym__immediate_decimal_token5, + STATE(3858), 1, + sym_comment, + ACTIONS(1868), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [116009] = 7, + ACTIONS(1866), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116169] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(5112), 1, anon_sym_DOT2, - STATE(430), 1, + STATE(2469), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(470), 1, + STATE(2485), 1, sym_path, - STATE(949), 1, + STATE(3185), 1, sym_cell_path, - STATE(3858), 1, + STATE(3859), 1, sym_comment, - ACTIONS(7464), 4, + ACTIONS(7474), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [116034] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(7466), 1, - anon_sym_DOT_DOT2, - STATE(3859), 1, - sym_comment, - ACTIONS(2092), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7468), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116061] = 4, - ACTIONS(103), 1, + [116194] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7478), 1, + anon_sym_DASH2, STATE(3860), 1, sym_comment, - ACTIONS(1730), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1732), 4, + ACTIONS(7476), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [116080] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3861), 1, - sym_comment, - ACTIONS(1919), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1921), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [116099] = 7, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [116213] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7472), 1, + ACTIONS(5245), 1, anon_sym_DOT2, - STATE(2544), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2724), 1, + STATE(737), 1, sym_path, - STATE(3378), 1, + STATE(1370), 1, sym_cell_path, - STATE(3862), 1, + STATE(2434), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3861), 1, sym_comment, - ACTIONS(7470), 4, + ACTIONS(7480), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [116124] = 8, - ACTIONS(103), 1, + [116238] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7474), 1, + ACTIONS(7482), 1, + aux_sym__immediate_decimal_token5, + STATE(3862), 1, + sym_comment, + ACTIONS(1868), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1866), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [116259] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7484), 1, + aux_sym__immediate_decimal_token5, STATE(3863), 1, sym_comment, - ACTIONS(1955), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7476), 2, + ACTIONS(791), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(793), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116151] = 8, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [116280] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__table_head_separator, - ACTIONS(7478), 1, + ACTIONS(7488), 1, anon_sym_DOT2, + STATE(366), 1, + sym_path, STATE(3864), 1, sym_comment, - STATE(4388), 1, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(5088), 1, - sym_path, - STATE(5469), 1, + STATE(4875), 1, sym_cell_path, - ACTIONS(7422), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__entry_separator, - [116178] = 4, - ACTIONS(103), 1, + ACTIONS(7486), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [116305] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5040), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(984), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3865), 1, sym_comment, - ACTIONS(1832), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1834), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [116197] = 5, - ACTIONS(103), 1, + ACTIONS(7490), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [116330] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7379), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(7492), 1, + anon_sym_DOT_DOT2, STATE(3866), 1, sym_comment, - ACTIONS(1786), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1784), 4, - anon_sym_LPAREN2, + ACTIONS(7494), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [116218] = 7, + ACTIONS(2114), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116353] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(5040), 1, anon_sym_DOT2, - STATE(470), 1, + STATE(472), 1, sym_path, - STATE(2328), 1, + STATE(2335), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3867), 1, sym_comment, - STATE(4487), 1, + STATE(4624), 1, sym_cell_path, - ACTIONS(7480), 4, + ACTIONS(7496), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116243] = 4, - ACTIONS(3), 1, + [116378] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3868), 1, sym_comment, - ACTIONS(1834), 2, + ACTIONS(1774), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1776), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [116397] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + aux_sym__immediate_decimal_token5, + STATE(3869), 1, + sym_comment, + ACTIONS(1790), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1832), 6, - anon_sym_if, + ACTIONS(1788), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116262] = 4, - ACTIONS(103), 1, + [116418] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3869), 1, + STATE(3870), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1774), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1732), 4, + ACTIONS(1776), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [116281] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7482), 1, - anon_sym_DOT, - ACTIONS(7484), 1, - aux_sym__immediate_decimal_token5, - STATE(3870), 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, - [116304] = 4, - ACTIONS(103), 1, + [116437] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3871), 1, sym_comment, - ACTIONS(1919), 4, + ACTIONS(1866), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1921), 4, + ACTIONS(1868), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [116323] = 8, - ACTIONS(103), 1, + [116456] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__space, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(7500), 1, + anon_sym_DOT2, + STATE(2596), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2912), 1, + sym_path, + STATE(3185), 1, + sym_cell_path, + STATE(3872), 1, + sym_comment, + ACTIONS(7498), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [116481] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, sym__unquoted_pattern, - ACTIONS(7486), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT2, - STATE(3872), 1, + STATE(3873), 1, sym_comment, - ACTIONS(1955), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7488), 2, + ACTIONS(7504), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116350] = 5, - ACTIONS(103), 1, + ACTIONS(2104), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116504] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1474), 1, + sym__entry_separator, + ACTIONS(7506), 1, + anon_sym_QMARK2, + ACTIONS(7508), 1, + anon_sym_BANG, + STATE(3874), 1, + sym_comment, + STATE(4254), 1, + sym__path_suffix, + ACTIONS(1472), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [116529] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7490), 1, + ACTIONS(7375), 1, aux_sym__immediate_decimal_token5, - STATE(3873), 1, + STATE(3875), 1, sym_comment, - ACTIONS(1834), 3, + ACTIONS(1790), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1832), 4, + ACTIONS(1788), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [116371] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7492), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_comment, - STATE(4496), 1, - sym__immediate_decimal, - ACTIONS(7494), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7496), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116395] = 6, - ACTIONS(103), 1, + [116550] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7498), 1, - anon_sym_DOT, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token5, - STATE(3875), 1, + STATE(3876), 1, sym_comment, - ACTIONS(1784), 2, + ACTIONS(1921), 4, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1786), 3, + ACTIONS(1923), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [116417] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7502), 1, - anon_sym_QMARK2, - ACTIONS(7504), 1, - anon_sym_BANG, - STATE(3876), 1, - sym_comment, - STATE(4588), 1, - sym__path_suffix, - ACTIONS(1448), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [116439] = 4, + [116569] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7510), 1, + aux_sym__immediate_decimal_token5, STATE(3877), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(791), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(793), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116457] = 4, + sym_filesize_unit, + sym_duration_unit, + [116589] = 9, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7512), 1, + anon_sym_RBRACK, STATE(3878), 1, sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116475] = 4, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5288), 1, + sym__table_body, + [116617] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3879), 1, sym_comment, - ACTIONS(1921), 2, + ACTIONS(803), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1919), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(805), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116493] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [116635] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7508), 1, - anon_sym_DOT_DOT2, + ACTIONS(7514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7516), 1, + aux_sym__immediate_decimal_token5, STATE(3880), 1, sym_comment, - ACTIONS(7510), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7506), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116513] = 5, - ACTIONS(3), 1, + ACTIONS(1774), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1776), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [116657] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7508), 1, - anon_sym_DOT_DOT2, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, STATE(3881), 1, sym_comment, - ACTIONS(7510), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7512), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116533] = 8, - ACTIONS(103), 1, + STATE(4347), 1, + sym__variable_name, + STATE(4454), 1, + sym__assignment_pattern, + [116685] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(2092), 1, - anon_sym_RBRACE, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - ACTIONS(7514), 1, - anon_sym_DOT_DOT2, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, STATE(3882), 1, sym_comment, - ACTIONS(7516), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116559] = 9, - ACTIONS(103), 1, + STATE(4347), 1, + sym__variable_name, + STATE(4455), 1, + sym__assignment_pattern, + [116713] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7436), 1, + ACTIONS(7446), 1, anon_sym_alias, - ACTIONS(7438), 1, + ACTIONS(7448), 1, anon_sym_const, - ACTIONS(7440), 1, + ACTIONS(7450), 1, anon_sym_def, - ACTIONS(7442), 1, + ACTIONS(7452), 1, anon_sym_use, - ACTIONS(7444), 1, + ACTIONS(7454), 1, anon_sym_extern, - ACTIONS(7446), 1, + ACTIONS(7456), 1, anon_sym_module, STATE(3883), 1, sym_comment, - [116587] = 8, - ACTIONS(103), 1, + [116741] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1589), 1, + sym_parameter_parens, + STATE(1590), 1, + sym_parameter_bracks, STATE(3884), 1, sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4461), 1, - sym_cell_path, - ACTIONS(1887), 2, + STATE(3984), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [116769] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1560), 1, + sym_parameter_parens, + STATE(1561), 1, + sym_parameter_bracks, + STATE(3885), 1, + sym_comment, + STATE(3946), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [116797] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7528), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [116613] = 8, - ACTIONS(103), 1, + STATE(3886), 1, + sym_comment, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5301), 1, + sym__table_body, + [116825] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7422), 1, anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3885), 1, + STATE(3887), 1, sym_comment, - STATE(4124), 1, + STATE(3993), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4925), 1, + STATE(4617), 1, + sym_path, + STATE(4909), 1, sym_cell_path, - ACTIONS(5344), 2, + ACTIONS(1919), 3, anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [116849] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7530), 1, + anon_sym_alias, + ACTIONS(7532), 1, + anon_sym_const, + ACTIONS(7534), 1, + anon_sym_def, + ACTIONS(7536), 1, + anon_sym_use, + ACTIONS(7538), 1, + anon_sym_extern, + ACTIONS(7540), 1, + anon_sym_module, + STATE(3888), 1, + sym_comment, + [116877] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3889), 1, + sym_comment, + ACTIONS(1776), 3, anon_sym_RBRACE, - [116639] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1774), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [116895] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7542), 1, + anon_sym_RBRACK, + STATE(3890), 1, + sym_comment, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5378), 1, + sym__table_body, + [116923] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7544), 1, + anon_sym_RBRACK, + STATE(3891), 1, + sym_comment, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5238), 1, + sym__table_body, + [116951] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7520), 1, - anon_sym_DOT_DOT2, - STATE(3886), 1, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1558), 1, + sym_parameter_parens, + STATE(1559), 1, + sym_parameter_bracks, + STATE(3892), 1, sym_comment, - ACTIONS(7522), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116665] = 9, + STATE(3952), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [116979] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, + ACTIONS(4014), 1, sym__newline, - ACTIONS(7524), 1, + ACTIONS(7546), 1, anon_sym_RBRACK, - STATE(3887), 1, + STATE(3893), 1, sym_comment, - STATE(4330), 1, + STATE(4257), 1, aux_sym__types_body_repeat1, - STATE(4882), 1, + STATE(4844), 1, sym_val_list, - STATE(4886), 1, + STATE(4864), 1, aux_sym__table_body_repeat1, - STATE(5391), 1, + STATE(5497), 1, sym__table_body, - [116693] = 4, - ACTIONS(103), 1, + [117007] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3888), 1, + ACTIONS(7422), 1, + anon_sym_DOT2, + STATE(3894), 1, sym_comment, - ACTIONS(1675), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(3993), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4617), 1, + sym_path, + STATE(4837), 1, + sym_cell_path, + ACTIONS(1903), 3, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(1677), 4, + sym__table_head_separator, + [117031] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7428), 1, + sym__entry_separator, + ACTIONS(7430), 1, + anon_sym_DOT2, + STATE(3895), 1, + sym_comment, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4251), 1, + sym_path, + STATE(4831), 1, + sym_cell_path, + ACTIONS(7548), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [116711] = 9, + [117057] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, + ACTIONS(4014), 1, sym__newline, - ACTIONS(7526), 1, + ACTIONS(7550), 1, anon_sym_RBRACK, - STATE(3889), 1, + STATE(3896), 1, sym_comment, - STATE(4330), 1, + STATE(4257), 1, aux_sym__types_body_repeat1, - STATE(4882), 1, + STATE(4844), 1, sym_val_list, - STATE(4886), 1, + STATE(4864), 1, aux_sym__table_body_repeat1, - STATE(5368), 1, + STATE(5102), 1, sym__table_body, - [116739] = 9, + [117085] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1554), 1, + STATE(1678), 1, sym_parameter_parens, - STATE(1555), 1, + STATE(1679), 1, sym_parameter_bracks, - STATE(3890), 1, + STATE(3897), 1, sym_comment, - STATE(4270), 1, + STATE(4245), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [116767] = 9, + [117113] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1905), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3898), 1, + sym_comment, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4532), 1, + sym_cell_path, + ACTIONS(1907), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117139] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1556), 1, - sym_parameter_parens, - STATE(1557), 1, - sym_parameter_bracks, - STATE(3891), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(7554), 1, + anon_sym_DOT_DOT2, + STATE(3899), 1, sym_comment, - STATE(3944), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [116795] = 4, - ACTIONS(103), 1, + ACTIONS(7556), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117161] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3892), 1, + ACTIONS(7558), 1, + anon_sym_DOT2, + STATE(2309), 1, + sym_cell_path, + STATE(2485), 1, + sym_path, + STATE(3900), 1, sym_comment, - ACTIONS(1905), 3, + STATE(4183), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1468), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [117185] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(914), 1, + sym__entry_separator, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7229), 1, + anon_sym_DOT_DOT2, + ACTIONS(7233), 1, + sym_filesize_unit, + ACTIONS(7235), 1, + sym_duration_unit, + STATE(3901), 1, + sym_comment, + ACTIONS(7231), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117211] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1909), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3902), 1, + sym_comment, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4580), 1, + sym_cell_path, + ACTIONS(1911), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117237] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3903), 1, + sym_comment, + ACTIONS(1913), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1907), 4, + ACTIONS(1915), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [116813] = 8, - ACTIONS(103), 1, + [117255] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_RBRACE, - ACTIONS(884), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2104), 1, sym__entry_separator, - ACTIONS(7534), 1, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(7560), 1, anon_sym_DOT_DOT2, - ACTIONS(7538), 1, - sym_filesize_unit, - ACTIONS(7540), 1, - sym_duration_unit, - STATE(3893), 1, + STATE(3904), 1, sym_comment, - ACTIONS(7536), 2, + ACTIONS(7562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116839] = 9, - ACTIONS(103), 1, + [117281] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7419), 1, + ACTIONS(7430), 1, + anon_sym_DOT2, + ACTIONS(7496), 1, + sym__entry_separator, + STATE(3905), 1, + sym_comment, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4251), 1, + sym_path, + STATE(4816), 1, + sym_cell_path, + ACTIONS(7564), 2, anon_sym_RBRACK, - ACTIONS(7422), 1, anon_sym_DOT_DOT, - ACTIONS(7518), 1, - anon_sym_DOT2, - ACTIONS(7542), 1, + [117307] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1880), 1, sym__entry_separator, - STATE(367), 1, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, sym_path, - STATE(3894), 1, + STATE(3906), 1, sym_comment, - STATE(4124), 1, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4548), 1, + STATE(4667), 1, sym_cell_path, - [116867] = 8, + ACTIONS(1883), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(7545), 1, - anon_sym_DOT_DOT2, - ACTIONS(7549), 1, - sym_filesize_unit, - ACTIONS(7551), 1, - sym_duration_unit, - STATE(3895), 1, + STATE(3907), 1, sym_comment, - ACTIONS(7547), 2, + ACTIONS(791), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(793), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116893] = 6, + sym_filesize_unit, + sym_duration_unit, + [117351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, - ACTIONS(7553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7555), 1, - aux_sym__immediate_decimal_token5, - STATE(3896), 1, + ACTIONS(7566), 1, + anon_sym_DOT_DOT2, + STATE(3908), 1, sym_comment, - ACTIONS(1730), 4, - anon_sym_if, + ACTIONS(7568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2114), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116915] = 7, + [117373] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(7557), 1, + ACTIONS(7570), 1, anon_sym_DOT, - STATE(3897), 1, - sym_comment, - STATE(4436), 1, - sym__immediate_decimal, - ACTIONS(6658), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6660), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116939] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1630), 1, - sym_parameter_bracks, - STATE(1704), 1, - sym_parameter_parens, - STATE(3898), 1, + ACTIONS(7572), 1, + aux_sym__immediate_decimal_token5, + STATE(3909), 1, sym_comment, - STATE(3915), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [116967] = 9, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117395] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1575), 1, + STATE(1545), 1, sym_parameter_parens, - STATE(1576), 1, + STATE(1546), 1, sym_parameter_bracks, - STATE(3899), 1, + STATE(3910), 1, sym_comment, - STATE(4270), 1, + STATE(3915), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [116995] = 9, - ACTIONS(103), 1, + [117423] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - STATE(2821), 1, - sym__variable_name, - STATE(2822), 1, - sym_val_variable, - STATE(3900), 1, + STATE(3911), 1, sym_comment, - STATE(4497), 1, - sym__assignment_pattern, - [117023] = 9, + ACTIONS(1872), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1874), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [117441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1577), 1, - sym_parameter_parens, - STATE(1582), 1, - sym_parameter_bracks, - STATE(3901), 1, + STATE(3912), 1, sym_comment, - STATE(3905), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [117051] = 8, - ACTIONS(103), 1, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [117459] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2090), 1, + ACTIONS(2114), 1, sym__entry_separator, - ACTIONS(2092), 1, - anon_sym_RBRACK, - ACTIONS(2094), 1, + ACTIONS(2116), 1, + anon_sym_RBRACE, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(7563), 1, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7574), 1, anon_sym_DOT_DOT2, - STATE(3902), 1, + STATE(3913), 1, sym_comment, - ACTIONS(7565), 2, + ACTIONS(7576), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117077] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(3903), 1, - sym_comment, - STATE(4310), 1, - sym__variable_name, - STATE(4504), 1, - sym__assignment_pattern, - [117105] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(3904), 1, - sym_comment, - STATE(4310), 1, - sym__variable_name, - STATE(4508), 1, - sym__assignment_pattern, - [117133] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1543), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, - STATE(3905), 1, - sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [117161] = 6, + [117485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7569), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(7578), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7571), 1, + ACTIONS(7580), 1, aux_sym__immediate_decimal_token5, - STATE(3906), 1, + STATE(3914), 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, - [117183] = 9, + ACTIONS(1774), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117507] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1546), 1, + STATE(1572), 1, sym_parameter_parens, - STATE(1547), 1, + STATE(1577), 1, sym_parameter_bracks, - STATE(3907), 1, + STATE(3915), 1, sym_comment, - STATE(4270), 1, + STATE(4245), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [117211] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1889), 1, - sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3908), 1, - sym_comment, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4235), 1, - sym_path, - STATE(4579), 1, - sym_cell_path, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117237] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1901), 1, - sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3909), 1, - sym_comment, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4235), 1, - sym_path, - STATE(4374), 1, - sym_cell_path, - ACTIONS(1903), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117263] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7575), 1, - aux_sym__immediate_decimal_token5, - STATE(3910), 1, - sym_comment, - ACTIONS(1730), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [117285] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7440), 1, - anon_sym_def, - ACTIONS(7442), 1, - anon_sym_use, - ACTIONS(7444), 1, - anon_sym_extern, - ACTIONS(7446), 1, - anon_sym_module, - ACTIONS(7577), 1, - anon_sym_alias, - ACTIONS(7579), 1, - anon_sym_const, - STATE(3911), 1, - sym_comment, - [117313] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(2998), 1, - sym_cell_path, - STATE(3912), 1, - sym_comment, - ACTIONS(1872), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [117337] = 9, + [117535] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7581), 1, - anon_sym_RBRACK, - STATE(3913), 1, - sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5319), 1, - sym__table_body, - [117365] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1528), 1, - sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3914), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(7582), 1, + anon_sym_DOT, + STATE(3916), 1, sym_comment, - STATE(3919), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4235), 1, - sym_path, - ACTIONS(1526), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [117389] = 9, + STATE(4546), 1, + sym__immediate_decimal, + ACTIONS(6805), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6807), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117559] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1688), 1, + STATE(1548), 1, sym_parameter_parens, - STATE(1689), 1, + STATE(1549), 1, sym_parameter_bracks, - STATE(3915), 1, + STATE(3917), 1, sym_comment, - STATE(4270), 1, + STATE(3921), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [117417] = 8, - ACTIONS(103), 1, + [117587] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(2114), 1, sym__entry_separator, - ACTIONS(1955), 1, + ACTIONS(2116), 1, anon_sym_RBRACK, - ACTIONS(1957), 1, + ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2124), 1, sym__unquoted_pattern_in_list, - ACTIONS(7583), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT2, - STATE(3916), 1, + STATE(3918), 1, sym_comment, - ACTIONS(7585), 2, + ACTIONS(7586), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117443] = 6, + [117613] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(7587), 1, - anon_sym_DOT_DOT2, - STATE(3917), 1, - sym_comment, - ACTIONS(7589), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 3, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117465] = 9, + ACTIONS(7588), 1, + anon_sym_RBRACK, + STATE(3919), 1, + sym_comment, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5251), 1, + sym__table_body, + [117641] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1690), 1, + STATE(1552), 1, sym_parameter_parens, - STATE(1691), 1, + STATE(1553), 1, sym_parameter_bracks, - STATE(3907), 1, - aux_sym_decl_def_repeat1, - STATE(3918), 1, - sym_comment, - STATE(4922), 1, - sym_long_flag, - [117493] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1538), 1, - sym__entry_separator, - ACTIONS(7591), 1, - anon_sym_DOT2, - STATE(4235), 1, - sym_path, - STATE(3919), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1536), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [117515] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7458), 1, - anon_sym_DOT2, - ACTIONS(7594), 1, - anon_sym_RBRACK, - ACTIONS(7598), 1, - anon_sym_DOT_DOT, - ACTIONS(7600), 1, - sym__entry_separator, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3920), 1, sym_comment, - STATE(4235), 1, - sym_path, - STATE(4736), 1, - sym_cell_path, - [117543] = 6, + STATE(3924), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117669] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(7604), 1, - anon_sym_DOT_DOT2, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1554), 1, + sym_parameter_parens, + STATE(1555), 1, + sym_parameter_bracks, STATE(3921), 1, sym_comment, - ACTIONS(7606), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117565] = 7, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117697] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(3170), 1, - sym_cell_path, - STATE(3922), 1, - sym_comment, - ACTIONS(1889), 3, + ACTIONS(7522), 1, anon_sym_LBRACK, + ACTIONS(7524), 1, anon_sym_LPAREN, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - [117589] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7249), 1, - anon_sym_DOT_DOT2, - ACTIONS(7253), 1, - sym_filesize_unit, - ACTIONS(7255), 1, - sym_duration_unit, - STATE(3923), 1, + STATE(1556), 1, + sym_parameter_parens, + STATE(1557), 1, + sym_parameter_bracks, + STATE(3922), 1, sym_comment, - ACTIONS(7251), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117615] = 8, - ACTIONS(103), 1, + STATE(3926), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117725] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7458), 1, + ACTIONS(7417), 1, + anon_sym_RBRACK, + ACTIONS(7420), 1, + anon_sym_DOT_DOT, + ACTIONS(7552), 1, anon_sym_DOT2, - ACTIONS(7480), 1, + ACTIONS(7590), 1, sym__entry_separator, - STATE(3914), 1, + STATE(366), 1, + sym_path, + STATE(3923), 1, + sym_comment, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, + STATE(4528), 1, + sym_cell_path, + [117753] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1562), 1, + sym_parameter_parens, + STATE(1563), 1, + sym_parameter_bracks, STATE(3924), 1, sym_comment, - STATE(4235), 1, - sym_path, - STATE(4726), 1, - sym_cell_path, - ACTIONS(7598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117641] = 8, - ACTIONS(103), 1, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117781] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7391), 1, - sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1564), 1, + sym_parameter_parens, + STATE(1565), 1, + sym_parameter_bracks, STATE(3925), 1, sym_comment, - STATE(4235), 1, - sym_path, - STATE(4749), 1, - sym_cell_path, - ACTIONS(7608), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117667] = 9, + STATE(3931), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117809] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1551), 1, + STATE(1566), 1, sym_parameter_parens, - STATE(1552), 1, + STATE(1567), 1, sym_parameter_bracks, - STATE(3899), 1, - aux_sym_decl_def_repeat1, STATE(3926), 1, sym_comment, - STATE(4922), 1, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, sym_long_flag, - [117695] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3927), 1, - sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4864), 1, - sym_cell_path, - ACTIONS(5401), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117721] = 6, + [117837] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(914), 1, + anon_sym_LBRACE, + ACTIONS(1806), 1, sym__unquoted_pattern, - ACTIONS(7610), 1, - anon_sym_DOT, - ACTIONS(7612), 1, - aux_sym__immediate_decimal_token5, - STATE(3928), 1, + ACTIONS(7593), 1, + anon_sym_DOT_DOT2, + ACTIONS(7597), 1, + sym_filesize_unit, + ACTIONS(7599), 1, + sym_duration_unit, + STATE(3927), 1, sym_comment, - ACTIONS(1784), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117743] = 9, + ACTIONS(7595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117863] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7614), 1, - anon_sym_RBRACK, - STATE(3929), 1, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1573), 1, + sym_parameter_parens, + STATE(1574), 1, + sym_parameter_bracks, + STATE(3928), 1, sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5528), 1, - sym__table_body, - [117771] = 9, - ACTIONS(103), 1, + STATE(3985), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117891] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7440), 1, + ACTIONS(7450), 1, anon_sym_def, - ACTIONS(7442), 1, + ACTIONS(7452), 1, anon_sym_use, - ACTIONS(7444), 1, + ACTIONS(7454), 1, anon_sym_extern, - ACTIONS(7446), 1, + ACTIONS(7456), 1, anon_sym_module, - ACTIONS(7616), 1, + ACTIONS(7601), 1, anon_sym_alias, - ACTIONS(7618), 1, + ACTIONS(7603), 1, anon_sym_const, - STATE(3930), 1, - sym_comment, - [117799] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7620), 1, - anon_sym_RBRACK, - STATE(3931), 1, - sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5172), 1, - sym__table_body, - [117827] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7622), 1, - anon_sym_RBRACK, - STATE(3932), 1, + STATE(3929), 1, sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5291), 1, - sym__table_body, - [117855] = 7, + [117919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(5112), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2469), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, + STATE(2485), 1, sym_path, - STATE(3180), 1, + STATE(3005), 1, sym_cell_path, - STATE(3933), 1, + STATE(3930), 1, sym_comment, - ACTIONS(1901), 3, + ACTIONS(1880), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [117879] = 9, + [117943] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7624), 1, - anon_sym_RBRACK, - STATE(3934), 1, - sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5385), 1, - sym__table_body, - [117907] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT2, - STATE(3935), 1, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1575), 1, + sym_parameter_parens, + STATE(1576), 1, + sym_parameter_bracks, + STATE(3931), 1, sym_comment, - STATE(4137), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4521), 1, - sym_path, - STATE(4870), 1, - sym_cell_path, - ACTIONS(1868), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [117931] = 7, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [117971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7626), 1, - anon_sym_DOT2, - STATE(2302), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(3936), 1, + STATE(3932), 1, sym_comment, - STATE(4195), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 3, - anon_sym_EQ, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 5, sym__newline, - anon_sym_COLON, - [117955] = 9, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117989] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, + ACTIONS(4014), 1, sym__newline, - ACTIONS(7628), 1, + ACTIONS(7605), 1, anon_sym_RBRACK, - STATE(3937), 1, + STATE(3933), 1, sym_comment, - STATE(4330), 1, + STATE(4257), 1, aux_sym__types_body_repeat1, - STATE(4882), 1, + STATE(4844), 1, sym_val_list, - STATE(4886), 1, + STATE(4864), 1, aux_sym__table_body_repeat1, - STATE(5493), 1, + STATE(5218), 1, sym__table_body, - [117983] = 8, - ACTIONS(103), 1, + [118017] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3938), 1, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1580), 1, + sym_parameter_parens, + STATE(1581), 1, + sym_parameter_bracks, + STATE(3934), 1, sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4614), 1, - sym_cell_path, - ACTIONS(1875), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118009] = 6, + STATE(3935), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [118045] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7630), 1, - anon_sym_DOT, - ACTIONS(7632), 1, - aux_sym__immediate_decimal_token5, - STATE(3939), 1, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1582), 1, + sym_parameter_parens, + STATE(1583), 1, + sym_parameter_bracks, + STATE(3935), 1, sym_comment, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118031] = 4, - ACTIONS(103), 1, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [118073] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3940), 1, + STATE(3936), 1, sym_comment, - ACTIONS(1732), 3, + ACTIONS(1868), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1730), 4, + ACTIONS(1866), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [118049] = 4, - ACTIONS(103), 1, + [118091] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3941), 1, + ACTIONS(7607), 1, + anon_sym_DOT_DOT2, + STATE(3937), 1, sym_comment, - ACTIONS(1854), 3, + ACTIONS(7609), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118111] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5405), 1, sym__entry_separator, - ACTIONS(1856), 4, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3938), 1, + sym_comment, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4709), 1, + sym_cell_path, + ACTIONS(5403), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [118067] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7634), 1, - anon_sym_RBRACK, - STATE(3942), 1, - sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5099), 1, - sym__table_body, - [118095] = 4, - ACTIONS(103), 1, + [118137] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3943), 1, + ACTIONS(5421), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3939), 1, sym_comment, - ACTIONS(1834), 3, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4766), 1, + sym_cell_path, + ACTIONS(5419), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1832), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [118113] = 9, + [118163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1589), 1, - sym_parameter_parens, - STATE(1590), 1, - sym_parameter_bracks, - STATE(3944), 1, - sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118141] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3945), 1, - sym_comment, - ACTIONS(1921), 3, - anon_sym_RBRACE, + ACTIONS(7611), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1919), 4, - anon_sym_LPAREN2, + STATE(3940), 1, + sym_comment, + ACTIONS(7613), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [118159] = 4, + ACTIONS(2166), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118183] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3946), 1, - sym_comment, - ACTIONS(866), 2, + ACTIONS(7615), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(868), 5, - anon_sym_LBRACE, + STATE(3941), 1, + sym_comment, + ACTIONS(7617), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [118177] = 6, - ACTIONS(103), 1, + ACTIONS(2174), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118203] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7636), 1, - anon_sym_DOT, - ACTIONS(7638), 1, - aux_sym__immediate_decimal_token5, - STATE(3947), 1, + ACTIONS(7619), 1, + anon_sym_DOT_DOT2, + STATE(3942), 1, sym_comment, - ACTIONS(1784), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1786), 3, + ACTIONS(7621), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2186), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [118199] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118223] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3948), 1, + ACTIONS(7460), 1, + aux_sym__immediate_decimal_token5, + STATE(3943), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(751), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(753), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [118217] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1560), 1, - sym_parameter_parens, - STATE(1561), 1, - sym_parameter_bracks, - STATE(3949), 1, - sym_comment, - STATE(3952), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118245] = 9, + [118243] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7640), 1, - anon_sym_RBRACK, - STATE(3950), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7623), 1, + anon_sym_DOT, + STATE(3944), 1, sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5247), 1, - sym__table_body, - [118273] = 9, + STATE(4435), 1, + sym__immediate_decimal, + ACTIONS(7625), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7627), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118267] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1563), 1, + STATE(1591), 1, sym_parameter_parens, - STATE(1564), 1, + STATE(1593), 1, sym_parameter_bracks, - STATE(3951), 1, + STATE(3945), 1, sym_comment, - STATE(3954), 1, + STATE(4245), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [118301] = 9, + [118295] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1565), 1, + STATE(1585), 1, sym_parameter_parens, - STATE(1566), 1, + STATE(1586), 1, sym_parameter_bracks, - STATE(3952), 1, + STATE(3946), 1, sym_comment, - STATE(4270), 1, + STATE(4245), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [118329] = 9, + [118323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1567), 1, - sym_parameter_parens, - STATE(1568), 1, - sym_parameter_bracks, - STATE(3953), 1, + STATE(3947), 1, sym_comment, - STATE(3956), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118357] = 9, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118341] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(3205), 1, + sym_cell_path, + STATE(3948), 1, + sym_comment, + ACTIONS(1905), 3, anon_sym_LBRACK, - ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1569), 1, - sym_parameter_parens, - STATE(1570), 1, - sym_parameter_bracks, - STATE(3954), 1, + [118365] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3949), 1, sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118385] = 9, + ACTIONS(1923), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1921), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [118383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1571), 1, - sym_parameter_parens, - STATE(1572), 1, - sym_parameter_bracks, - STATE(3955), 1, + STATE(3950), 1, sym_comment, - STATE(3958), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118413] = 9, - ACTIONS(3), 1, + ACTIONS(1923), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1921), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118401] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1573), 1, - sym_parameter_parens, - STATE(1574), 1, - sym_parameter_bracks, - STATE(3956), 1, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(7430), 1, + anon_sym_DOT2, + STATE(3951), 1, sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118441] = 9, + STATE(3957), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4251), 1, + sym_path, + ACTIONS(1577), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [118425] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1578), 1, + STATE(1568), 1, sym_parameter_parens, - STATE(1579), 1, + STATE(1569), 1, sym_parameter_bracks, - STATE(3957), 1, + STATE(3952), 1, sym_comment, - STATE(3959), 1, + STATE(4245), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(4887), 1, sym_long_flag, - [118469] = 9, - ACTIONS(3), 1, + [118453] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1580), 1, - sym_parameter_parens, - STATE(1581), 1, - sym_parameter_bracks, - STATE(3958), 1, + ACTIONS(1917), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(3953), 1, sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118497] = 9, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4528), 1, + sym_cell_path, + ACTIONS(1919), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118479] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1468), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(383), 1, + sym_cell_path, + STATE(3954), 1, + sym_comment, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1466), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118505] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1583), 1, - sym_parameter_parens, - STATE(1584), 1, - sym_parameter_bracks, - STATE(3959), 1, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7629), 1, + anon_sym_RBRACK, + STATE(3955), 1, sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118525] = 9, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5393), 1, + sym__table_body, + [118533] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1905), 1, + sym__entry_separator, + ACTIONS(7430), 1, + anon_sym_DOT2, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3956), 1, + sym_comment, + STATE(4251), 1, + sym_path, + STATE(4532), 1, + sym_cell_path, + ACTIONS(1907), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118559] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(7631), 1, + anon_sym_DOT2, + STATE(4251), 1, + sym_path, + STATE(3957), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1490), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [118581] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7532), 1, + ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1585), 1, + STATE(1570), 1, sym_parameter_parens, - STATE(1586), 1, + STATE(1571), 1, sym_parameter_bracks, - STATE(3960), 1, - sym_comment, - STATE(3961), 1, + STATE(3945), 1, aux_sym_decl_def_repeat1, - STATE(4922), 1, + STATE(3958), 1, + sym_comment, + STATE(4887), 1, sym_long_flag, - [118553] = 9, + [118609] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1587), 1, - sym_parameter_parens, - STATE(1588), 1, - sym_parameter_bracks, - STATE(3961), 1, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7634), 1, + anon_sym_RBRACK, + STATE(3959), 1, sym_comment, - STATE(4270), 1, - aux_sym_decl_def_repeat1, - STATE(4922), 1, - sym_long_flag, - [118581] = 8, - ACTIONS(103), 1, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5356), 1, + sym__table_body, + [118637] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1925), 1, sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7430), 1, anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3962), 1, - sym_comment, - STATE(4124), 1, + STATE(3951), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4548), 1, + STATE(3960), 1, + sym_comment, + STATE(4251), 1, + sym_path, + STATE(4372), 1, sym_cell_path, - ACTIONS(1868), 2, + ACTIONS(1927), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [118607] = 5, + anon_sym_DOT_DOT, + [118663] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7642), 1, + ACTIONS(7638), 1, anon_sym_DOT_DOT2, - STATE(3963), 1, + STATE(3961), 1, sym_comment, - ACTIONS(7644), 2, + ACTIONS(7640), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 4, + ACTIONS(7636), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118627] = 9, + [118683] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - ACTIONS(7532), 1, - anon_sym_DASH_DASH, - STATE(1635), 1, - sym_parameter_parens, - STATE(1639), 1, - sym_parameter_bracks, - STATE(3890), 1, - aux_sym_decl_def_repeat1, + ACTIONS(4014), 1, + sym__newline, + ACTIONS(7642), 1, + anon_sym_RBRACK, + STATE(3962), 1, + sym_comment, + STATE(4257), 1, + aux_sym__types_body_repeat1, + STATE(4844), 1, + sym_val_list, + STATE(4864), 1, + aux_sym__table_body_repeat1, + STATE(5351), 1, + sym__table_body, + [118711] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(7644), 1, + anon_sym_DOT, + ACTIONS(7646), 1, + aux_sym__immediate_decimal_token5, + STATE(3963), 1, + sym_comment, + ACTIONS(1788), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118733] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7648), 1, + anon_sym_DOT, + ACTIONS(7650), 1, + aux_sym__immediate_decimal_token5, STATE(3964), 1, sym_comment, - STATE(4922), 1, - sym_long_flag, - [118655] = 8, - ACTIONS(103), 1, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1790), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118755] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(5409), 1, sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7552), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(366), 1, sym_path, STATE(3965), 1, sym_comment, - STATE(4124), 1, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4374), 1, + STATE(4734), 1, sym_cell_path, - ACTIONS(1903), 2, + ACTIONS(5407), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [118681] = 5, + [118781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7646), 1, + ACTIONS(7638), 1, anon_sym_DOT_DOT2, STATE(3966), 1, sym_comment, - ACTIONS(7648), 2, + ACTIONS(7640), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2241), 4, + ACTIONS(7652), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118701] = 5, - ACTIONS(3), 1, + [118801] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7650), 1, - anon_sym_DOT_DOT2, + ACTIONS(7654), 1, + anon_sym_QMARK2, + ACTIONS(7656), 1, + anon_sym_BANG, STATE(3967), 1, sym_comment, - ACTIONS(7652), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2249), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118721] = 5, + STATE(4650), 1, + sym__path_suffix, + ACTIONS(1472), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [118823] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_DOT_DOT2, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(3210), 1, + sym_cell_path, STATE(3968), 1, sym_comment, - ACTIONS(7656), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2257), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118741] = 9, - ACTIONS(103), 1, + ACTIONS(1925), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [118847] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, ACTIONS(7658), 1, - anon_sym_alias, + anon_sym_DOT, ACTIONS(7660), 1, - anon_sym_const, - ACTIONS(7662), 1, - anon_sym_def, - ACTIONS(7664), 1, - anon_sym_use, - ACTIONS(7666), 1, - anon_sym_extern, - ACTIONS(7668), 1, - anon_sym_module, + aux_sym__immediate_decimal_token5, STATE(3969), 1, sym_comment, - [118769] = 8, - ACTIONS(103), 1, + ACTIONS(1788), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1790), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [118869] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1444), 1, + ACTIONS(1925), 1, sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7552), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(366), 1, sym_path, - STATE(383), 1, - sym_cell_path, STATE(3970), 1, sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1442), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118795] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT2, - STATE(3971), 1, - sym_comment, - STATE(4137), 1, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4521), 1, - sym_path, - STATE(4863), 1, + STATE(4372), 1, sym_cell_path, - ACTIONS(1887), 3, + ACTIONS(1927), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [118819] = 8, - ACTIONS(103), 1, + anon_sym_RBRACE, + [118895] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(1901), 1, sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7552), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(366), 1, sym_path, - STATE(3972), 1, + STATE(3971), 1, sym_comment, - STATE(4124), 1, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4579), 1, + STATE(4631), 1, sym_cell_path, - ACTIONS(1891), 2, + ACTIONS(1903), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [118845] = 9, + [118921] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(7522), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - ACTIONS(7670), 1, - anon_sym_RBRACK, - STATE(3973), 1, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1587), 1, + sym_parameter_parens, + STATE(1588), 1, + sym_parameter_bracks, + STATE(3897), 1, + aux_sym_decl_def_repeat1, + STATE(3972), 1, sym_comment, - STATE(4330), 1, - aux_sym__types_body_repeat1, - STATE(4882), 1, - sym_val_list, - STATE(4886), 1, - aux_sym__table_body_repeat1, - STATE(5352), 1, - sym__table_body, - [118873] = 6, - ACTIONS(103), 1, + STATE(4887), 1, + sym_long_flag, + [118949] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7672), 1, + ACTIONS(7662), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7674), 1, + ACTIONS(7664), 1, aux_sym__immediate_decimal_token5, + STATE(3973), 1, + sym_comment, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118971] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(3974), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, + ACTIONS(1669), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1732), 3, + ACTIONS(1671), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118895] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [118989] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, STATE(3975), 1, sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4472), 1, - sym_cell_path, - ACTIONS(1895), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118921] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3976), 1, - sym_comment, - ACTIONS(1897), 3, + ACTIONS(1933), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1899), 4, + ACTIONS(1935), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [118939] = 4, - ACTIONS(3), 1, + [119007] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3977), 1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7450), 1, + anon_sym_def, + ACTIONS(7452), 1, + anon_sym_use, + ACTIONS(7454), 1, + anon_sym_extern, + ACTIONS(7456), 1, + anon_sym_module, + ACTIONS(7666), 1, + anon_sym_alias, + ACTIONS(7668), 1, + anon_sym_const, + STATE(3976), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(777), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [118957] = 5, - ACTIONS(3), 1, + [119035] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7484), 1, + ACTIONS(7670), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7672), 1, aux_sym__immediate_decimal_token5, - STATE(3978), 1, + STATE(3977), 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, - [118977] = 5, - ACTIONS(3), 1, + ACTIONS(1774), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1776), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [119057] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7676), 1, - aux_sym__immediate_decimal_token5, - STATE(3979), 1, + ACTIONS(7430), 1, + anon_sym_DOT2, + ACTIONS(7564), 1, + anon_sym_DOT_DOT, + ACTIONS(7674), 1, + anon_sym_RBRACK, + ACTIONS(7678), 1, + sym__entry_separator, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3978), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(777), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [118997] = 9, - ACTIONS(103), 1, + STATE(4251), 1, + sym_path, + STATE(4747), 1, + sym_cell_path, + [119085] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7440), 1, + ACTIONS(7450), 1, anon_sym_def, - ACTIONS(7442), 1, + ACTIONS(7452), 1, anon_sym_use, - ACTIONS(7444), 1, + ACTIONS(7454), 1, anon_sym_extern, - ACTIONS(7446), 1, + ACTIONS(7456), 1, anon_sym_module, - ACTIONS(7678), 1, + ACTIONS(7682), 1, anon_sym_alias, - ACTIONS(7680), 1, + ACTIONS(7684), 1, anon_sym_const, - STATE(3980), 1, + STATE(3979), 1, sym_comment, - [119025] = 9, - ACTIONS(103), 1, + [119113] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7440), 1, + ACTIONS(7450), 1, anon_sym_def, - ACTIONS(7442), 1, + ACTIONS(7452), 1, anon_sym_use, - ACTIONS(7444), 1, + ACTIONS(7454), 1, anon_sym_extern, - ACTIONS(7446), 1, + ACTIONS(7456), 1, anon_sym_module, - ACTIONS(7682), 1, + ACTIONS(7686), 1, anon_sym_alias, - ACTIONS(7684), 1, + ACTIONS(7688), 1, anon_sym_const, + STATE(3980), 1, + sym_comment, + [119141] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACK, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(7690), 1, + anon_sym_DOT_DOT2, STATE(3981), 1, sym_comment, - [119053] = 8, - ACTIONS(103), 1, + ACTIONS(7692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119167] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(914), 1, sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, + ACTIONS(7694), 1, + anon_sym_DOT_DOT2, + ACTIONS(7698), 1, + sym_filesize_unit, + ACTIONS(7700), 1, + sym_duration_unit, STATE(3982), 1, sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4894), 1, - sym_cell_path, - ACTIONS(5405), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [119079] = 7, - ACTIONS(3), 1, + ACTIONS(7696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119193] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3530), 1, - sym__blosure, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7702), 1, + anon_sym_DOLLAR, + STATE(2820), 1, + sym__variable_name, + STATE(2868), 1, + sym_val_variable, STATE(3983), 1, sym_comment, - STATE(4183), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119102] = 7, + STATE(4438), 1, + sym__assignment_pattern, + [119221] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3587), 1, - sym__blosure, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1543), 1, + sym_parameter_parens, + STATE(1544), 1, + sym_parameter_bracks, STATE(3984), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119125] = 7, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [119249] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3587), 1, - sym__blosure, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_DASH, + STATE(1578), 1, + sym_parameter_parens, + STATE(1579), 1, + sym_parameter_bracks, STATE(3985), 1, sym_comment, - STATE(3996), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119148] = 7, + STATE(4245), 1, + aux_sym_decl_def_repeat1, + STATE(4887), 1, + sym_long_flag, + [119277] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(7704), 1, sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3588), 1, - sym__blosure, + ACTIONS(7706), 1, + anon_sym_SEMI, + ACTIONS(7708), 1, + anon_sym_RPAREN, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, STATE(3986), 1, sym_comment, - STATE(3998), 1, + STATE(4389), 1, + aux_sym__block_body_repeat1, + STATE(4679), 1, aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119171] = 7, - ACTIONS(103), 1, + [119302] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(2174), 1, + sym__space, + ACTIONS(7710), 1, + anon_sym_DOT_DOT2, + STATE(3987), 1, + sym_comment, + ACTIONS(2176), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7712), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119323] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7692), 1, + ACTIONS(7718), 1, anon_sym_DQUOTE2, - STATE(3987), 1, + STATE(3988), 1, sym_comment, - STATE(4182), 1, + STATE(4064), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119194] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3592), 1, - sym__blosure, - STATE(3988), 1, - sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119217] = 7, - ACTIONS(3), 1, + [119346] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3592), 1, - sym__blosure, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7702), 1, + anon_sym_DOLLAR, + STATE(2820), 1, + sym__variable_name, + STATE(2868), 1, + sym_val_variable, STATE(3989), 1, sym_comment, - STATE(4000), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119240] = 7, + STATE(4438), 1, + sym__assignment_pattern, + [119371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3593), 1, + STATE(3460), 1, sym__blosure, STATE(3990), 1, sym_comment, - STATE(3210), 2, + STATE(4191), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [119263] = 7, - ACTIONS(3), 1, + [119394] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3594), 1, - sym__blosure, + ACTIONS(2154), 1, + sym__entry_separator, + ACTIONS(7722), 1, + anon_sym_DOT_DOT2, STATE(3991), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119286] = 7, + ACTIONS(2156), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119415] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3594), 1, - sym__blosure, + ACTIONS(5112), 1, + anon_sym_DOT2, + STATE(2469), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, + sym_path, + STATE(3005), 1, + sym_cell_path, STATE(3992), 1, sym_comment, - STATE(4001), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119309] = 6, - ACTIONS(103), 1, + ACTIONS(5427), 2, + anon_sym_EQ, + anon_sym_GT2, + [119438] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7422), 1, + anon_sym_DOT2, + STATE(3993), 1, + sym_comment, + STATE(4182), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4617), 1, + sym_path, + ACTIONS(1577), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [119459] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1714), 1, + ACTIONS(2186), 1, sym__space, - ACTIONS(7694), 1, + ACTIONS(7726), 1, anon_sym_DOT_DOT2, - STATE(3993), 1, + STATE(3994), 1, sym_comment, - ACTIONS(1588), 2, + ACTIONS(2188), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7696), 2, + ACTIONS(7728), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119330] = 7, - ACTIONS(3), 1, + [119480] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3596), 1, - sym__blosure, - STATE(3994), 1, + ACTIONS(7730), 1, + anon_sym_DOT, + ACTIONS(7732), 1, + aux_sym__immediate_decimal_token5, + STATE(3995), 1, sym_comment, - STATE(4003), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119353] = 7, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1790), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [119501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3996), 1, + sym_comment, + ACTIONS(1788), 4, + anon_sym_if, sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3598), 1, - sym__blosure, - STATE(3995), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119520] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4205), 1, + aux_sym_unquoted_token2, + ACTIONS(6805), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7267), 1, + aux_sym__immediate_decimal_token2, + STATE(3997), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119376] = 7, - ACTIONS(3), 1, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7269), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119543] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3599), 1, - sym__blosure, - STATE(3996), 1, + ACTIONS(7736), 1, + aux_sym__immediate_decimal_token5, + STATE(3998), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119399] = 7, - ACTIONS(3), 1, + ACTIONS(1866), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119562] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2154), 1, + sym__space, + ACTIONS(7738), 1, + anon_sym_DOT_DOT2, + STATE(3999), 1, + sym_comment, + ACTIONS(2156), 2, sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3599), 1, - sym__blosure, - STATE(3997), 1, + anon_sym_SEMI, + ACTIONS(7740), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119583] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7636), 1, + sym__entry_separator, + ACTIONS(7744), 1, + anon_sym_DOT_DOT2, + STATE(4000), 1, + sym_comment, + ACTIONS(7742), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7746), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119604] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7652), 1, + sym__entry_separator, + ACTIONS(7744), 1, + anon_sym_DOT_DOT2, + STATE(4001), 1, + sym_comment, + ACTIONS(7746), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7748), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119625] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4205), 1, + aux_sym_unquoted_token2, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, + STATE(4002), 1, sym_comment, - STATE(4005), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119422] = 7, - ACTIONS(3), 1, + STATE(5504), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119648] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3600), 1, - sym__blosure, - STATE(3998), 1, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(7752), 1, + sym__entry_separator, + STATE(2286), 1, + aux_sym__types_body_repeat2, + STATE(4003), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119445] = 7, - ACTIONS(3), 1, + STATE(4998), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7750), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119671] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3600), 1, - sym__blosure, - STATE(3999), 1, + STATE(4004), 1, sym_comment, - STATE(4006), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119468] = 7, - ACTIONS(3), 1, + ACTIONS(1531), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119686] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3601), 1, - sym__blosure, - STATE(4000), 1, + STATE(4005), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119491] = 7, + ACTIONS(1535), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119701] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3602), 1, + STATE(3201), 1, sym__blosure, - STATE(4001), 1, + STATE(4006), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119514] = 7, + [119724] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3602), 1, - sym__blosure, - STATE(4002), 1, + STATE(4007), 1, sym_comment, - STATE(4008), 1, - aux_sym__repeat_newline, - STATE(3210), 2, + STATE(4672), 1, sym_block, - sym_val_closure, - [119537] = 7, + ACTIONS(7755), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119743] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3603), 1, + STATE(3524), 1, sym__blosure, - STATE(4003), 1, + STATE(4008), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119560] = 7, + [119766] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3603), 1, - sym__blosure, - STATE(4004), 1, - sym_comment, + ACTIONS(1659), 1, + sym__unquoted_pattern, STATE(4009), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [119583] = 7, + sym_comment, + STATE(5271), 1, + sym__immediate_decimal, + ACTIONS(6964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119787] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3604), 1, + STATE(3580), 1, sym__blosure, - STATE(4005), 1, + STATE(4010), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119606] = 7, + [119810] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3605), 1, + STATE(3550), 1, sym__blosure, - STATE(4006), 1, + STATE(4011), 1, sym_comment, - STATE(3210), 2, + STATE(4014), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [119629] = 7, + [119833] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3605), 1, + STATE(3524), 1, sym__blosure, - STATE(4007), 1, + STATE(4012), 1, sym_comment, - STATE(4011), 1, + STATE(4159), 1, aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119652] = 7, + [119856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3416), 1, + STATE(3098), 1, sym__blosure, - STATE(4008), 1, + STATE(4013), 1, sym_comment, - STATE(3210), 2, + STATE(4053), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [119675] = 7, + [119879] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3538), 1, + STATE(3581), 1, sym__blosure, - STATE(4009), 1, + STATE(4014), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119698] = 7, + [119902] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3538), 1, + STATE(3581), 1, sym__blosure, - STATE(4010), 1, + STATE(4015), 1, sym_comment, - STATE(4012), 1, + STATE(4114), 1, aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119721] = 7, + [119925] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3521), 1, + STATE(3582), 1, sym__blosure, - STATE(4011), 1, + STATE(4016), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119744] = 7, + [119948] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(7752), 1, + sym__entry_separator, + STATE(2277), 1, + aux_sym__types_body_repeat2, + STATE(4017), 1, + sym_comment, + STATE(4998), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7757), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119971] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3420), 1, + STATE(3582), 1, sym__blosure, - STATE(4012), 1, + STATE(4018), 1, sym_comment, - STATE(3210), 2, + STATE(4119), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [119767] = 7, + [119994] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3221), 1, + STATE(3596), 1, sym__blosure, - STATE(4013), 1, + STATE(4019), 1, sym_comment, - STATE(4078), 1, + STATE(4169), 1, aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119790] = 7, + [120017] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3519), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3526), 1, sym__blosure, - STATE(4014), 1, + STATE(4020), 1, sym_comment, - STATE(4079), 1, - aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [119813] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_RBRACK, - ACTIONS(7700), 1, - anon_sym_DOT_DOT, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - ACTIONS(7706), 1, - sym__entry_separator, - STATE(4015), 1, - sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119836] = 5, - ACTIONS(3), 1, + [120040] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7273), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7708), 1, - anon_sym_DOT, - STATE(4016), 1, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7759), 1, + aux_sym_unquoted_token2, + STATE(4021), 1, sym_comment, - ACTIONS(1784), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119855] = 5, - ACTIONS(3), 1, + STATE(5504), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120063] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7712), 1, - anon_sym_AT, - STATE(4998), 1, - sym_attribute, - STATE(4017), 2, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7761), 1, + anon_sym_DQUOTE2, + STATE(4022), 1, sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7710), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [119874] = 8, - ACTIONS(103), 1, + STATE(4038), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120086] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7518), 1, + ACTIONS(3713), 1, + sym__entry_separator, + ACTIONS(7552), 1, anon_sym_DOT2, - ACTIONS(7715), 1, + ACTIONS(7763), 1, anon_sym_RBRACE, - ACTIONS(7717), 1, - sym__entry_separator, - STATE(367), 1, + STATE(366), 1, sym_path, - STATE(4018), 1, + STATE(4023), 1, sym_comment, - STATE(4124), 1, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4963), 1, + STATE(4667), 1, sym_cell_path, - [119899] = 6, - ACTIONS(103), 1, + [120111] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__space, - ACTIONS(7719), 1, - anon_sym_DOT_DOT2, - STATE(4019), 1, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7767), 1, + anon_sym_DQUOTE2, + STATE(4024), 1, sym_comment, - ACTIONS(2110), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7721), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119920] = 6, + STATE(4155), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120134] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7723), 1, - sym_long_flag_identifier, - ACTIONS(7725), 1, - anon_sym_EQ2, - STATE(4020), 1, - sym_comment, - STATE(4738), 1, - sym__flag_equals_value, - ACTIONS(4290), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [119941] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - ACTIONS(7727), 1, - anon_sym_RBRACK, - ACTIONS(7730), 1, - anon_sym_DOT_DOT, - ACTIONS(7732), 1, - sym__entry_separator, - STATE(4021), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3526), 1, + sym__blosure, + STATE(4025), 1, sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119964] = 7, - ACTIONS(103), 1, + STATE(4181), 1, + aux_sym__repeat_newline, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120157] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(7737), 1, - sym__entry_separator, - STATE(2275), 1, - aux_sym__types_body_repeat2, - STATE(4022), 1, + STATE(4026), 1, sym_comment, - STATE(5028), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7735), 2, + ACTIONS(1486), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119987] = 5, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120172] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(4023), 1, + STATE(3422), 1, + sym__blosure, + STATE(4027), 1, sym_comment, - STATE(4537), 1, + STATE(4055), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, - ACTIONS(7740), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120006] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern, - ACTIONS(7612), 1, - aux_sym__immediate_decimal_token5, - STATE(4024), 1, - sym_comment, - ACTIONS(1784), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120025] = 6, - ACTIONS(103), 1, + sym_val_closure, + [120195] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1714), 1, + ACTIONS(2166), 1, sym__entry_separator, - ACTIONS(7742), 1, + ACTIONS(7769), 1, anon_sym_DOT_DOT2, - STATE(4025), 1, + STATE(4028), 1, sym_comment, - ACTIONS(1588), 2, + ACTIONS(2168), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120046] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7746), 1, - sym_identifier, - ACTIONS(7748), 1, - anon_sym_DOLLAR, - STATE(2894), 1, - sym__variable_name, - STATE(3247), 1, - sym_val_variable, - STATE(4026), 1, - sym_comment, - STATE(4848), 1, - sym__assignment_pattern, - [120071] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7632), 1, - aux_sym__immediate_decimal_token5, - STATE(4027), 1, - sym_comment, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1784), 3, - anon_sym_LBRACE, + ACTIONS(7771), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120090] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - ACTIONS(7750), 1, - aux_sym__immediate_decimal_token5, - STATE(4028), 1, - sym_comment, - ACTIONS(1832), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120109] = 3, - ACTIONS(103), 1, + [120216] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4029), 1, - sym_comment, - ACTIONS(1522), 6, + ACTIONS(5411), 1, anon_sym_RBRACK, + ACTIONS(5413), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(7552), 1, anon_sym_DOT2, - [120124] = 8, - ACTIONS(103), 1, + STATE(366), 1, + sym_path, + STATE(4029), 1, + sym_comment, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4966), 1, + sym_cell_path, + [120241] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7773), 1, + anon_sym_DQUOTE2, STATE(4030), 1, sym_comment, - STATE(4289), 1, - sym__variable_name, - STATE(4854), 1, - sym__assignment_pattern, - [120149] = 6, - ACTIONS(3), 1, + STATE(4064), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120264] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(4017), 1, - aux_sym_attribute_list_repeat1, STATE(4031), 1, sym_comment, - STATE(4998), 1, - sym_attribute, - ACTIONS(7752), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [120170] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4032), 1, - sym_comment, - ACTIONS(1530), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120185] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4033), 1, - sym_comment, - ACTIONS(1480), 6, + ACTIONS(1541), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120200] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4034), 1, - sym_comment, - STATE(4481), 1, - sym_block, - ACTIONS(7754), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120219] = 6, + [120279] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(7756), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token5, - STATE(4035), 1, + ACTIONS(7775), 1, + anon_sym_DOT2, + STATE(2485), 1, + sym_path, + STATE(4032), 2, sym_comment, - ACTIONS(1730), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 3, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120240] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - STATE(4036), 1, - sym_comment, - STATE(5400), 1, - sym__immediate_decimal, - ACTIONS(7760), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120261] = 5, + anon_sym_COLON, + [120298] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4037), 1, - sym_comment, - STATE(4499), 1, - sym_block, - ACTIONS(7764), 4, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120280] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(4038), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3572), 1, + sym__blosure, + STATE(4033), 1, sym_comment, - STATE(4500), 1, + STATE(3078), 2, sym_block, - ACTIONS(7764), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120299] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(4039), 1, - sym_comment, - STATE(5112), 1, - sym__immediate_decimal, - ACTIONS(6917), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6919), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120320] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7766), 1, - sym__newline, - ACTIONS(7768), 1, - anon_sym_SEMI, - ACTIONS(7770), 1, - anon_sym_RPAREN, - STATE(1378), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4040), 1, - sym_comment, - STATE(4563), 1, - aux_sym__block_body_repeat1, - STATE(4838), 1, - aux_sym__repeat_newline, - [120345] = 8, - ACTIONS(103), 1, + sym_val_closure, + [120321] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7567), 1, + ACTIONS(7520), 1, anon_sym_DOLLAR, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, - STATE(4041), 1, + STATE(4034), 1, sym_comment, - STATE(4289), 1, + STATE(4231), 1, sym__variable_name, - STATE(4862), 1, + STATE(4767), 1, sym__assignment_pattern, - [120370] = 8, + [120346] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7766), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7768), 1, - anon_sym_SEMI, - ACTIONS(7772), 1, - anon_sym_RPAREN, - STATE(1378), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4042), 1, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3572), 1, + sym__blosure, + STATE(4035), 1, sym_comment, - STATE(4409), 1, - aux_sym__block_body_repeat1, - STATE(4838), 1, + STATE(4067), 1, aux_sym__repeat_newline, - [120395] = 3, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120369] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4043), 1, + ACTIONS(7552), 1, + anon_sym_DOT2, + ACTIONS(7778), 1, + anon_sym_RBRACE, + ACTIONS(7780), 1, + sym__entry_separator, + STATE(366), 1, + sym_path, + STATE(4036), 1, sym_comment, - ACTIONS(1516), 6, - anon_sym_RBRACK, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5065), 1, + sym_cell_path, + [120394] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5427), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(5760), 1, + anon_sym_GT2, + ACTIONS(7430), 1, anon_sym_DOT2, - [120410] = 3, - ACTIONS(103), 1, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4037), 1, + sym_comment, + STATE(4251), 1, + sym_path, + STATE(4667), 1, + sym_cell_path, + [120419] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4044), 1, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7782), 1, + anon_sym_DQUOTE2, + STATE(4038), 1, + sym_comment, + STATE(4064), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120442] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7784), 1, + anon_sym_DQUOTE2, + STATE(4039), 1, + sym_comment, + STATE(4124), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120465] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4040), 1, sym_comment, - ACTIONS(1468), 6, + ACTIONS(1545), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120425] = 3, - ACTIONS(103), 1, + [120480] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4045), 1, + ACTIONS(7786), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7788), 1, + aux_sym__immediate_decimal_token5, + STATE(4041), 1, sym_comment, - ACTIONS(1472), 6, - anon_sym_RBRACK, + ACTIONS(1774), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120501] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2174), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120440] = 8, - ACTIONS(103), 1, + ACTIONS(7790), 1, + anon_sym_DOT_DOT2, + STATE(4042), 1, + sym_comment, + ACTIONS(2176), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7792), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120522] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3573), 1, + sym__blosure, + STATE(4043), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120545] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3574), 1, + sym__blosure, + STATE(4044), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120568] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1738), 1, + sym__space, + ACTIONS(7794), 1, + anon_sym_DOT_DOT2, + STATE(4045), 1, + sym_comment, + ACTIONS(1616), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120589] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2786), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, + ACTIONS(2834), 1, anon_sym_COLON2, - ACTIONS(5332), 1, + ACTIONS(5298), 1, anon_sym_DOLLAR, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, STATE(4046), 1, sym_comment, - STATE(5472), 1, + STATE(5476), 1, sym__variable_name, - [120465] = 7, - ACTIONS(103), 1, + [120614] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5486), 1, - sym__space, - ACTIONS(7774), 1, - anon_sym_EQ2, - ACTIONS(7776), 1, - sym_short_flag_identifier, - STATE(3219), 1, - sym__flag_equals_value, + ACTIONS(7303), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7798), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7800), 1, + aux_sym__immediate_decimal_token2, STATE(4047), 1, sym_comment, - ACTIONS(5484), 2, - sym__newline, - anon_sym_SEMI, - [120488] = 6, - ACTIONS(103), 1, + STATE(5517), 1, + sym__immediate_decimal, + ACTIONS(7802), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120637] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5492), 1, - sym__space, - ACTIONS(7694), 1, - anon_sym_DOT_DOT2, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, STATE(4048), 1, sym_comment, - ACTIONS(5490), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120509] = 5, - ACTIONS(103), 1, + STATE(4231), 1, + sym__variable_name, + STATE(4773), 1, + sym__assignment_pattern, + [120662] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7638), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2186), 1, + sym__entry_separator, + ACTIONS(7804), 1, + anon_sym_DOT_DOT2, STATE(4049), 1, sym_comment, - ACTIONS(1784), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1786), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [120528] = 6, + ACTIONS(2188), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7806), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120683] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3551), 1, + sym__blosure, + STATE(4016), 1, + aux_sym__repeat_newline, STATE(4050), 1, sym_comment, - STATE(5144), 1, - sym__immediate_decimal, - ACTIONS(6917), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6919), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120549] = 8, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120706] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - ACTIONS(1895), 1, - anon_sym_GT2, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3574), 1, + sym__blosure, STATE(4051), 1, sym_comment, - STATE(4235), 1, - sym_path, - STATE(4472), 1, - sym_cell_path, - [120574] = 8, - ACTIONS(103), 1, + STATE(4070), 1, + aux_sym__repeat_newline, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120729] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(1868), 1, - anon_sym_GT2, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7808), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7810), 1, + aux_sym__immediate_decimal_token5, STATE(4052), 1, sym_comment, - STATE(4235), 1, - sym_path, - STATE(4548), 1, - sym_cell_path, - [120599] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1774), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1887), 1, - anon_sym_GT2, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1776), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [120750] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3054), 1, + sym__blosure, STATE(4053), 1, sym_comment, - STATE(4235), 1, - sym_path, - STATE(4461), 1, - sym_cell_path, - [120624] = 7, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120773] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7778), 1, - anon_sym_DQUOTE2, + ACTIONS(7303), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7812), 1, + anon_sym_DOT_DOT2, STATE(4054), 1, sym_comment, - STATE(4057), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [120647] = 7, - ACTIONS(103), 1, + ACTIONS(7814), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7816), 2, + sym_filesize_unit, + sym_duration_unit, + [120794] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - aux_sym_unquoted_token2, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3420), 1, + sym__blosure, STATE(4055), 1, sym_comment, - STATE(4453), 1, - sym__immediate_decimal, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120670] = 7, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120817] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4161), 1, - aux_sym_unquoted_token2, - ACTIONS(6917), 1, + ACTIONS(6805), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, + ACTIONS(7267), 1, aux_sym__immediate_decimal_token2, + ACTIONS(7818), 1, + aux_sym_unquoted_token2, STATE(4056), 1, sym_comment, - STATE(5371), 1, + STATE(4494), 1, sym__immediate_decimal, - ACTIONS(7015), 2, + ACTIONS(7269), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [120693] = 7, - ACTIONS(103), 1, + [120840] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7780), 1, - anon_sym_DQUOTE2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym__blosure, STATE(4057), 1, sym_comment, - STATE(4182), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [120716] = 5, - ACTIONS(103), 1, + STATE(4168), 1, + aux_sym__repeat_newline, + STATE(3078), 2, + sym_block, + sym_val_closure, + [120863] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7782), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7818), 1, + aux_sym_unquoted_token2, STATE(4058), 1, sym_comment, - ACTIONS(1832), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1834), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [120735] = 5, + STATE(5504), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120886] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, + ACTIONS(4197), 1, + anon_sym_DOT_DOT2, + ACTIONS(7818), 1, + sym__unquoted_pattern, STATE(4059), 1, sym_comment, - STATE(4578), 1, - sym_block, - ACTIONS(7784), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120754] = 5, + ACTIONS(4199), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7820), 2, + sym_filesize_unit, + sym_duration_unit, + [120907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, STATE(4060), 1, sym_comment, - STATE(4580), 1, + STATE(4423), 1, sym_block, - ACTIONS(7784), 4, + ACTIONS(7822), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120773] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7518), 1, - anon_sym_DOT2, - ACTIONS(7786), 1, - anon_sym_RBRACE, - ACTIONS(7788), 1, - sym__entry_separator, - STATE(367), 1, - sym_path, - STATE(4061), 1, - sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5016), 1, - sym_cell_path, - [120798] = 8, - ACTIONS(103), 1, + [120926] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7561), 1, + ACTIONS(7520), 1, anon_sym_DOLLAR, - STATE(2791), 1, - sym__variable_name, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, - STATE(4062), 1, + STATE(4061), 1, sym_comment, - STATE(4900), 1, - sym__assignment_pattern_parenthesized, - [120823] = 7, + STATE(4347), 1, + sym__variable_name, + STATE(4454), 1, + sym__assignment_pattern, + [120951] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3522), 1, + STATE(3054), 1, sym__blosure, - STATE(4063), 1, + STATE(4062), 1, sym_comment, - STATE(4151), 1, + STATE(4199), 1, aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [120846] = 5, - ACTIONS(3), 1, + [120974] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7790), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(4064), 2, + ACTIONS(5501), 1, + sym__space, + ACTIONS(7794), 1, + anon_sym_DOT_DOT2, + STATE(4063), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1538), 3, - anon_sym_EQ, + ACTIONS(5499), 2, sym__newline, - anon_sym_COLON, - [120865] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + ACTIONS(7796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120995] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym__entry_separator, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, + ACTIONS(7824), 1, + anon_sym_LPAREN, + ACTIONS(7830), 1, + anon_sym_DQUOTE2, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7827), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(4064), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [121016] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7572), 1, + aux_sym__immediate_decimal_token5, STATE(4065), 1, sym_comment, - ACTIONS(7700), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7704), 2, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1788), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120886] = 6, - ACTIONS(103), 1, + [121035] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7512), 1, - sym__entry_separator, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, ACTIONS(7702), 1, - anon_sym_DOT_DOT2, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(2880), 1, + sym__variable_name, STATE(4066), 1, sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7730), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120907] = 7, + STATE(4881), 1, + sym__assignment_pattern_parenthesized, + [121060] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3525), 1, + STATE(3584), 1, sym__blosure, STATE(4067), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [120930] = 7, - ACTIONS(3), 1, + [121083] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3525), 1, - sym__blosure, + ACTIONS(7832), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7834), 1, + aux_sym__immediate_decimal_token5, STATE(4068), 1, sym_comment, - STATE(4161), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [120953] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(1774), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(5738), 1, - anon_sym_GT2, - ACTIONS(7458), 1, - anon_sym_DOT2, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4069), 1, - sym_comment, - STATE(4235), 1, - sym_path, - STATE(4614), 1, - sym_cell_path, - [120978] = 5, + ACTIONS(1776), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [121104] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7793), 1, + ACTIONS(7836), 1, + anon_sym_DOT, + ACTIONS(7838), 1, aux_sym__immediate_decimal_token5, - STATE(4070), 1, + STATE(4069), 1, sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 3, - anon_sym_LBRACE, + ACTIONS(1788), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120997] = 7, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [121125] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3150), 1, + STATE(3585), 1, sym__blosure, - STATE(4071), 1, + STATE(4070), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121020] = 5, - ACTIONS(103), 1, + [121148] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1464), 1, - sym__entry_separator, - ACTIONS(7795), 1, - anon_sym_QMARK2, - STATE(4072), 1, - sym_comment, - ACTIONS(1462), 4, + ACTIONS(5423), 1, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, + ACTIONS(5425), 1, + sym__entry_separator, + ACTIONS(7552), 1, anon_sym_DOT2, - [121039] = 7, + STATE(366), 1, + sym_path, + STATE(4071), 1, + sym_comment, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4984), 1, + sym_cell_path, + [121173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, + ACTIONS(7840), 1, + aux_sym__immediate_decimal_token5, + STATE(4072), 1, + sym_comment, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 3, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3530), 1, - sym__blosure, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121192] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, STATE(4073), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [121062] = 8, - ACTIONS(103), 1, + STATE(4260), 1, + sym__variable_name, + STATE(4886), 1, + sym__assignment_pattern_parenthesized, + [121217] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7567), 1, + ACTIONS(7520), 1, anon_sym_DOLLAR, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, STATE(4074), 1, sym_comment, - STATE(4343), 1, + STATE(4347), 1, sym__variable_name, - STATE(4904), 1, - sym__assignment_pattern_parenthesized, - [121087] = 7, - ACTIONS(103), 1, + STATE(4455), 1, + sym__assignment_pattern, + [121242] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(7737), 1, - sym__entry_separator, - STATE(2280), 1, - aux_sym__types_body_repeat2, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7842), 1, + anon_sym_DQUOTE2, STATE(4075), 1, sym_comment, - STATE(5028), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7797), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121110] = 7, - ACTIONS(3), 1, + STATE(4087), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121265] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3187), 1, - sym__blosure, + ACTIONS(7844), 1, + aux_sym__immediate_decimal_token5, STATE(4076), 1, sym_comment, - STATE(4140), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [121133] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(1866), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1868), 3, sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3445), 1, - sym__blosure, + anon_sym_SEMI, + sym__unquoted_pattern, + [121284] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, STATE(4077), 1, sym_comment, - STATE(4141), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [121156] = 7, + STATE(4260), 1, + sym__variable_name, + STATE(4893), 1, + sym__assignment_pattern_parenthesized, + [121309] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3189), 1, - sym__blosure, STATE(4078), 1, sym_comment, - STATE(3210), 2, + STATE(4563), 1, sym_block, - sym_val_closure, - [121179] = 7, + ACTIONS(7846), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121328] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3448), 1, + STATE(3485), 1, sym__blosure, STATE(4079), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121202] = 6, + [121351] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3550), 1, + sym__blosure, STATE(4080), 1, sym_comment, - STATE(5373), 1, - sym__immediate_decimal, - ACTIONS(7760), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121223] = 7, + STATE(3078), 2, + sym_block, + sym_val_closure, + [121374] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3533), 1, + STATE(3527), 1, sym__blosure, STATE(4081), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121246] = 7, + [121397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3533), 1, - sym__blosure, STATE(4082), 1, sym_comment, - STATE(4196), 1, - aux_sym__repeat_newline, - STATE(3210), 2, + STATE(4564), 1, sym_block, - sym_val_closure, - [121269] = 7, + ACTIONS(7846), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121416] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3534), 1, + STATE(3585), 1, sym__blosure, STATE(4083), 1, sym_comment, - STATE(3210), 2, + STATE(4123), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [121292] = 7, + [121439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3189), 1, - sym__blosure, STATE(4084), 1, sym_comment, - STATE(4149), 1, - aux_sym__repeat_newline, - STATE(3210), 2, - sym_block, - sym_val_closure, - [121315] = 7, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [121456] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3448), 1, + STATE(3577), 1, sym__blosure, STATE(4085), 1, sym_comment, - STATE(4150), 1, + STATE(4088), 1, aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121338] = 5, - ACTIONS(3), 1, + [121479] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, + ACTIONS(4355), 1, + sym__space, + ACTIONS(7848), 1, + sym_long_flag_identifier, + ACTIONS(7850), 1, + anon_sym_EQ2, + STATE(3247), 1, + sym__flag_equals_value, STATE(4086), 1, sym_comment, - STATE(4365), 1, - sym_block, - ACTIONS(7799), 4, + ACTIONS(4353), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121357] = 5, + [121502] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_DQUOTE2, + STATE(4064), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4087), 1, + sym_comment, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121525] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(4087), 1, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3587), 1, + sym__blosure, + STATE(4088), 1, sym_comment, - STATE(4366), 1, + STATE(3078), 2, sym_block, - ACTIONS(7799), 4, + sym_val_closure, + [121548] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121376] = 8, - ACTIONS(103), 1, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3608), 1, + sym__blosure, + STATE(4089), 1, + sym_comment, + STATE(4187), 1, + aux_sym__repeat_newline, + STATE(3078), 2, + sym_block, + sym_val_closure, + [121571] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4088), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3420), 1, + sym__blosure, + STATE(4079), 1, + aux_sym__repeat_newline, + STATE(4090), 1, sym_comment, - STATE(4343), 1, - sym__variable_name, - STATE(4778), 1, - sym__assignment_pattern_parenthesized, - [121401] = 8, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [121594] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3683), 1, + ACTIONS(2154), 1, sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - ACTIONS(7801), 1, - anon_sym_RBRACE, - STATE(367), 1, - sym_path, - STATE(4089), 1, + ACTIONS(7854), 1, + anon_sym_DOT_DOT2, + STATE(4091), 1, sym_comment, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4614), 1, - sym_cell_path, - [121426] = 7, + ACTIONS(2156), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7856), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121615] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3534), 1, + STATE(3527), 1, sym__blosure, - STATE(4090), 1, + STATE(4092), 1, sym_comment, - STATE(4103), 1, + STATE(4190), 1, aux_sym__repeat_newline, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121449] = 7, + [121638] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3539), 1, + STATE(3528), 1, sym__blosure, - STATE(3984), 1, + STATE(4080), 1, aux_sym__repeat_newline, - STATE(4091), 1, + STATE(4093), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121472] = 6, - ACTIONS(3), 1, + [121661] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4153), 1, + ACTIONS(2166), 1, + sym__entry_separator, + ACTIONS(7858), 1, anon_sym_DOT_DOT2, - ACTIONS(7807), 1, - sym__unquoted_pattern, - STATE(4092), 1, + STATE(4094), 1, sym_comment, - ACTIONS(4155), 2, + ACTIONS(2168), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7860), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7805), 2, - sym_filesize_unit, - sym_duration_unit, - [121493] = 7, - ACTIONS(103), 1, + [121682] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7809), 1, - anon_sym_DQUOTE2, - STATE(4093), 1, + ACTIONS(2174), 1, + sym__entry_separator, + ACTIONS(7862), 1, + anon_sym_DOT_DOT2, + STATE(4095), 1, sym_comment, - STATE(4099), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121516] = 6, - ACTIONS(103), 1, + ACTIONS(2176), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7864), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121703] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7811), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7813), 1, - aux_sym__immediate_decimal_token5, - STATE(4094), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, + ACTIONS(2186), 1, sym__entry_separator, - ACTIONS(1732), 2, + ACTIONS(7866), 1, + anon_sym_DOT_DOT2, + STATE(4096), 1, + sym_comment, + ACTIONS(2188), 2, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121537] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + ACTIONS(7868), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121724] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7351), 1, - aux_sym_unquoted_token2, - STATE(4095), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_record, + STATE(4097), 1, sym_comment, - STATE(4453), 1, + STATE(5110), 1, sym__immediate_decimal, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121560] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6917), 1, + ACTIONS(7798), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7351), 1, - aux_sym_unquoted_token2, - STATE(4096), 1, - sym_comment, - STATE(5371), 1, - sym__immediate_decimal, - ACTIONS(7015), 2, + ACTIONS(7870), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121583] = 7, + [121745] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3563), 1, + STATE(3539), 1, sym__blosure, - STATE(4097), 1, + STATE(4098), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121606] = 7, + [121768] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2511), 1, - sym_path, - STATE(2998), 1, - sym_cell_path, - STATE(4098), 1, + ACTIONS(7872), 1, + anon_sym_if, + ACTIONS(7874), 1, + sym__newline, + ACTIONS(7876), 1, + anon_sym_PIPE, + ACTIONS(7878), 1, + anon_sym_EQ_GT, + STATE(4099), 1, sym_comment, - ACTIONS(5379), 2, - anon_sym_EQ, - anon_sym_GT2, - [121629] = 7, - ACTIONS(103), 1, + STATE(4496), 1, + aux_sym_match_pattern_repeat1, + STATE(5192), 1, + sym_match_guard, + [121793] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7815), 1, - anon_sym_DQUOTE2, - STATE(4099), 1, + STATE(4100), 1, sym_comment, - STATE(4182), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121652] = 7, - ACTIONS(103), 1, + ACTIONS(791), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(793), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [121810] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7882), 1, + aux_sym__immediate_decimal_token5, + STATE(4101), 1, + sym_comment, + ACTIONS(1774), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121831] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7884), 1, + anon_sym_DOT, + ACTIONS(7886), 1, + aux_sym__immediate_decimal_token5, + STATE(4102), 1, + sym_comment, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1790), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121852] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3521), 1, + sym__blosure, + STATE(4098), 1, + aux_sym__repeat_newline, + STATE(4103), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [121875] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7817), 1, + ACTIONS(7888), 1, anon_sym_DQUOTE2, - STATE(4100), 1, - sym_comment, STATE(4104), 1, + sym_comment, + STATE(4133), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121675] = 7, - ACTIONS(103), 1, + [121898] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5132), 1, - aux_sym_unquoted_token2, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(4101), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + STATE(4105), 1, sym_comment, - STATE(4453), 1, + STATE(5391), 1, sym__immediate_decimal, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121698] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5132), 1, - aux_sym_unquoted_token2, - ACTIONS(6917), 1, + ACTIONS(7798), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(4102), 1, - sym_comment, - STATE(5371), 1, - sym__immediate_decimal, - ACTIONS(7015), 2, + ACTIONS(7870), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121721] = 7, + [121919] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2166), 1, + sym__space, + ACTIONS(7890), 1, + anon_sym_DOT_DOT2, + STATE(4106), 1, + sym_comment, + ACTIONS(2168), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7892), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121940] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7702), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(2905), 1, + sym__variable_name, + STATE(4107), 1, + sym_comment, + STATE(4438), 1, + sym__assignment_pattern, + [121965] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4108), 1, + sym_comment, + STATE(4250), 1, + sym__variable_name, + STATE(4454), 1, + sym__assignment_pattern, + [121990] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4109), 1, + sym_comment, + STATE(4250), 1, + sym__variable_name, + STATE(4455), 1, + sym__assignment_pattern, + [122015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + STATE(4110), 1, + sym_comment, + ACTIONS(803), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(805), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [122032] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3586), 1, + STATE(3530), 1, sym__blosure, - STATE(4103), 1, + STATE(4111), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121744] = 7, - ACTIONS(103), 1, + [122055] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7819), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE2, - STATE(4104), 1, - sym_comment, - STATE(4182), 1, + STATE(4064), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4112), 1, + sym_comment, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121767] = 5, - ACTIONS(103), 1, + [122078] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1464), 1, + ACTIONS(1462), 1, sym__entry_separator, - ACTIONS(7795), 1, - anon_sym_BANG, - STATE(4105), 1, + ACTIONS(7896), 1, + anon_sym_QMARK2, + STATE(4113), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1460), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [121786] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7821), 1, - anon_sym_DQUOTE2, - STATE(4106), 1, - sym_comment, - STATE(4110), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121809] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5046), 1, - aux_sym_unquoted_token2, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(4107), 1, - sym_comment, - STATE(4453), 1, - sym__immediate_decimal, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121832] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5046), 1, - aux_sym_unquoted_token2, - ACTIONS(6917), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, - aux_sym__immediate_decimal_token2, - STATE(4108), 1, - sym_comment, - STATE(5371), 1, - sym__immediate_decimal, - ACTIONS(7015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121855] = 7, + [122097] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3474), 1, - sym__blosure, - STATE(4067), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(4109), 1, + STATE(3592), 1, + sym__blosure, + STATE(4114), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121878] = 7, - ACTIONS(103), 1, + [122120] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7823), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE2, - STATE(4110), 1, - sym_comment, - STATE(4182), 1, + STATE(3988), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4115), 1, + sym_comment, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121901] = 7, + [122143] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3134), 1, + STATE(3539), 1, sym__blosure, - STATE(4111), 1, + STATE(4033), 1, + aux_sym__repeat_newline, + STATE(4116), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121924] = 7, + [122166] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3485), 1, + STATE(3245), 1, sym__blosure, - STATE(4112), 1, + STATE(4117), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121947] = 7, + [122189] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1909), 1, + sym__entry_separator, + ACTIONS(1911), 1, + anon_sym_GT2, + ACTIONS(7430), 1, + anon_sym_DOT2, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4118), 1, + sym_comment, + STATE(4251), 1, + sym_path, + STATE(4580), 1, + sym_cell_path, + [122214] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3134), 1, - sym__blosure, - STATE(4071), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(4113), 1, + STATE(3593), 1, + sym__blosure, + STATE(4119), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [121970] = 7, + [122237] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3485), 1, + STATE(3593), 1, sym__blosure, - STATE(4073), 1, - aux_sym__repeat_newline, - STATE(4114), 1, + STATE(4120), 1, sym_comment, - STATE(3210), 2, + STATE(4156), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [121993] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7825), 1, - anon_sym_DQUOTE2, - STATE(4115), 1, - sym_comment, - STATE(4119), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122016] = 6, - ACTIONS(103), 1, + [122260] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - sym__space, - ACTIONS(7827), 1, - anon_sym_DOT_DOT2, - STATE(4116), 1, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4121), 1, sym_comment, - ACTIONS(2243), 2, + STATE(4470), 1, + sym_block, + ACTIONS(7900), 4, sym__newline, anon_sym_SEMI, - ACTIONS(7829), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122037] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122279] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - sym__space, - ACTIONS(7831), 1, + ACTIONS(4197), 1, anon_sym_DOT_DOT2, - STATE(4117), 1, + ACTIONS(7759), 1, + sym__unquoted_pattern, + STATE(4122), 1, sym_comment, - ACTIONS(2251), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7833), 2, + ACTIONS(4199), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122058] = 7, + ACTIONS(7820), 2, + sym_filesize_unit, + sym_duration_unit, + [122300] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3490), 1, - sym__blosure, - STATE(4081), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(4118), 1, + STATE(3594), 1, + sym__blosure, + STATE(4123), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122081] = 7, - ACTIONS(103), 1, + [122323] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7835), 1, + ACTIONS(7902), 1, anon_sym_DQUOTE2, - STATE(4119), 1, + STATE(4064), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4124), 1, sym_comment, - STATE(4182), 1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122346] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1917), 1, + sym__entry_separator, + ACTIONS(1919), 1, + anon_sym_GT2, + ACTIONS(7430), 1, + anon_sym_DOT2, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4125), 1, + sym_comment, + STATE(4251), 1, + sym_path, + STATE(4528), 1, + sym_cell_path, + [122371] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7904), 1, + anon_sym_DQUOTE2, + STATE(4126), 1, + sym_comment, + STATE(4142), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122104] = 8, + [122394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7837), 1, - anon_sym_if, - ACTIONS(7839), 1, - sym__newline, - ACTIONS(7841), 1, - anon_sym_PIPE, - ACTIONS(7843), 1, - anon_sym_EQ_GT, - STATE(4120), 1, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4127), 1, sym_comment, - STATE(4486), 1, - aux_sym_match_pattern_repeat1, - STATE(5328), 1, - sym_match_guard, - [122129] = 7, + STATE(4471), 1, + sym_block, + ACTIONS(7900), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122413] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3494), 1, + STATE(3540), 1, sym__blosure, - STATE(4121), 1, + STATE(4128), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122152] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7845), 1, - anon_sym_DQUOTE2, - STATE(4122), 1, - sym_comment, - STATE(4125), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122175] = 7, + [122436] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3494), 1, + STATE(3540), 1, sym__blosure, - STATE(4083), 1, + STATE(4043), 1, aux_sym__repeat_newline, - STATE(4123), 1, + STATE(4129), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122198] = 7, - ACTIONS(103), 1, + [122459] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1528), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(4124), 1, + ACTIONS(6805), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7267), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7331), 1, + aux_sym_unquoted_token2, + STATE(4130), 1, sym_comment, - STATE(4179), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [122221] = 7, - ACTIONS(103), 1, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7269), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122482] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7331), 1, + aux_sym_unquoted_token2, + STATE(4131), 1, + sym_comment, + STATE(5504), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122505] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_RPAREN, + ACTIONS(7704), 1, + sym__newline, + ACTIONS(7706), 1, + anon_sym_SEMI, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4132), 1, + sym_comment, + STATE(4406), 1, + aux_sym__block_body_repeat1, + STATE(4679), 1, + aux_sym__repeat_newline, + [122530] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7847), 1, + ACTIONS(7906), 1, anon_sym_DQUOTE2, - STATE(4125), 1, - sym_comment, - STATE(4182), 1, + STATE(4064), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4133), 1, + sym_comment, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122244] = 6, - ACTIONS(3), 1, + [122553] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7849), 1, - anon_sym_DOT, - ACTIONS(7851), 1, - aux_sym__immediate_decimal_token5, - STATE(4126), 1, + ACTIONS(7742), 1, + anon_sym_DOT_DOT, + ACTIONS(7744), 1, + anon_sym_DOT_DOT2, + ACTIONS(7908), 1, + anon_sym_RBRACK, + ACTIONS(7910), 1, + sym__entry_separator, + STATE(4134), 1, sym_comment, - ACTIONS(1784), 2, + ACTIONS(7746), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122265] = 6, - ACTIONS(103), 1, + [122576] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2257), 1, - sym__space, - ACTIONS(7853), 1, - anon_sym_DOT_DOT2, - STATE(4127), 1, + ACTIONS(57), 1, + anon_sym_AT, + STATE(4135), 1, sym_comment, - ACTIONS(2259), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7855), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122286] = 6, - ACTIONS(103), 1, + STATE(4176), 1, + aux_sym_attribute_list_repeat1, + STATE(5029), 1, + sym_attribute, + ACTIONS(7912), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [122597] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(1901), 1, sym__entry_separator, - ACTIONS(7857), 1, - anon_sym_DOT_DOT2, - STATE(4128), 1, + ACTIONS(1903), 1, + anon_sym_GT2, + ACTIONS(7430), 1, + anon_sym_DOT2, + STATE(3951), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4136), 1, sym_comment, - ACTIONS(2110), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7859), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122307] = 7, - ACTIONS(103), 1, + STATE(4251), 1, + sym_path, + STATE(4631), 1, + sym_cell_path, + [122622] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7861), 1, - anon_sym_DQUOTE2, - STATE(4129), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3597), 1, + sym__blosure, + STATE(4137), 1, sym_comment, - STATE(4132), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122330] = 7, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [122645] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_DQUOTE2, - STATE(4130), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3542), 1, + sym__blosure, + STATE(4044), 1, + aux_sym__repeat_newline, + STATE(4138), 1, sym_comment, - STATE(4182), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122353] = 6, + STATE(3078), 2, + sym_block, + sym_val_closure, + [122668] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7865), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7867), 1, - aux_sym__immediate_decimal_token5, - STATE(4131), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3597), 1, + sym__blosure, + STATE(4139), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122374] = 7, - ACTIONS(103), 1, + STATE(4161), 1, + aux_sym__repeat_newline, + STATE(3078), 2, + sym_block, + sym_val_closure, + [122691] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3485), 1, + sym__blosure, + STATE(4111), 1, + aux_sym__repeat_newline, + STATE(4140), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [122714] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7914), 1, + sym_identifier, + ACTIONS(7916), 1, + anon_sym_DOLLAR, + STATE(2798), 1, + sym__variable_name, + STATE(3069), 1, + sym_val_variable, + STATE(4141), 1, + sym_comment, + STATE(4761), 1, + sym__assignment_pattern, + [122739] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7869), 1, + ACTIONS(7918), 1, anon_sym_DQUOTE2, - STATE(4132), 1, - sym_comment, - STATE(4182), 1, + STATE(4064), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4384), 1, + STATE(4142), 1, + sym_comment, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7690), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122397] = 7, + [122762] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3138), 1, + STATE(3523), 1, sym__blosure, - STATE(4133), 1, + STATE(4143), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122420] = 7, + [122785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3496), 1, + STATE(3098), 1, sym__blosure, - STATE(4134), 1, + STATE(4144), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122443] = 7, + [122808] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3496), 1, - sym__blosure, - STATE(4097), 1, - aux_sym__repeat_newline, - STATE(4135), 1, + STATE(4145), 1, sym_comment, - STATE(3210), 2, + STATE(4436), 1, sym_block, - sym_val_closure, - [122466] = 6, + ACTIONS(7920), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122827] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, sym__unquoted_pattern, - ACTIONS(7871), 1, - anon_sym_DOT, - ACTIONS(7873), 1, + ACTIONS(7646), 1, aux_sym__immediate_decimal_token5, - STATE(4136), 1, + STATE(4146), 1, sym_comment, - ACTIONS(1784), 3, + ACTIONS(1788), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122487] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT2, - STATE(4137), 1, - sym_comment, - STATE(4156), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4521), 1, - sym_path, - ACTIONS(1526), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [122508] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7875), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - aux_sym__immediate_decimal_token5, - STATE(4138), 1, - sym_comment, - ACTIONS(1784), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1786), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122529] = 6, - ACTIONS(103), 1, + [122846] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7879), 1, + ACTIONS(5076), 1, + aux_sym_unquoted_token2, + ACTIONS(6805), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7881), 1, - aux_sym__immediate_decimal_token5, - STATE(4139), 1, + ACTIONS(7267), 1, + aux_sym__immediate_decimal_token2, + STATE(4147), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122550] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3093), 1, - sym__blosure, - STATE(4140), 1, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7269), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122869] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7744), 1, + anon_sym_DOT_DOT2, + ACTIONS(7748), 1, + anon_sym_DOT_DOT, + ACTIONS(7922), 1, + anon_sym_RBRACK, + ACTIONS(7925), 1, + sym__entry_separator, + STATE(4148), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [122573] = 7, - ACTIONS(3), 1, + ACTIONS(7746), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122892] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3418), 1, - sym__blosure, - STATE(4141), 1, + STATE(4149), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [122596] = 7, + ACTIONS(1527), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [122907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3093), 1, - sym__blosure, - STATE(4111), 1, - aux_sym__repeat_newline, - STATE(4142), 1, + STATE(4150), 1, sym_comment, - STATE(3210), 2, + STATE(4437), 1, sym_block, - sym_val_closure, - [122619] = 7, + ACTIONS(7920), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122926] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3418), 1, + STATE(3481), 1, sym__blosure, - STATE(4112), 1, - aux_sym__repeat_newline, STATE(4143), 1, + aux_sym__repeat_newline, + STATE(4151), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122642] = 8, - ACTIONS(103), 1, + [122949] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7561), 1, + ACTIONS(7702), 1, anon_sym_DOLLAR, - STATE(2821), 1, - sym__variable_name, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, - STATE(4144), 1, + STATE(3039), 1, + sym__variable_name, + STATE(4152), 1, sym_comment, - STATE(4497), 1, + STATE(4438), 1, sym__assignment_pattern, - [122667] = 8, - ACTIONS(103), 1, + [122974] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7567), 1, + ACTIONS(7520), 1, anon_sym_DOLLAR, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, - STATE(4145), 1, + STATE(4153), 1, sym_comment, - STATE(4310), 1, + STATE(4282), 1, sym__variable_name, - STATE(4504), 1, + STATE(4454), 1, sym__assignment_pattern, - [122692] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3429), 1, - sym__blosure, - STATE(4121), 1, - aux_sym__repeat_newline, - STATE(4146), 1, - sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [122715] = 8, - ACTIONS(103), 1, + [122999] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7567), 1, + ACTIONS(7520), 1, anon_sym_DOLLAR, - STATE(2822), 1, + STATE(2868), 1, sym_val_variable, - STATE(4147), 1, + STATE(4154), 1, sym_comment, - STATE(4310), 1, + STATE(4282), 1, sym__variable_name, - STATE(4508), 1, + STATE(4455), 1, sym__assignment_pattern, - [122740] = 7, - ACTIONS(103), 1, + [123024] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4290), 1, - sym__space, - ACTIONS(7774), 1, - anon_sym_EQ2, - ACTIONS(7883), 1, - sym_long_flag_identifier, - STATE(3058), 1, - sym__flag_equals_value, - STATE(4148), 1, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7928), 1, + anon_sym_DQUOTE2, + STATE(4064), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4155), 1, sym_comment, - ACTIONS(4288), 2, - sym__newline, - anon_sym_SEMI, - [122763] = 7, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [123047] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3101), 1, + STATE(3598), 1, sym__blosure, - STATE(4149), 1, + STATE(4156), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122786] = 7, + [123070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3433), 1, - sym__blosure, - STATE(4150), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + STATE(4157), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [122809] = 7, + STATE(5508), 1, + sym__immediate_decimal, + ACTIONS(6964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123091] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1462), 1, + sym__entry_separator, + ACTIONS(7896), 1, + anon_sym_BANG, + STATE(4158), 1, + sym_comment, + ACTIONS(1460), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123110] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3575), 1, + STATE(3544), 1, sym__blosure, - STATE(4151), 1, + STATE(4159), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122832] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7807), 1, - aux_sym_unquoted_token2, - STATE(4152), 1, - sym_comment, - STATE(4453), 1, - sym__immediate_decimal, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [122855] = 7, + [123133] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3101), 1, + STATE(3073), 1, sym__blosure, - STATE(4133), 1, + STATE(4117), 1, aux_sym__repeat_newline, - STATE(4153), 1, + STATE(4160), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122878] = 7, + [123156] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3575), 1, - sym__blosure, - STATE(3988), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(4154), 1, + STATE(3599), 1, + sym__blosure, + STATE(4161), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [122901] = 7, + [123179] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7930), 1, + sym_long_flag_identifier, + ACTIONS(7932), 1, + anon_sym_EQ2, + STATE(4162), 1, + sym_comment, + STATE(4803), 1, + sym__flag_equals_value, + ACTIONS(4355), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [123200] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3433), 1, + STATE(3578), 1, sym__blosure, - STATE(4134), 1, - aux_sym__repeat_newline, - STATE(4155), 1, + STATE(4163), 1, sym_comment, - STATE(3210), 2, + STATE(4198), 1, + aux_sym__repeat_newline, + STATE(3078), 2, sym_block, sym_val_closure, - [122924] = 5, - ACTIONS(103), 1, + [123223] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7885), 1, + ACTIONS(7552), 1, anon_sym_DOT2, - STATE(4521), 1, + ACTIONS(7934), 1, + anon_sym_RBRACE, + ACTIONS(7936), 1, + sym__entry_separator, + STATE(366), 1, sym_path, - STATE(4156), 2, + STATE(4164), 1, sym_comment, + STATE(4194), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1536), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [122943] = 7, - ACTIONS(103), 1, + STATE(4971), 1, + sym_cell_path, + [123248] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7011), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7494), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7888), 1, - aux_sym__immediate_decimal_token2, - STATE(4157), 1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7702), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(3016), 1, + sym__variable_name, + STATE(4165), 1, sym_comment, - STATE(4511), 1, - sym__immediate_decimal, - ACTIONS(7890), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [122966] = 7, - ACTIONS(103), 1, + STATE(4881), 1, + sym__assignment_pattern_parenthesized, + [123273] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7011), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7760), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7892), 1, - aux_sym__immediate_decimal_token2, - STATE(4158), 1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4166), 1, sym_comment, - STATE(5193), 1, - sym__immediate_decimal, - ACTIONS(7894), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [122989] = 7, - ACTIONS(103), 1, + STATE(4337), 1, + sym__variable_name, + STATE(4886), 1, + sym__assignment_pattern_parenthesized, + [123298] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7896), 1, - anon_sym_DQUOTE2, - STATE(3987), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4159), 1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4167), 1, sym_comment, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [123012] = 7, - ACTIONS(103), 1, + STATE(4337), 1, + sym__variable_name, + STATE(4893), 1, + sym__assignment_pattern_parenthesized, + [123323] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_LPAREN, - ACTIONS(7898), 1, - anon_sym_DQUOTE2, - STATE(4130), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4160), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3151), 1, + sym__blosure, + STATE(4168), 1, sym_comment, - STATE(4384), 1, - sym_expr_interpolated, - ACTIONS(7690), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [123035] = 7, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123346] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3579), 1, + STATE(3482), 1, sym__blosure, - STATE(4161), 1, + STATE(4169), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [123058] = 7, - ACTIONS(103), 1, + [123369] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7650), 1, + aux_sym__immediate_decimal_token5, + STATE(4170), 1, + sym_comment, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1790), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [123388] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6917), 1, + ACTIONS(5076), 1, + aux_sym_unquoted_token2, + ACTIONS(6964), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, + ACTIONS(7281), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7807), 1, - aux_sym_unquoted_token2, - STATE(4162), 1, + STATE(4171), 1, sym_comment, - STATE(5371), 1, + STATE(5504), 1, sym__immediate_decimal, - ACTIONS(7015), 2, + ACTIONS(7283), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123081] = 7, + [123411] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3579), 1, + STATE(3151), 1, sym__blosure, - STATE(3990), 1, + STATE(4006), 1, aux_sym__repeat_newline, - STATE(4163), 1, + STATE(4172), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [123104] = 7, + [123434] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3581), 1, + STATE(3077), 1, sym__blosure, - STATE(3991), 1, + STATE(4144), 1, aux_sym__repeat_newline, - STATE(4164), 1, + STATE(4173), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [123127] = 6, + [123457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7011), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7900), 1, - anon_sym_DOT_DOT2, - STATE(4165), 1, - sym_comment, - ACTIONS(7902), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7904), 2, - sym_filesize_unit, - sym_duration_unit, - [123148] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2108), 1, - sym__entry_separator, - ACTIONS(7906), 1, - anon_sym_DOT_DOT2, - STATE(4166), 1, - sym_comment, - ACTIONS(2110), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7908), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123169] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2241), 1, - sym__entry_separator, - ACTIONS(7910), 1, - anon_sym_DOT_DOT2, - STATE(4167), 1, - sym_comment, - ACTIONS(2243), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7912), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123190] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - sym__entry_separator, - ACTIONS(7914), 1, - anon_sym_DOT_DOT2, - STATE(4168), 1, - sym_comment, - ACTIONS(2251), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7916), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123211] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym__entry_separator, - ACTIONS(7918), 1, - anon_sym_DOT_DOT2, - STATE(4169), 1, - sym_comment, - ACTIONS(2259), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7920), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123232] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7922), 1, - aux_sym_unquoted_token2, - STATE(4170), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3482), 1, + sym__blosure, + STATE(4008), 1, + aux_sym__repeat_newline, + STATE(4174), 1, sym_comment, - STATE(4453), 1, - sym__immediate_decimal, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [123255] = 8, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(459), 1, - anon_sym_RPAREN, - ACTIONS(7766), 1, + ACTIONS(7704), 1, sym__newline, - ACTIONS(7768), 1, + ACTIONS(7706), 1, anon_sym_SEMI, - STATE(1378), 1, + ACTIONS(7938), 1, + anon_sym_RPAREN, + STATE(1375), 1, aux_sym__parenthesized_body_repeat1, - STATE(4171), 1, + STATE(4175), 1, sym_comment, - STATE(4458), 1, + STATE(4417), 1, aux_sym__block_body_repeat1, - STATE(4838), 1, + STATE(4679), 1, aux_sym__repeat_newline, - [123280] = 8, - ACTIONS(103), 1, + [123505] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(2895), 1, - sym__variable_name, - STATE(4172), 1, + ACTIONS(7942), 1, + anon_sym_AT, + STATE(5029), 1, + sym_attribute, + STATE(4176), 2, sym_comment, - STATE(4497), 1, - sym__assignment_pattern, - [123305] = 8, - ACTIONS(103), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(7940), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [123524] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4173), 1, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(7945), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + ACTIONS(1490), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(4177), 2, sym_comment, - STATE(4209), 1, - sym__variable_name, - STATE(4504), 1, - sym__assignment_pattern, - [123330] = 8, - ACTIONS(103), 1, + aux_sym__where_predicate_lhs_repeat1, + [123545] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4174), 1, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(7948), 1, + anon_sym_DOT, + ACTIONS(7950), 1, + aux_sym__immediate_decimal_token5, + STATE(4178), 1, sym_comment, - STATE(4209), 1, - sym__variable_name, - STATE(4508), 1, - sym__assignment_pattern, - [123355] = 7, - ACTIONS(103), 1, + ACTIONS(1788), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123566] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6917), 1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7625), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, + ACTIONS(7952), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7922), 1, - aux_sym_unquoted_token2, - STATE(4175), 1, + STATE(4179), 1, sym_comment, - STATE(5371), 1, + STATE(4619), 1, sym__immediate_decimal, - ACTIONS(7015), 2, + ACTIONS(7954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123378] = 6, + [123589] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4153), 1, - anon_sym_DOT_DOT2, - ACTIONS(7922), 1, - sym__unquoted_pattern, - STATE(4176), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3483), 1, + sym__blosure, + STATE(4020), 1, + aux_sym__repeat_newline, + STATE(4180), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123612] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3545), 1, + sym__blosure, + STATE(4181), 1, sym_comment, - ACTIONS(4155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7805), 2, - sym_filesize_unit, - sym_duration_unit, - [123399] = 8, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123635] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5348), 1, - anon_sym_RBRACK, - ACTIONS(5350), 1, - sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7956), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(4617), 1, sym_path, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4177), 1, - sym_comment, - STATE(5090), 1, - sym_cell_path, - [123424] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token5, - STATE(4178), 1, + STATE(4182), 2, sym_comment, - ACTIONS(1784), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1786), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1490), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [123443] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1538), 1, sym__entry_separator, - ACTIONS(7924), 1, + sym__table_head_separator, + [123654] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7558), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(2485), 1, sym_path, - ACTIONS(1536), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(4179), 2, - sym_comment, + STATE(4032), 1, aux_sym__where_predicate_lhs_repeat1, - [123464] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7927), 1, - aux_sym__immediate_decimal_token5, - STATE(4180), 1, + STATE(4183), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1834), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [123483] = 6, - ACTIONS(103), 1, + ACTIONS(1579), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [123675] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7929), 1, - anon_sym_DOT, - ACTIONS(7931), 1, - aux_sym__immediate_decimal_token5, - STATE(4181), 1, + ACTIONS(7714), 1, + anon_sym_LPAREN, + ACTIONS(7959), 1, + anon_sym_DQUOTE2, + STATE(4112), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4184), 1, sym_comment, - ACTIONS(1784), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1786), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [123504] = 6, - ACTIONS(103), 1, + STATE(4402), 1, + sym_expr_interpolated, + ACTIONS(7716), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [123698] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7933), 1, + ACTIONS(7714), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(7961), 1, anon_sym_DQUOTE2, - STATE(4384), 1, + STATE(4030), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4185), 1, + sym_comment, + STATE(4402), 1, sym_expr_interpolated, - ACTIONS(7936), 2, + ACTIONS(7716), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(4182), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [123525] = 7, + [123721] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3584), 1, + STATE(3545), 1, sym__blosure, - STATE(4183), 1, + STATE(4010), 1, + aux_sym__repeat_newline, + STATE(4186), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [123548] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(3034), 1, - sym__variable_name, - STATE(4184), 1, - sym_comment, - STATE(4497), 1, - sym__assignment_pattern, - [123573] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4185), 1, - sym_comment, - STATE(4331), 1, - sym__variable_name, - STATE(4504), 1, - sym__assignment_pattern, - [123598] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4186), 1, - sym_comment, - STATE(4331), 1, - sym__variable_name, - STATE(4508), 1, - sym__assignment_pattern, - [123623] = 8, - ACTIONS(103), 1, + [123744] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(3004), 1, - sym__variable_name, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3484), 1, + sym__blosure, STATE(4187), 1, sym_comment, - STATE(4900), 1, - sym__assignment_pattern_parenthesized, - [123648] = 8, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123767] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, + ACTIONS(1868), 1, + sym__unquoted_pattern, + ACTIONS(7963), 1, + aux_sym__immediate_decimal_token5, STATE(4188), 1, sym_comment, - STATE(4282), 1, - sym__variable_name, - STATE(4904), 1, - sym__assignment_pattern_parenthesized, - [123673] = 8, - ACTIONS(103), 1, + ACTIONS(1866), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123786] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, - sym_identifier, - ACTIONS(7567), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, + ACTIONS(7660), 1, + aux_sym__immediate_decimal_token5, STATE(4189), 1, sym_comment, - STATE(4282), 1, - sym__variable_name, - STATE(4778), 1, - sym__assignment_pattern_parenthesized, - [123698] = 4, + ACTIONS(1788), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1790), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [123805] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3549), 1, + sym__blosure, STATE(4190), 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, - [123715] = 4, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123828] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3422), 1, + sym__blosure, STATE(4191), 1, sym_comment, - ACTIONS(775), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(777), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [123732] = 4, - ACTIONS(3), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [123851] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5171), 1, + aux_sym_unquoted_token2, + ACTIONS(6805), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7267), 1, + aux_sym__immediate_decimal_token2, STATE(4192), 1, sym_comment, - ACTIONS(866), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(868), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [123749] = 6, - ACTIONS(103), 1, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7269), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123874] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2241), 1, - sym__entry_separator, - ACTIONS(7941), 1, - anon_sym_DOT_DOT2, + ACTIONS(5171), 1, + aux_sym_unquoted_token2, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, STATE(4193), 1, sym_comment, - ACTIONS(2243), 2, + STATE(5504), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123897] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(4177), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4194), 1, + sym_comment, + ACTIONS(1577), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7943), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123770] = 6, - ACTIONS(103), 1, + [123920] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6805), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7267), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7759), 1, + aux_sym_unquoted_token2, + STATE(4195), 1, + sym_comment, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7269), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123943] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(1738), 1, sym__entry_separator, - ACTIONS(7945), 1, + ACTIONS(7965), 1, anon_sym_DOT_DOT2, - STATE(4194), 1, + STATE(4196), 1, sym_comment, - ACTIONS(2251), 2, + ACTIONS(1616), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7947), 2, + ACTIONS(7967), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123791] = 6, - ACTIONS(3), 1, + [123964] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7626), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(4064), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4195), 1, + ACTIONS(5495), 1, + sym__space, + ACTIONS(7850), 1, + anon_sym_EQ2, + ACTIONS(7969), 1, + sym_short_flag_identifier, + STATE(3116), 1, + sym__flag_equals_value, + STATE(4197), 1, sym_comment, - ACTIONS(1528), 3, - anon_sym_EQ, + ACTIONS(5493), 2, sym__newline, - anon_sym_COLON, - [123812] = 7, + anon_sym_SEMI, + [123987] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3585), 1, + STATE(3596), 1, sym__blosure, - STATE(4196), 1, + STATE(4198), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [123835] = 6, - ACTIONS(103), 1, + [124010] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2257), 1, - sym__entry_separator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT2, - STATE(4197), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3160), 1, + sym__blosure, + STATE(4199), 1, sym_comment, - ACTIONS(2259), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123856] = 7, + STATE(3078), 2, + sym_block, + sym_val_closure, + [124033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7686), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3585), 1, + STATE(3484), 1, sym__blosure, - STATE(3995), 1, + STATE(4081), 1, aux_sym__repeat_newline, - STATE(4198), 1, + STATE(4200), 1, sym_comment, - STATE(3210), 2, + STATE(3078), 2, sym_block, sym_val_closure, - [123879] = 8, - ACTIONS(103), 1, + [124056] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_RBRACK, - ACTIONS(5414), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4199), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3523), 1, + sym__blosure, + STATE(4128), 1, + aux_sym__repeat_newline, + STATE(4201), 1, sym_comment, - STATE(5047), 1, - sym_cell_path, - [123904] = 6, - ACTIONS(103), 1, + STATE(3078), 2, + sym_block, + sym_val_closure, + [124079] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3587), 1, + sym__blosure, + STATE(4137), 1, + aux_sym__repeat_newline, + STATE(4202), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [124102] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7953), 1, + ACTIONS(7971), 1, anon_sym_DQUOTE, - STATE(4200), 1, + STATE(4203), 1, sym_comment, - STATE(4658), 1, + STATE(4379), 1, aux_sym_string_content_repeat1, - STATE(5275), 1, + STATE(5323), 1, sym_string_content, - ACTIONS(7955), 2, + ACTIONS(7973), 2, sym__escaped_str_content, sym_escape_sequence, - [123924] = 5, - ACTIONS(103), 1, + [124122] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2340), 1, + STATE(4204), 1, + sym_comment, + STATE(5147), 1, + sym__immediate_decimal, + ACTIONS(7798), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7870), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [124140] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7975), 1, + anon_sym_BANG, + STATE(4205), 1, + sym_comment, + ACTIONS(1460), 4, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(7957), 1, - anon_sym_LBRACK2, - STATE(4201), 1, + sym__table_head_separator, + anon_sym_DOT2, + [124156] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4206), 1, sym_comment, - ACTIONS(2342), 3, + STATE(4255), 1, + aux_sym_parameter_repeat2, + ACTIONS(1416), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7977), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [123942] = 5, - ACTIONS(103), 1, + [124174] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7959), 1, + ACTIONS(2114), 1, + sym__entry_separator, + ACTIONS(2116), 1, + anon_sym_RBRACE, + ACTIONS(7979), 1, + anon_sym_DOT_DOT2, + STATE(4207), 1, + sym_comment, + ACTIONS(7981), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124194] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7983), 1, anon_sym_LT, - STATE(4202), 1, + STATE(4208), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(5249), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6230), 2, + ACTIONS(6085), 2, anon_sym_RBRACK, anon_sym_GT2, - [123960] = 7, - ACTIONS(103), 1, + [124212] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7963), 1, - anon_sym_SQUOTE2, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - STATE(4203), 1, + ACTIONS(7985), 1, + anon_sym_LT, + STATE(4209), 1, sym_comment, - STATE(4208), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [123982] = 4, - ACTIONS(103), 1, + ACTIONS(5249), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6085), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124230] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4204), 1, + ACTIONS(1788), 1, + sym__entry_separator, + ACTIONS(7259), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7987), 1, + anon_sym_DOT, + STATE(4210), 1, sym_comment, - ACTIONS(1730), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [123998] = 6, - ACTIONS(103), 1, + ACTIONS(1790), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [124250] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7967), 1, - anon_sym_DQUOTE, - STATE(4205), 1, + STATE(1366), 1, + aux_sym__block_body_repeat1, + STATE(4211), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5289), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124018] = 7, - ACTIONS(103), 1, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(465), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124268] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(7969), 1, - anon_sym_SQUOTE2, - STATE(4206), 1, + ACTIONS(1917), 1, + sym__table_head_separator, + ACTIONS(7989), 1, + anon_sym_DOT2, + STATE(4212), 1, sym_comment, - STATE(4217), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124040] = 5, + STATE(4574), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4978), 1, + sym_path, + STATE(5375), 1, + sym_cell_path, + [124290] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4207), 1, + STATE(4213), 1, sym_comment, - STATE(4689), 1, + STATE(4692), 1, sym_block, - ACTIONS(7754), 3, + ACTIONS(7822), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124058] = 7, - ACTIONS(103), 1, + [124308] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(7971), 1, - anon_sym_SQUOTE2, - STATE(4208), 1, + ACTIONS(1901), 1, + sym__table_head_separator, + ACTIONS(7989), 1, + anon_sym_DOT2, + STATE(4214), 1, sym_comment, - STATE(4327), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124080] = 7, - ACTIONS(3), 1, + STATE(4574), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4978), 1, + sym_path, + STATE(5259), 1, + sym_cell_path, + [124330] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5766), 1, - anon_sym_EQ, - ACTIONS(7973), 1, - anon_sym_COLON, - STATE(4209), 1, + STATE(4215), 1, sym_comment, - STATE(4732), 1, - aux_sym__repeat_newline, - STATE(5305), 1, - sym_param_type, - [124102] = 6, - ACTIONS(103), 1, + ACTIONS(2576), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2578), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [124346] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, - ACTIONS(7975), 1, - anon_sym_RBRACE, - ACTIONS(7977), 1, + ACTIONS(7908), 1, + anon_sym_RBRACK, + ACTIONS(7910), 1, sym__entry_separator, - STATE(4210), 1, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + STATE(4216), 1, sym_comment, - ACTIONS(7744), 2, + ACTIONS(7967), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124122] = 4, + [124366] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(4217), 1, + sym_comment, + ACTIONS(2106), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124386] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, + ACTIONS(1776), 1, sym__unquoted_pattern, - STATE(4211), 1, + STATE(4218), 1, sym_comment, - ACTIONS(2590), 4, + ACTIONS(1774), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124138] = 4, - ACTIONS(103), 1, + [124402] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4212), 1, - sym_comment, - ACTIONS(2570), 2, + ACTIONS(2118), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2572), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(2124), 1, sym__unquoted_pattern_in_list, - [124154] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4213), 1, - sym_comment, - ACTIONS(6505), 2, - anon_sym_LPAREN2, + ACTIONS(2696), 1, sym__entry_separator, - ACTIONS(6507), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [124170] = 6, - ACTIONS(103), 1, + STATE(4219), 1, + sym_comment, + ACTIONS(2698), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124422] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, - ACTIONS(7979), 1, - anon_sym_RBRACE, - ACTIONS(7981), 1, + ACTIONS(2114), 1, sym__entry_separator, - STATE(4214), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_list, + STATE(4220), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124190] = 6, - ACTIONS(103), 1, + ACTIONS(2116), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124442] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7983), 1, - anon_sym_DQUOTE, - STATE(4215), 1, + ACTIONS(1868), 1, + sym__unquoted_pattern, + STATE(4221), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5376), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124210] = 7, - ACTIONS(103), 1, + ACTIONS(1866), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124458] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(7985), 1, - anon_sym_SQUOTE2, - STATE(4216), 1, - sym_comment, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2660), 1, + sym__entry_separator, + ACTIONS(2718), 1, + anon_sym_LPAREN2, STATE(4222), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124232] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(7987), 1, - anon_sym_SQUOTE2, - STATE(4217), 1, sym_comment, - STATE(4327), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124254] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7989), 1, + ACTIONS(2662), 2, anon_sym_RBRACK, - ACTIONS(7992), 1, anon_sym_DOT_DOT, - STATE(4218), 1, - sym_comment, - STATE(4296), 1, - aux_sym_parameter_repeat2, - ACTIONS(1398), 2, - sym__newline, - anon_sym_COMMA, - [124274] = 5, + [124478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4219), 1, + ACTIONS(1923), 1, + sym__unquoted_pattern, + STATE(4223), 1, sym_comment, - STATE(4296), 1, - aux_sym_parameter_repeat2, - ACTIONS(1398), 2, + ACTIONS(1921), 4, + anon_sym_if, sym__newline, - anon_sym_COMMA, - ACTIONS(7992), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124292] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5326), 1, - anon_sym_DOLLAR, - ACTIONS(7746), 1, - sym_identifier, - STATE(2939), 1, - sym__variable_name, - STATE(3247), 1, - sym_val_variable, - STATE(4220), 1, - sym_comment, - [124314] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124494] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1784), 1, + ACTIONS(2676), 1, sym__entry_separator, - ACTIONS(7005), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7994), 1, - anon_sym_DOT, - STATE(4221), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern_in_list, + STATE(4224), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(2678), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [124334] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [124514] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(7991), 1, anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(7996), 1, + ACTIONS(7994), 1, anon_sym_SQUOTE2, - STATE(4222), 1, + ACTIONS(7996), 1, + sym_unescaped_interpolated_content, + STATE(4921), 1, + sym_expr_interpolated, + STATE(4225), 2, sym_comment, - STATE(4327), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124356] = 4, - ACTIONS(103), 1, + [124534] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4223), 1, - sym_comment, - ACTIONS(1832), 2, + ACTIONS(4462), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1834), 3, + ACTIONS(7850), 1, + anon_sym_EQ2, + STATE(3058), 1, + sym__flag_equals_value, + STATE(4226), 1, + sym_comment, + ACTIONS(4460), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [124372] = 4, - ACTIONS(103), 1, + [124554] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4224), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4227), 1, sym_comment, - ACTIONS(1919), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1921), 3, + STATE(4811), 1, + sym_block, + ACTIONS(7920), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [124388] = 5, + [124572] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4225), 1, + STATE(4228), 1, sym_comment, - STATE(4771), 1, + STATE(4931), 1, sym_block, - ACTIONS(7784), 3, + ACTIONS(7920), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124406] = 6, - ACTIONS(103), 1, + [124590] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7998), 1, + ACTIONS(7999), 1, anon_sym_DQUOTE, - STATE(4226), 1, + STATE(4229), 1, sym_comment, - STATE(4658), 1, + STATE(4379), 1, aux_sym_string_content_repeat1, - STATE(5483), 1, + STATE(5309), 1, sym_string_content, - ACTIONS(7955), 2, + ACTIONS(7973), 2, sym__escaped_str_content, sym_escape_sequence, - [124426] = 7, - ACTIONS(103), 1, + [124610] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8000), 1, - anon_sym_SQUOTE2, - STATE(4227), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2104), 1, + anon_sym_LBRACE, + ACTIONS(8001), 1, + anon_sym_DOT_DOT2, + STATE(4230), 1, sym_comment, - STATE(4231), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124448] = 5, + ACTIONS(8003), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124630] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1367), 1, - aux_sym__block_body_repeat1, - STATE(4228), 1, - sym_comment, - ACTIONS(153), 2, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3064), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124466] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1784), 1, - sym__space, - ACTIONS(7217), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8002), 1, - anon_sym_DOT, - STATE(4229), 1, + ACTIONS(5660), 1, + anon_sym_EQ, + ACTIONS(8005), 1, + anon_sym_COLON, + STATE(4231), 1, sym_comment, - ACTIONS(1786), 2, - sym__newline, - anon_sym_SEMI, - [124486] = 4, - ACTIONS(103), 1, + STATE(4888), 1, + aux_sym__repeat_newline, + STATE(5506), 1, + sym_param_type, + [124652] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4230), 1, - sym_comment, - ACTIONS(2570), 2, - anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__entry_separator, - ACTIONS(2572), 3, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern_in_list, + STATE(4232), 1, + sym_comment, + ACTIONS(2606), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [124502] = 7, - ACTIONS(103), 1, + [124672] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8004), 1, - anon_sym_SQUOTE2, - STATE(4231), 1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(2966), 1, + sym_block, + STATE(4233), 1, sym_comment, - STATE(4327), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124524] = 7, - ACTIONS(103), 1, + STATE(4392), 1, + aux_sym__repeat_newline, + [124694] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(2634), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7559), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7561), 1, + ACTIONS(7702), 1, anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(2844), 1, + STATE(2769), 1, sym__variable_name, - STATE(4232), 1, - sym_comment, - [124546] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern, - ACTIONS(7873), 1, - aux_sym__immediate_decimal_token5, - STATE(4233), 1, - sym_comment, - ACTIONS(1784), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124564] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2584), 1, - sym__space, - ACTIONS(2588), 1, - anon_sym_LPAREN2, + STATE(2868), 1, + sym_val_variable, STATE(4234), 1, sym_comment, - ACTIONS(2586), 2, - sym__newline, - anon_sym_SEMI, - [124584] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1547), 1, - sym__entry_separator, - STATE(4235), 1, - sym_comment, - ACTIONS(1545), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [124600] = 5, + [124716] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1368), 1, + STATE(1363), 1, aux_sym__block_body_repeat1, - STATE(4236), 1, + STATE(4235), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(155), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3060), 2, + ACTIONS(3092), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [124618] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8006), 1, - anon_sym_DQUOTE, - STATE(4237), 1, - sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5523), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124638] = 7, - ACTIONS(103), 1, + [124734] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8007), 1, anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8008), 1, + ACTIONS(8009), 1, anon_sym_SQUOTE2, - STATE(4238), 1, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + STATE(4236), 1, sym_comment, - STATE(4243), 1, + STATE(4261), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, + STATE(4921), 1, sym_expr_interpolated, - [124660] = 5, - ACTIONS(3), 1, + [124756] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4239), 1, + ACTIONS(7496), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4237), 1, sym_comment, - STATE(4773), 1, - sym_block, - ACTIONS(7784), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124678] = 7, - ACTIONS(3), 1, + STATE(4816), 1, + sym_cell_path, + [124778] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__table_head_separator, - ACTIONS(8010), 1, + ACTIONS(7428), 1, + sym__entry_separator, + ACTIONS(7552), 1, anon_sym_DOT2, - STATE(4240), 1, - sym_comment, - STATE(4388), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5088), 1, + STATE(366), 1, sym_path, - STATE(5253), 1, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4238), 1, + sym_comment, + STATE(4831), 1, sym_cell_path, - [124700] = 4, - ACTIONS(3), 1, + [124800] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(4241), 1, + ACTIONS(1258), 1, + sym__entry_separator, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_list, + STATE(4239), 1, sym_comment, - ACTIONS(2090), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124716] = 6, - ACTIONS(103), 1, + ACTIONS(1242), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124820] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(1250), 1, sym__entry_separator, - ACTIONS(2092), 1, - anon_sym_RBRACE, - ACTIONS(8012), 1, - anon_sym_DOT_DOT2, - STATE(4242), 1, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_list, + STATE(4240), 1, sym_comment, - ACTIONS(8014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124736] = 7, - ACTIONS(103), 1, + ACTIONS(1234), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124840] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8016), 1, - anon_sym_SQUOTE2, - STATE(4243), 1, + ACTIONS(5427), 1, + sym__entry_separator, + ACTIONS(7552), 1, + anon_sym_DOT2, + STATE(366), 1, + sym_path, + STATE(4194), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4241), 1, sym_comment, - STATE(4327), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [124758] = 7, + STATE(4667), 1, + sym_cell_path, + [124862] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(8013), 1, + anon_sym_QMARK2, + ACTIONS(8015), 1, + anon_sym_BANG, + STATE(4242), 1, + sym_comment, + STATE(5070), 1, + sym__path_suffix, + ACTIONS(1474), 2, sym__table_head_separator, - ACTIONS(8010), 1, anon_sym_DOT2, - STATE(4244), 1, - sym_comment, - STATE(4388), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5088), 1, - sym_path, - STATE(5469), 1, - sym_cell_path, - [124780] = 6, - ACTIONS(103), 1, + [124882] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2590), 1, + STATE(4243), 1, + sym_comment, + ACTIONS(1774), 2, sym__space, - ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(1776), 3, + sym__newline, + anon_sym_SEMI, sym__unquoted_pattern, - STATE(4245), 1, + [124898] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7932), 1, + anon_sym_EQ2, + STATE(4244), 1, sym_comment, - ACTIONS(2592), 2, + STATE(4701), 1, + sym__flag_equals_value, + ACTIONS(4462), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124916] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8017), 1, + anon_sym_DASH_DASH, + STATE(4887), 1, + sym_long_flag, + ACTIONS(4400), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4245), 2, + sym_comment, + aux_sym_decl_def_repeat1, + [124934] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4246), 1, + sym_comment, + ACTIONS(1866), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1868), 3, sym__newline, anon_sym_SEMI, - [124800] = 6, - ACTIONS(103), 1, + sym__unquoted_pattern, + [124950] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_RBRACK, - ACTIONS(7706), 1, - sym__entry_separator, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, - STATE(4246), 1, + STATE(4247), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124820] = 6, - ACTIONS(103), 1, + ACTIONS(1921), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1923), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [124966] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8018), 1, + ACTIONS(8020), 1, anon_sym_DQUOTE, - STATE(4247), 1, + STATE(4248), 1, sym_comment, - STATE(4658), 1, + STATE(4379), 1, aux_sym_string_content_repeat1, - STATE(5113), 1, + STATE(5197), 1, sym_string_content, - ACTIONS(7955), 2, + ACTIONS(7973), 2, sym__escaped_str_content, sym_escape_sequence, - [124840] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(4248), 1, - sym_comment, - ACTIONS(2574), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124856] = 4, - ACTIONS(103), 1, + [124986] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8020), 1, - anon_sym_BANG, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8022), 1, + anon_sym_SQUOTE2, STATE(4249), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [124872] = 4, - ACTIONS(103), 1, + STATE(4252), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4921), 1, + sym_expr_interpolated, + [125008] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5800), 1, + anon_sym_EQ, + ACTIONS(8005), 1, + anon_sym_COLON, STATE(4250), 1, sym_comment, - ACTIONS(6529), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6531), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [124888] = 5, - ACTIONS(3), 1, + STATE(4888), 1, + aux_sym__repeat_newline, + STATE(5229), 1, + sym_param_type, + [125030] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1557), 1, + sym__entry_separator, STATE(4251), 1, sym_comment, - STATE(5107), 1, - sym__immediate_decimal, - ACTIONS(7760), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [124906] = 6, - ACTIONS(103), 1, + ACTIONS(1555), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [125046] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8022), 1, - anon_sym_DQUOTE, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8024), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4252), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5127), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124926] = 5, - ACTIONS(3), 1, + STATE(4921), 1, + sym_expr_interpolated, + [125068] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8024), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5298), 1, + anon_sym_DOLLAR, + ACTIONS(7518), 1, + sym_identifier, + STATE(2868), 1, + sym_val_variable, STATE(4253), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [124944] = 6, - ACTIONS(103), 1, + STATE(5104), 1, + sym__variable_name, + [125090] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8026), 1, - anon_sym_DQUOTE, + ACTIONS(1563), 1, + sym__entry_separator, STATE(4254), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5140), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124964] = 4, - ACTIONS(103), 1, + ACTIONS(1561), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [125106] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4255), 1, - sym_comment, - ACTIONS(2570), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2572), 3, + ACTIONS(6943), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8026), 2, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [124980] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + STATE(4255), 2, + sym_comment, + aux_sym_parameter_repeat2, + [125122] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2598), 1, - sym__space, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern, + ACTIONS(1567), 1, + sym__entry_separator, STATE(4256), 1, sym_comment, - ACTIONS(2600), 2, - sym__newline, - anon_sym_SEMI, - [125000] = 6, - ACTIONS(103), 1, + ACTIONS(1565), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [125138] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8028), 1, - anon_sym_DQUOTE, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + sym__newline, + STATE(1999), 1, + aux_sym__types_body_repeat1, STATE(4257), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5151), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125020] = 5, - ACTIONS(103), 1, + STATE(4759), 1, + sym_val_list, + STATE(4762), 1, + aux_sym__table_body_repeat1, + [125160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, - aux_sym__immediate_decimal_token5, STATE(4258), 1, sym_comment, - ACTIONS(1784), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1786), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [125038] = 6, - ACTIONS(103), 1, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1774), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125176] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_DQUOTE, + ACTIONS(8029), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, STATE(4259), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5161), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125058] = 5, + STATE(4260), 1, + sym__variable_name, + STATE(4764), 1, + sym__assignment_pattern_parenthesized, + [125198] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5784), 1, + anon_sym_EQ, + ACTIONS(8005), 1, + anon_sym_COLON, STATE(4260), 1, sym_comment, - STATE(5101), 1, - sym__immediate_decimal, - ACTIONS(6917), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6919), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [125076] = 6, - ACTIONS(103), 1, + STATE(4888), 1, + aux_sym__repeat_newline, + STATE(5106), 1, + sym_param_type, + [125220] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8032), 1, - anon_sym_DQUOTE, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8033), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4261), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5168), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125096] = 6, - ACTIONS(103), 1, + STATE(4921), 1, + sym_expr_interpolated, + [125242] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2090), 1, - sym__space, - ACTIONS(2094), 1, - anon_sym_LPAREN2, STATE(4262), 1, sym_comment, - ACTIONS(2092), 2, - sym__newline, - anon_sym_SEMI, - [125116] = 5, - ACTIONS(3), 1, + ACTIONS(6527), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6529), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [125258] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7725), 1, - anon_sym_EQ2, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + ACTIONS(8035), 1, + anon_sym_RBRACE, + ACTIONS(8037), 1, + sym__entry_separator, STATE(4263), 1, sym_comment, - STATE(4895), 1, - sym__flag_equals_value, - ACTIONS(4412), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125134] = 6, - ACTIONS(103), 1, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125278] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8034), 1, - anon_sym_DQUOTE, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + ACTIONS(8039), 1, + anon_sym_RBRACE, + ACTIONS(8041), 1, + sym__entry_separator, STATE(4264), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5175), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125154] = 4, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125298] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3894), 1, + anon_sym_LBRACE, STATE(4265), 1, sym_comment, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1832), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125170] = 6, - ACTIONS(103), 1, + STATE(4821), 1, + sym_block, + ACTIONS(7900), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125316] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8036), 1, - anon_sym_DQUOTE, STATE(4266), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5182), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125190] = 6, - ACTIONS(103), 1, + ACTIONS(6503), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6505), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [125332] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8038), 1, - anon_sym_DQUOTE, + ACTIONS(3894), 1, + anon_sym_LBRACE, STATE(4267), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5189), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125210] = 6, - ACTIONS(103), 1, + STATE(4825), 1, + sym_block, + ACTIONS(7900), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125350] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8040), 1, - anon_sym_DQUOTE, + STATE(1350), 1, + aux_sym__block_body_repeat1, STATE(4268), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5316), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125230] = 6, - ACTIONS(103), 1, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3090), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125368] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8042), 1, - anon_sym_DQUOTE, + ACTIONS(3894), 1, + anon_sym_LBRACE, STATE(4269), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5196), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125250] = 5, - ACTIONS(3), 1, + STATE(4738), 1, + sym_block, + ACTIONS(7755), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125386] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8044), 1, - anon_sym_DASH_DASH, - STATE(4922), 1, - sym_long_flag, - ACTIONS(4390), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4270), 2, + ACTIONS(7886), 1, + aux_sym__immediate_decimal_token5, + STATE(4270), 1, sym_comment, - aux_sym_decl_def_repeat1, - [125268] = 6, - ACTIONS(103), 1, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1790), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [125404] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_DQUOTE, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + ACTIONS(8043), 1, + anon_sym_RBRACE, + ACTIONS(8045), 1, + sym__entry_separator, STATE(4271), 1, sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5202), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125288] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8049), 1, - anon_sym_DQUOTE, - STATE(4272), 1, - sym_comment, - STATE(4658), 1, - aux_sym_string_content_repeat1, - STATE(5208), 1, - sym_string_content, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125308] = 5, - ACTIONS(103), 1, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125424] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8051), 1, + ACTIONS(8047), 1, aux_sym__immediate_decimal_token5, - STATE(4273), 1, + STATE(4272), 1, sym_comment, - ACTIONS(1832), 2, + ACTIONS(1866), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1834), 2, + ACTIONS(1868), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [125326] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8053), 1, - anon_sym_SQUOTE2, - STATE(4274), 1, - sym_comment, - STATE(4327), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [125348] = 5, + [125442] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4275), 1, + STATE(4273), 1, sym_comment, - STATE(4784), 1, + STATE(4813), 1, sym_block, - ACTIONS(7799), 3, + ACTIONS(7846), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125366] = 5, + [125460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4276), 1, + STATE(4274), 1, sym_comment, - STATE(4795), 1, + STATE(4817), 1, sym_block, - ACTIONS(7799), 3, + ACTIONS(7846), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125384] = 7, - ACTIONS(103), 1, + [125478] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8055), 1, - anon_sym_SQUOTE2, - STATE(4277), 1, + ACTIONS(1806), 1, + sym__unquoted_pattern, + STATE(4275), 1, sym_comment, - STATE(4314), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [125406] = 6, + ACTIONS(914), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + STATE(4276), 1, + sym_comment, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(2090), 1, + ACTIONS(1866), 3, anon_sym_LBRACE, - ACTIONS(8057), 1, - anon_sym_DOT_DOT2, - STATE(4278), 1, - sym_comment, - ACTIONS(8059), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [125426] = 5, + [125510] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7732), 1, + aux_sym__immediate_decimal_token5, + STATE(4277), 1, + sym_comment, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1790), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [125528] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, - aux_sym__block_body_repeat1, - STATE(4279), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + STATE(4278), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(2104), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(461), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125444] = 5, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125544] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8061), 1, - anon_sym_LT, - STATE(4280), 1, + STATE(4279), 1, sym_comment, - ACTIONS(5243), 2, - anon_sym_AT2, + ACTIONS(1774), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6230), 2, + ACTIONS(1776), 3, anon_sym_RBRACK, - anon_sym_GT2, - [125462] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [125560] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8049), 1, + anon_sym_SQUOTE2, + STATE(4280), 1, + sym_comment, + STATE(4285), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4921), 1, + sym_expr_interpolated, + [125582] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5332), 1, - anon_sym_DOLLAR, - ACTIONS(7559), 1, - sym_identifier, - STATE(2822), 1, - sym_val_variable, STATE(4281), 1, sym_comment, - STATE(5472), 1, - sym__variable_name, - [125484] = 7, + ACTIONS(1866), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [125598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(5999), 1, + ACTIONS(6022), 1, anon_sym_EQ, - ACTIONS(7973), 1, + ACTIONS(8005), 1, anon_sym_COLON, STATE(4282), 1, sym_comment, - STATE(4732), 1, + STATE(4888), 1, aux_sym__repeat_newline, - STATE(5261), 1, + STATE(5346), 1, sym_param_type, - [125506] = 4, - ACTIONS(103), 1, + [125620] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1478), 1, - sym__entry_separator, STATE(4283), 1, sym_comment, - ACTIONS(1476), 4, + ACTIONS(1921), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1923), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [125522] = 6, - ACTIONS(3), 1, + sym__unquoted_pattern_in_list, + [125636] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8063), 1, - anon_sym_QMARK2, - ACTIONS(8065), 1, - anon_sym_BANG, + ACTIONS(5804), 1, + sym__space, + ACTIONS(7850), 1, + anon_sym_EQ2, + STATE(3223), 1, + sym__flag_equals_value, STATE(4284), 1, sym_comment, - STATE(4989), 1, - sym__path_suffix, - ACTIONS(1450), 2, - sym__table_head_separator, - anon_sym_DOT2, - [125542] = 6, - ACTIONS(3), 1, + ACTIONS(5802), 2, + sym__newline, + anon_sym_SEMI, + [125656] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_LBRACE, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(8067), 1, - anon_sym_DOT_DOT2, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8051), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4285), 1, sym_comment, - ACTIONS(8069), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125562] = 4, + STATE(4921), 1, + sym_expr_interpolated, + [125678] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, + ACTIONS(8029), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4231), 1, + sym__variable_name, STATE(4286), 1, sym_comment, - ACTIONS(1216), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125578] = 6, - ACTIONS(103), 1, + STATE(4910), 1, + sym__assignment_pattern, + [125700] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1216), 1, - sym__space, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2114), 1, + anon_sym_LBRACE, + ACTIONS(2124), 1, sym__unquoted_pattern, + ACTIONS(8053), 1, + anon_sym_DOT_DOT2, STATE(4287), 1, sym_comment, - ACTIONS(1218), 2, - sym__newline, - anon_sym_SEMI, - [125598] = 4, + ACTIONS(8055), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125720] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8057), 1, + anon_sym_SQUOTE2, + STATE(4288), 1, + sym_comment, + STATE(4291), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4921), 1, + sym_expr_interpolated, + [125742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, - STATE(4288), 1, + STATE(4289), 1, sym_comment, - ACTIONS(1234), 4, + ACTIONS(2696), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125614] = 7, + [125758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5762), 1, - anon_sym_EQ, - ACTIONS(7973), 1, - anon_sym_COLON, - STATE(4289), 1, - sym_comment, - STATE(4732), 1, - aux_sym__repeat_newline, - STATE(5411), 1, - sym_param_type, - [125636] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1234), 1, - sym__space, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2124), 1, sym__unquoted_pattern, STATE(4290), 1, sym_comment, - ACTIONS(1226), 2, - sym__newline, - anon_sym_SEMI, - [125656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, - STATE(4291), 1, - sym_comment, - ACTIONS(1953), 4, + ACTIONS(2114), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125672] = 6, - ACTIONS(103), 1, + [125774] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5776), 1, - sym__space, - ACTIONS(7774), 1, - anon_sym_EQ2, - STATE(3224), 1, - sym__flag_equals_value, - STATE(4292), 1, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8059), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4291), 1, sym_comment, - ACTIONS(5774), 2, - sym__newline, - anon_sym_SEMI, - [125692] = 6, - ACTIONS(103), 1, + STATE(4921), 1, + sym_expr_interpolated, + [125796] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(2094), 1, + ACTIONS(8061), 1, + aux_sym__immediate_decimal_token5, + STATE(4292), 1, + sym_comment, + ACTIONS(1866), 2, anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [125814] = 5, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4293), 1, sym_comment, - ACTIONS(2092), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125712] = 6, - ACTIONS(103), 1, + STATE(5488), 1, + sym__immediate_decimal, + ACTIONS(6964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [125832] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8071), 1, + ACTIONS(8063), 1, anon_sym_DQUOTE, STATE(4294), 1, sym_comment, - STATE(4658), 1, + STATE(4379), 1, aux_sym_string_content_repeat1, - STATE(5499), 1, + STATE(5287), 1, sym_string_content, - ACTIONS(7955), 2, + ACTIONS(7973), 2, sym__escaped_str_content, sym_escape_sequence, - [125732] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - STATE(4295), 1, - sym_comment, - ACTIONS(2584), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125748] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6978), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8073), 2, - sym__newline, - anon_sym_COMMA, - STATE(4296), 2, - sym_comment, - aux_sym_parameter_repeat2, - [125764] = 7, - ACTIONS(103), 1, + [125852] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8007), 1, anon_sym_LPAREN, - ACTIONS(7965), 1, + ACTIONS(8011), 1, sym_unescaped_interpolated_content, - ACTIONS(8076), 1, + ACTIONS(8065), 1, anon_sym_SQUOTE2, - STATE(4274), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4297), 1, + STATE(4295), 1, sym_comment, - STATE(4714), 1, + STATE(4300), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4921), 1, sym_expr_interpolated, - [125786] = 5, + [125874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - ACTIONS(8078), 1, + ACTIONS(7838), 1, aux_sym__immediate_decimal_token5, - STATE(4298), 1, + STATE(4296), 1, + sym_comment, + ACTIONS(1788), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1790), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [125892] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + sym__unquoted_pattern, + STATE(4297), 1, sym_comment, - ACTIONS(1832), 3, + ACTIONS(2660), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125804] = 5, - ACTIONS(103), 1, + [125908] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4298), 1, + sym_comment, + ACTIONS(1923), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1921), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125924] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8080), 1, + ACTIONS(8067), 1, aux_sym__immediate_decimal_token5, STATE(4299), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1834), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [125822] = 4, - ACTIONS(103), 1, + ACTIONS(1866), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [125942] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8020), 1, - anon_sym_QMARK2, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8069), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4300), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [125838] = 6, - ACTIONS(103), 1, + STATE(4921), 1, + sym_expr_interpolated, + [125964] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4412), 1, - sym__space, - ACTIONS(7774), 1, - anon_sym_EQ2, - STATE(3176), 1, - sym__flag_equals_value, + ACTIONS(8071), 1, + anon_sym_DQUOTE, STATE(4301), 1, sym_comment, - ACTIONS(4410), 2, - sym__newline, - anon_sym_SEMI, - [125858] = 4, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5360), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125984] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8073), 1, + anon_sym_SQUOTE2, STATE(4302), 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, - [125874] = 5, + STATE(4304), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4921), 1, + sym_expr_interpolated, + [126006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, + ACTIONS(2686), 1, + sym__unquoted_pattern, STATE(4303), 1, sym_comment, - STATE(4833), 1, - sym_block, - ACTIONS(7740), 3, - ts_builtin_sym_end, + ACTIONS(2676), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [125892] = 7, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126022] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7727), 1, - anon_sym_RBRACK, - ACTIONS(7730), 1, - anon_sym_DOT_DOT, - ACTIONS(7732), 1, - sym__entry_separator, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8075), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4304), 1, sym_comment, - [125914] = 5, + STATE(4921), 1, + sym_expr_interpolated, + [126044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7851), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2578), 1, + sym__unquoted_pattern, STATE(4305), 1, sym_comment, - ACTIONS(1784), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [125932] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8082), 1, - sym_identifier, - ACTIONS(8084), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4306), 1, - sym_comment, - STATE(4310), 1, - sym__variable_name, - STATE(4485), 1, - sym__assignment_pattern, - [125954] = 4, + ACTIONS(2576), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126060] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, + ACTIONS(2610), 1, sym__unquoted_pattern, - STATE(4307), 1, + STATE(4306), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(2604), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125970] = 6, - ACTIONS(103), 1, + [126076] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, - ACTIONS(8086), 1, - anon_sym_RBRACE, - ACTIONS(8088), 1, - sym__entry_separator, + ACTIONS(1788), 1, + sym__space, + ACTIONS(7315), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8077), 1, + anon_sym_DOT, + STATE(4307), 1, + sym_comment, + ACTIONS(1790), 2, + sym__newline, + anon_sym_SEMI, + [126096] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8079), 1, + anon_sym_DQUOTE, STATE(4308), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125990] = 7, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5485), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126116] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8082), 1, - sym_identifier, - ACTIONS(8084), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4289), 1, - sym__variable_name, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8081), 1, + anon_sym_SQUOTE2, STATE(4309), 1, sym_comment, - STATE(4723), 1, - sym__assignment_pattern, - [126012] = 7, + STATE(4312), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4921), 1, + sym_expr_interpolated, + [126138] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(5676), 1, - anon_sym_EQ, - ACTIONS(7973), 1, - anon_sym_COLON, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(7950), 1, + aux_sym__immediate_decimal_token5, STATE(4310), 1, sym_comment, - STATE(4732), 1, - aux_sym__repeat_newline, - STATE(5526), 1, - sym_param_type, - [126034] = 4, - ACTIONS(3), 1, + ACTIONS(1788), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126156] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1738), 1, + sym__space, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, STATE(4311), 1, sym_comment, - ACTIONS(1921), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1919), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126050] = 6, - ACTIONS(103), 1, + ACTIONS(1616), 2, + sym__newline, + anon_sym_SEMI, + [126176] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2574), 1, - sym__entry_separator, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8083), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4312), 1, sym_comment, - ACTIONS(2576), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126070] = 6, - ACTIONS(103), 1, + STATE(4921), 1, + sym_expr_interpolated, + [126198] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1868), 1, + sym__unquoted_pattern, + ACTIONS(8085), 1, + aux_sym__immediate_decimal_token5, STATE(4313), 1, sym_comment, - ACTIONS(1955), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126090] = 7, - ACTIONS(103), 1, + ACTIONS(1866), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126216] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8087), 1, + anon_sym_DQUOTE, + STATE(4314), 1, + sym_comment, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5527), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126236] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8007), 1, anon_sym_LPAREN, - ACTIONS(7965), 1, + ACTIONS(8011), 1, sym_unescaped_interpolated_content, - ACTIONS(8090), 1, + ACTIONS(8089), 1, anon_sym_SQUOTE2, - STATE(4314), 1, + STATE(4315), 1, sym_comment, - STATE(4327), 1, + STATE(4316), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, + STATE(4921), 1, sym_expr_interpolated, - [126112] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7877), 1, - aux_sym__immediate_decimal_token5, - STATE(4315), 1, - sym_comment, - ACTIONS(1784), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1786), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [126130] = 7, - ACTIONS(3), 1, + [126258] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1444), 1, - anon_sym_COLON2, - ACTIONS(5020), 1, - anon_sym_DOT2, - STATE(470), 1, - sym_path, - STATE(518), 1, - sym_cell_path, - STATE(2328), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(8007), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, + sym_unescaped_interpolated_content, + ACTIONS(8091), 1, + anon_sym_SQUOTE2, + STATE(4225), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4316), 1, sym_comment, - [126152] = 6, - ACTIONS(103), 1, + STATE(4921), 1, + sym_expr_interpolated, + [126280] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, - ACTIONS(8092), 1, - anon_sym_RBRACE, - ACTIONS(8094), 1, - sym__entry_separator, + ACTIONS(8093), 1, + anon_sym_DQUOTE, STATE(4317), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126172] = 7, - ACTIONS(103), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5116), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126300] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5332), 1, - anon_sym_DOLLAR, - ACTIONS(7559), 1, - sym_identifier, - STATE(2822), 1, - sym_val_variable, + ACTIONS(8095), 1, + anon_sym_DQUOTE, STATE(4318), 1, sym_comment, - STATE(5282), 1, - sym__variable_name, - [126194] = 4, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5131), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126320] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2572), 1, + ACTIONS(1659), 1, sym__unquoted_pattern, + ACTIONS(2104), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_LPAREN2, STATE(4319), 1, sym_comment, - ACTIONS(2570), 4, - anon_sym_if, + ACTIONS(2106), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126210] = 4, + anon_sym_SEMI, + [126340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, STATE(4320), 1, sym_comment, - ACTIONS(2598), 4, + ACTIONS(1258), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126226] = 6, - ACTIONS(103), 1, + [126356] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1714), 1, - sym__space, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, STATE(4321), 1, sym_comment, - ACTIONS(1588), 2, + ACTIONS(1250), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [126246] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126372] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2598), 1, - sym__entry_separator, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8097), 1, + anon_sym_DQUOTE, STATE(4322), 1, sym_comment, - ACTIONS(2600), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126266] = 7, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5144), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126392] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8082), 1, - sym_identifier, - ACTIONS(8084), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4209), 1, - sym__variable_name, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7748), 1, + anon_sym_DOT_DOT, + ACTIONS(7922), 1, + anon_sym_RBRACK, + ACTIONS(7925), 1, + sym__entry_separator, STATE(4323), 1, sym_comment, - STATE(4485), 1, - sym__assignment_pattern, - [126288] = 6, - ACTIONS(103), 1, + [126414] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8096), 1, + ACTIONS(8099), 1, anon_sym_DQUOTE, STATE(4324), 1, sym_comment, - STATE(4658), 1, + STATE(4379), 1, aux_sym_string_content_repeat1, - STATE(5284), 1, + STATE(5155), 1, sym_string_content, - ACTIONS(7955), 2, + ACTIONS(7973), 2, sym__escaped_str_content, sym_escape_sequence, - [126308] = 7, - ACTIONS(103), 1, + [126434] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8098), 1, - anon_sym_SQUOTE2, + ACTIONS(8101), 1, + anon_sym_DQUOTE, STATE(4325), 1, sym_comment, - STATE(4340), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, - sym_expr_interpolated, - [126330] = 7, - ACTIONS(103), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5165), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126454] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(8103), 1, + anon_sym_DQUOTE, STATE(4326), 1, sym_comment, - STATE(4726), 1, - sym_cell_path, - [126352] = 6, - ACTIONS(103), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5172), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126474] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8100), 1, - anon_sym_LPAREN, - ACTIONS(8103), 1, - anon_sym_SQUOTE2, ACTIONS(8105), 1, - sym_unescaped_interpolated_content, - STATE(4714), 1, - sym_expr_interpolated, - STATE(4327), 2, + anon_sym_DQUOTE, + STATE(4327), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [126372] = 7, - ACTIONS(103), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5179), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126494] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7391), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(8107), 1, + anon_sym_DQUOTE, STATE(4328), 1, sym_comment, - STATE(4749), 1, - sym_cell_path, - [126394] = 4, - ACTIONS(103), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5186), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126514] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8109), 1, + anon_sym_DQUOTE, STATE(4329), 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, - [126410] = 7, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5193), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126534] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - sym__newline, - STATE(1988), 1, - aux_sym__types_body_repeat1, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5261), 1, + anon_sym_DOLLAR, + ACTIONS(7914), 1, + sym_identifier, + STATE(3018), 1, + sym__variable_name, + STATE(3069), 1, + sym_val_variable, STATE(4330), 1, sym_comment, - STATE(4712), 1, - sym_val_list, - STATE(4717), 1, - aux_sym__table_body_repeat1, - [126432] = 7, + [126556] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(6031), 1, - anon_sym_EQ, - ACTIONS(7973), 1, - anon_sym_COLON, + ACTIONS(7977), 1, + anon_sym_DOT_DOT, + ACTIONS(8111), 1, + anon_sym_RBRACK, + STATE(4255), 1, + aux_sym_parameter_repeat2, STATE(4331), 1, sym_comment, - STATE(4732), 1, - aux_sym__repeat_newline, - STATE(5324), 1, - sym_param_type, - [126454] = 4, - ACTIONS(103), 1, + ACTIONS(1416), 2, + sym__newline, + anon_sym_COMMA, + [126576] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8114), 1, + anon_sym_DQUOTE, STATE(4332), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1834), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [126470] = 4, - ACTIONS(103), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5200), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126596] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8116), 1, + anon_sym_DQUOTE, STATE(4333), 1, sym_comment, - ACTIONS(1919), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1921), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [126486] = 4, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5206), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126616] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, + ACTIONS(8118), 1, + anon_sym_DQUOTE, STATE(4334), 1, sym_comment, - ACTIONS(1832), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126502] = 4, - ACTIONS(3), 1, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5212), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126636] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1806), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, sym__unquoted_pattern, + ACTIONS(2696), 1, + sym__space, STATE(4335), 1, sym_comment, - ACTIONS(884), 4, - anon_sym_if, + ACTIONS(2698), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126518] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + [126656] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, - ACTIONS(8108), 1, - anon_sym_RBRACE, - ACTIONS(8110), 1, - sym__entry_separator, + ACTIONS(2114), 1, + sym__space, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, STATE(4336), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126538] = 7, + ACTIONS(2116), 2, + sym__newline, + anon_sym_SEMI, + [126676] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8082), 1, - sym_identifier, - ACTIONS(8084), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5986), 1, + anon_sym_EQ, + ACTIONS(8005), 1, + anon_sym_COLON, STATE(4337), 1, sym_comment, - STATE(4343), 1, - sym__variable_name, - STATE(4763), 1, - sym__assignment_pattern_parenthesized, - [126560] = 6, - ACTIONS(103), 1, + STATE(4888), 1, + aux_sym__repeat_newline, + STATE(5265), 1, + sym_param_type, + [126698] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2584), 1, - sym__entry_separator, - ACTIONS(2588), 1, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2660), 1, + sym__space, + ACTIONS(2718), 1, anon_sym_LPAREN2, STATE(4338), 1, sym_comment, - ACTIONS(2586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126580] = 7, - ACTIONS(103), 1, + ACTIONS(2662), 2, + sym__newline, + anon_sym_SEMI, + [126718] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5379), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(4124), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2676), 1, + sym__space, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern, STATE(4339), 1, sym_comment, - STATE(4614), 1, - sym_cell_path, - [126602] = 7, - ACTIONS(103), 1, + ACTIONS(2678), 2, + sym__newline, + anon_sym_SEMI, + [126738] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - sym_unescaped_interpolated_content, - ACTIONS(8112), 1, - anon_sym_SQUOTE2, - STATE(4327), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5298), 1, + anon_sym_DOLLAR, + ACTIONS(7518), 1, + sym_identifier, + STATE(2868), 1, + sym_val_variable, STATE(4340), 1, sym_comment, - STATE(4714), 1, - sym_expr_interpolated, - [126624] = 4, - ACTIONS(3), 1, + STATE(5476), 1, + sym__variable_name, + [126760] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1921), 1, - sym__unquoted_pattern, + ACTIONS(2375), 1, + sym__entry_separator, + ACTIONS(8120), 1, + anon_sym_LBRACK2, STATE(4341), 1, sym_comment, - ACTIONS(1919), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126640] = 7, - ACTIONS(3), 1, + ACTIONS(2377), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [126778] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8082), 1, - sym_identifier, - ACTIONS(8084), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4331), 1, - sym__variable_name, STATE(4342), 1, sym_comment, - STATE(4485), 1, - sym__assignment_pattern, - [126662] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2576), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2578), 3, sym__newline, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(7973), 1, - anon_sym_COLON, - STATE(4343), 1, - sym_comment, - STATE(4732), 1, - aux_sym__repeat_newline, - STATE(5103), 1, - sym_param_type, - [126684] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2580), 1, + anon_sym_SEMI, sym__unquoted_pattern, - STATE(4344), 1, - sym_comment, - ACTIONS(7512), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126700] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(2964), 1, - sym_block, - STATE(4345), 1, - sym_comment, - STATE(4459), 1, - aux_sym__repeat_newline, - [126722] = 6, - ACTIONS(103), 1, + [126794] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2604), 1, + sym__space, + ACTIONS(2608), 1, anon_sym_LPAREN2, - ACTIONS(1963), 1, + ACTIONS(2610), 1, sym__unquoted_pattern, - ACTIONS(2574), 1, - sym__space, - STATE(4346), 1, + STATE(4343), 1, sym_comment, - ACTIONS(2576), 2, + ACTIONS(2606), 2, sym__newline, anon_sym_SEMI, - [126742] = 6, - ACTIONS(103), 1, + [126814] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8114), 1, + ACTIONS(8122), 1, anon_sym_DQUOTE, - STATE(4347), 1, + STATE(4344), 1, sym_comment, - STATE(4658), 1, + STATE(4379), 1, aux_sym_string_content_repeat1, - STATE(5147), 1, + STATE(5338), 1, sym_string_content, - ACTIONS(7955), 2, + ACTIONS(7973), 2, sym__escaped_str_content, sym_escape_sequence, - [126762] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8082), 1, - sym_identifier, - ACTIONS(8084), 1, - anon_sym_DOLLAR, - STATE(2822), 1, - sym_val_variable, - STATE(4282), 1, - sym__variable_name, - STATE(4348), 1, - sym_comment, - STATE(4763), 1, - sym__assignment_pattern_parenthesized, - [126784] = 7, - ACTIONS(103), 1, + [126834] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8007), 1, anon_sym_LPAREN, - ACTIONS(7965), 1, + ACTIONS(8011), 1, sym_unescaped_interpolated_content, - ACTIONS(8116), 1, + ACTIONS(8124), 1, anon_sym_SQUOTE2, - STATE(4349), 1, + STATE(4345), 1, sym_comment, - STATE(4354), 1, + STATE(4353), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4714), 1, + STATE(4921), 1, sym_expr_interpolated, - [126806] = 5, + [126856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4350), 1, + ACTIONS(8029), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4346), 1, sym_comment, - STATE(4871), 1, - sym_block, - ACTIONS(7764), 3, - ts_builtin_sym_end, + STATE(4347), 1, + sym__variable_name, + STATE(4605), 1, + sym__assignment_pattern, + [126878] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, - [126824] = 6, - ACTIONS(103), 1, + ACTIONS(5714), 1, + anon_sym_EQ, + ACTIONS(8005), 1, + anon_sym_COLON, + STATE(4347), 1, + sym_comment, + STATE(4888), 1, + aux_sym__repeat_newline, + STATE(5376), 1, + sym_param_type, + [126900] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2590), 1, - sym__entry_separator, - ACTIONS(2594), 1, + STATE(4348), 1, + sym_comment, + ACTIONS(2576), 2, anon_sym_LPAREN2, - ACTIONS(2596), 1, + sym__entry_separator, + ACTIONS(2578), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, sym__unquoted_pattern_in_list, - STATE(4351), 1, + [126916] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1258), 1, + sym__space, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(4349), 1, sym_comment, - ACTIONS(2592), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126844] = 5, - ACTIONS(3), 1, + ACTIONS(1242), 2, + sym__newline, + anon_sym_SEMI, + [126936] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4352), 1, + ACTIONS(1250), 1, + sym__space, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern, + STATE(4350), 1, sym_comment, - STATE(4875), 1, - sym_block, - ACTIONS(7764), 3, - ts_builtin_sym_end, + ACTIONS(1234), 2, sym__newline, anon_sym_SEMI, - [126862] = 6, - ACTIONS(103), 1, + [126956] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1468), 1, + anon_sym_COLON2, + ACTIONS(5040), 1, + anon_sym_DOT2, + STATE(472), 1, + sym_path, + STATE(497), 1, + sym_cell_path, + STATE(2335), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4351), 1, + sym_comment, + [126978] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1216), 1, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + ACTIONS(8126), 1, + anon_sym_RBRACE, + ACTIONS(8128), 1, sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_list, - STATE(4353), 1, + STATE(4352), 1, sym_comment, - ACTIONS(1218), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126882] = 7, - ACTIONS(103), 1, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126998] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8007), 1, anon_sym_LPAREN, - ACTIONS(7965), 1, + ACTIONS(8011), 1, sym_unescaped_interpolated_content, - ACTIONS(8118), 1, + ACTIONS(8130), 1, anon_sym_SQUOTE2, - STATE(4327), 1, + STATE(4225), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4354), 1, + STATE(4353), 1, sym_comment, - STATE(4714), 1, + STATE(4921), 1, sym_expr_interpolated, - [126904] = 6, - ACTIONS(103), 1, + [127020] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1234), 1, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(8132), 1, + anon_sym_DOT_DOT2, + STATE(4354), 1, + sym_comment, + ACTIONS(8134), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127040] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + ACTIONS(8136), 1, + anon_sym_RBRACE, + ACTIONS(8138), 1, sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_list, STATE(4355), 1, sym_comment, - ACTIONS(1226), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126924] = 6, - ACTIONS(103), 1, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127060] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__space, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern, + ACTIONS(8029), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4250), 1, + sym__variable_name, STATE(4356), 1, sym_comment, - ACTIONS(1955), 2, - sym__newline, - anon_sym_SEMI, - [126944] = 6, - ACTIONS(103), 1, + STATE(4605), 1, + sym__assignment_pattern, + [127082] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(8120), 1, - anon_sym_DOT_DOT2, + ACTIONS(7975), 1, + anon_sym_QMARK2, STATE(4357), 1, sym_comment, - ACTIONS(8122), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126964] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1514), 1, + ACTIONS(1460), 4, + anon_sym_RBRACK, sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [127098] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2674), 1, + sym__unquoted_pattern, STATE(4358), 1, sym_comment, - ACTIONS(1512), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [126980] = 4, - ACTIONS(103), 1, + ACTIONS(7652), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127114] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8029), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4282), 1, + sym__variable_name, STATE(4359), 1, sym_comment, - ACTIONS(8124), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8126), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [126995] = 6, - ACTIONS(103), 1, + STATE(4605), 1, + sym__assignment_pattern, + [127136] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(7698), 1, - anon_sym_RBRACK, - ACTIONS(7706), 1, - sym__entry_separator, + ACTIONS(8029), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_DOLLAR, + STATE(2868), 1, + sym_val_variable, + STATE(4337), 1, + sym__variable_name, STATE(4360), 1, sym_comment, - STATE(5028), 1, - sym__expr_parenthesized_immediate, - [127014] = 6, - ACTIONS(103), 1, + STATE(4764), 1, + sym__assignment_pattern_parenthesized, + [127158] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2590), 1, - sym__entry_separator, - ACTIONS(2592), 1, - anon_sym_RBRACK, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8140), 1, + anon_sym_DQUOTE, STATE(4361), 1, sym_comment, - [127033] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8128), 1, - sym__newline, - ACTIONS(8131), 1, - anon_sym_PIPE, - ACTIONS(8134), 1, - anon_sym_EQ_GT, - STATE(4362), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [127050] = 3, + STATE(4379), 1, + aux_sym_string_content_repeat1, + STATE(5164), 1, + sym_string_content, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127178] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4363), 1, + STATE(4362), 1, sym_comment, - ACTIONS(8136), 4, + ACTIONS(8142), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127063] = 3, + [127191] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4364), 1, + STATE(4363), 1, sym_comment, - ACTIONS(8136), 4, + ACTIONS(8144), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127076] = 3, + [127204] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4365), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + STATE(4364), 1, sym_comment, - ACTIONS(8138), 4, + ACTIONS(2104), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127089] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127219] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACK, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(4365), 1, + sym_comment, + [127238] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2174), 1, + sym__entry_separator, STATE(4366), 1, sym_comment, - ACTIONS(8138), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2176), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [127102] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [127253] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1242), 1, + anon_sym_RBRACK, + ACTIONS(1258), 1, + sym__entry_separator, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_list, STATE(4367), 1, sym_comment, - ACTIONS(8140), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127115] = 3, - ACTIONS(3), 1, + [127272] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1234), 1, + anon_sym_RBRACK, + ACTIONS(1250), 1, + sym__entry_separator, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_list, STATE(4368), 1, sym_comment, - ACTIONS(8140), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127128] = 3, + [127291] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8146), 1, + anon_sym_LBRACK, + ACTIONS(8148), 1, + anon_sym_LPAREN, + STATE(4265), 1, + sym_parameter_parens, + STATE(4267), 1, + sym_parameter_bracks, STATE(4369), 1, sym_comment, - ACTIONS(8142), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127141] = 3, + [127310] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2124), 1, + sym__unquoted_pattern, STATE(4370), 1, sym_comment, - ACTIONS(8142), 4, + ACTIONS(2696), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127154] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127325] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8144), 1, - sym__space, - ACTIONS(6035), 2, - sym__newline, - anon_sym_SEMI, - STATE(4371), 2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(4371), 1, sym_comment, - aux_sym_attribute_repeat1, - [127169] = 3, - ACTIONS(3), 1, + ACTIONS(2114), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127340] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2423), 1, + sym__entry_separator, STATE(4372), 1, sym_comment, - ACTIONS(8147), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2425), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [127182] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [127355] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_RBRACE, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_COLON2, + STATE(1491), 1, + aux_sym__types_body_repeat2, STATE(4373), 1, sym_comment, - ACTIONS(8147), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127195] = 4, - ACTIONS(103), 1, + [127374] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2398), 1, + ACTIONS(2431), 1, sym__entry_separator, STATE(4374), 1, sym_comment, - ACTIONS(2400), 3, + ACTIONS(2433), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [127210] = 6, - ACTIONS(103), 1, + [127389] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3872), 1, - anon_sym_LBRACE, + ACTIONS(1711), 1, + sym__unquoted_pattern, STATE(4375), 1, sym_comment, - STATE(4581), 1, - sym_block, - [127229] = 3, - ACTIONS(3), 1, + ACTIONS(2660), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127404] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2435), 1, + sym__entry_separator, STATE(4376), 1, sym_comment, - ACTIONS(1524), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127242] = 6, + ACTIONS(2437), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127419] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8149), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, - anon_sym_LPAREN, - STATE(4225), 1, - sym_parameter_parens, - STATE(4239), 1, - sym_parameter_bracks, + ACTIONS(2686), 1, + sym__unquoted_pattern, STATE(4377), 1, sym_comment, - [127261] = 4, - ACTIONS(103), 1, + ACTIONS(2676), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127434] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2578), 1, + sym__unquoted_pattern, STATE(4378), 1, sym_comment, - ACTIONS(5389), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6515), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127276] = 5, - ACTIONS(3), 1, + ACTIONS(2576), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127449] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LBRACE, - ACTIONS(8153), 1, - anon_sym_DOT_DOT2, + ACTIONS(8150), 1, + anon_sym_DQUOTE, STATE(4379), 1, sym_comment, - ACTIONS(8155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127293] = 5, - ACTIONS(3), 1, + STATE(4507), 1, + aux_sym_string_content_repeat1, + ACTIONS(7973), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127466] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_LBRACE, - ACTIONS(8157), 1, - anon_sym_DOT_DOT2, + ACTIONS(2439), 1, + sym__entry_separator, STATE(4380), 1, sym_comment, - ACTIONS(8159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127310] = 4, - ACTIONS(3), 1, + ACTIONS(2441), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127481] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__unquoted_pattern, + ACTIONS(2443), 1, + sym__entry_separator, STATE(4381), 1, sym_comment, - ACTIONS(2598), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127325] = 3, + ACTIONS(2445), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127496] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4382), 1, sym_comment, - ACTIONS(7407), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [127338] = 5, + ACTIONS(8152), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127509] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2257), 1, - anon_sym_LBRACE, - ACTIONS(8161), 1, - anon_sym_DOT_DOT2, STATE(4383), 1, sym_comment, - ACTIONS(8163), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127355] = 4, - ACTIONS(103), 1, + ACTIONS(8152), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127522] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8165), 1, - anon_sym_LPAREN, + ACTIONS(4832), 1, + sym__entry_separator, + STATE(2289), 1, + aux_sym__types_body_repeat2, STATE(4384), 1, sym_comment, - ACTIONS(8167), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [127370] = 5, - ACTIONS(103), 1, + ACTIONS(8154), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127539] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(4832), 1, sym__entry_separator, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, + STATE(2290), 1, + aux_sym__types_body_repeat2, STATE(4385), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127387] = 5, - ACTIONS(103), 1, + ACTIONS(8154), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127556] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7512), 1, + ACTIONS(2447), 1, sym__entry_separator, - ACTIONS(7742), 1, - anon_sym_DOT_DOT2, STATE(4386), 1, sym_comment, - ACTIONS(7744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127404] = 4, - ACTIONS(103), 1, + ACTIONS(2449), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127571] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4387), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [127419] = 6, - ACTIONS(3), 1, + ACTIONS(8156), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127584] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1528), 1, - sym__table_head_separator, - ACTIONS(8010), 1, - anon_sym_DOT2, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_COLON2, + ACTIONS(8158), 1, + anon_sym_RBRACE, + STATE(1492), 1, + aux_sym__types_body_repeat2, STATE(4388), 1, sym_comment, - STATE(4435), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5088), 1, - sym_path, - [127438] = 4, - ACTIONS(103), 1, + [127603] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7938), 1, + anon_sym_RPAREN, STATE(4389), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6509), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127453] = 3, + STATE(4652), 1, + aux_sym__block_body_repeat1, + ACTIONS(8160), 2, + sym__newline, + anon_sym_SEMI, + [127620] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(3091), 1, + sym_block, STATE(4390), 1, sym_comment, - ACTIONS(8140), 4, + STATE(4426), 1, + aux_sym__repeat_newline, + [127639] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8162), 1, + sym__space, + ACTIONS(5880), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127466] = 3, + STATE(4391), 2, + sym_comment, + aux_sym_attribute_repeat1, + [127654] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4391), 1, - sym_comment, - ACTIONS(8140), 4, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127479] = 4, - ACTIONS(103), 1, - anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(2937), 1, + sym_block, STATE(4392), 1, sym_comment, - ACTIONS(5385), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6511), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127494] = 6, + [127673] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - STATE(4059), 1, - sym_parameter_parens, - STATE(4060), 1, - sym_parameter_bracks, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3102), 1, + anon_sym_SEMI, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, STATE(4393), 1, sym_comment, - [127513] = 3, - ACTIONS(3), 1, + STATE(4679), 1, + aux_sym__repeat_newline, + [127692] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2451), 1, + sym__entry_separator, STATE(4394), 1, sym_comment, - ACTIONS(1532), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127526] = 3, + ACTIONS(2453), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127707] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4395), 1, sym_comment, - ACTIONS(1482), 4, + ACTIONS(1529), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [127539] = 6, - ACTIONS(3), 1, + [127720] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5830), 1, - sym__newline, - ACTIONS(8169), 1, - anon_sym_EQ, - ACTIONS(8171), 1, - anon_sym_COLON, - STATE(3577), 1, - aux_sym__repeat_newline, + ACTIONS(8165), 1, + anon_sym_LPAREN, STATE(4396), 1, sym_comment, - [127558] = 3, + ACTIONS(8167), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [127735] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2610), 1, + sym__unquoted_pattern, STATE(4397), 1, sym_comment, - ACTIONS(8142), 4, + ACTIONS(2604), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127571] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127750] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1258), 1, + sym__entry_separator, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_record, STATE(4398), 1, sym_comment, - ACTIONS(8142), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127584] = 3, - ACTIONS(3), 1, + [127769] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1234), 1, + anon_sym_RBRACE, + ACTIONS(1250), 1, + sym__entry_separator, + ACTIONS(2630), 1, + anon_sym_LPAREN2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_record, STATE(4399), 1, sym_comment, - ACTIONS(8147), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127597] = 3, + [127788] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4400), 1, sym_comment, - ACTIONS(8147), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127610] = 3, + ACTIONS(1533), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127801] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4401), 1, sym_comment, - ACTIONS(8173), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127623] = 3, - ACTIONS(3), 1, + ACTIONS(1537), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127814] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8169), 1, + anon_sym_LPAREN, STATE(4402), 1, sym_comment, - ACTIONS(8173), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127636] = 3, - ACTIONS(3), 1, + ACTIONS(8171), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [127829] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(8035), 1, + anon_sym_RBRACE, + ACTIONS(8037), 1, + sym__entry_separator, STATE(4403), 1, sym_comment, - ACTIONS(8175), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127649] = 3, + STATE(5046), 1, + sym__expr_parenthesized_immediate, + [127848] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(4404), 1, sym_comment, - ACTIONS(8175), 4, + ACTIONS(1258), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127662] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127863] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3126), 1, - anon_sym_SEMI, - STATE(1378), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(4405), 1, sym_comment, - STATE(4838), 1, - aux_sym__repeat_newline, - [127681] = 3, + ACTIONS(1250), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127878] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7708), 1, + anon_sym_RPAREN, STATE(4406), 1, sym_comment, - ACTIONS(8175), 4, + STATE(4652), 1, + aux_sym__block_body_repeat1, + ACTIONS(8160), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127694] = 6, - ACTIONS(103), 1, + [127895] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6384), 1, - sym__entry_separator, - ACTIONS(6386), 1, - anon_sym_RBRACE, STATE(4407), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - [127713] = 3, + ACTIONS(1488), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127908] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4408), 1, sym_comment, - ACTIONS(8175), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127726] = 5, + ACTIONS(1543), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8179), 1, - anon_sym_RPAREN, STATE(4409), 1, sym_comment, - STATE(4576), 1, - aux_sym__block_body_repeat1, - ACTIONS(8177), 2, - sym__newline, - anon_sym_SEMI, - [127743] = 6, - ACTIONS(103), 1, + ACTIONS(1547), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127934] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6388), 1, - sym__entry_separator, - ACTIONS(6390), 1, - anon_sym_RBRACE, + ACTIONS(465), 1, + ts_builtin_sym_end, + STATE(1372), 1, + aux_sym__block_body_repeat1, STATE(4410), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - [127762] = 4, - ACTIONS(103), 1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [127951] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5822), 1, + sym__newline, + ACTIONS(8173), 1, + anon_sym_EQ, + ACTIONS(8175), 1, + anon_sym_COLON, + STATE(3448), 1, + aux_sym__repeat_newline, STATE(4411), 1, sym_comment, - ACTIONS(1919), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1921), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [127777] = 3, + [127970] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4412), 1, sym_comment, - ACTIONS(8181), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127790] = 3, + ACTIONS(7940), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [127983] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3090), 1, + ts_builtin_sym_end, + STATE(1371), 1, + aux_sym__block_body_repeat1, STATE(4413), 1, sym_comment, - ACTIONS(8181), 4, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127803] = 3, - ACTIONS(3), 1, + [128000] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2186), 1, + sym__entry_separator, STATE(4414), 1, sym_comment, - ACTIONS(7426), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [127816] = 3, - ACTIONS(3), 1, + ACTIONS(2188), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [128015] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(8039), 1, + anon_sym_RBRACE, + ACTIONS(8041), 1, + sym__entry_separator, STATE(4415), 1, sym_comment, - ACTIONS(8183), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127829] = 6, - ACTIONS(103), 1, + STATE(5046), 1, + sym__expr_parenthesized_immediate, + [128034] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1216), 1, + ACTIONS(2381), 1, sym__entry_separator, - ACTIONS(1218), 1, - anon_sym_RBRACE, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_record, STATE(4416), 1, sym_comment, - [127848] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1226), 1, + ACTIONS(2383), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1234), 1, - sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_record, + anon_sym_DOT_DOT, + [128049] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8177), 1, + anon_sym_RPAREN, STATE(4417), 1, sym_comment, - [127867] = 4, - ACTIONS(3), 1, + STATE(4652), 1, + aux_sym__block_body_repeat1, + ACTIONS(8160), 2, + sym__newline, + anon_sym_SEMI, + [128066] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, STATE(4418), 1, sym_comment, - ACTIONS(1216), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127882] = 4, - ACTIONS(3), 1, + ACTIONS(5385), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6447), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128081] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, STATE(4419), 1, sym_comment, - ACTIONS(1234), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127897] = 4, - ACTIONS(103), 1, + ACTIONS(5387), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6449), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128096] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(3066), 1, + sym_block, STATE(4420), 1, sym_comment, - ACTIONS(2570), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2572), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [127912] = 3, + STATE(4638), 1, + aux_sym__repeat_newline, + [128115] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4421), 1, sym_comment, - ACTIONS(8183), 4, + ACTIONS(8179), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127925] = 4, - ACTIONS(103), 1, + [128128] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2414), 1, - sym__entry_separator, + ACTIONS(8146), 1, + anon_sym_LBRACK, + ACTIONS(8148), 1, + anon_sym_LPAREN, + STATE(4227), 1, + sym_parameter_parens, + STATE(4228), 1, + sym_parameter_bracks, STATE(4422), 1, sym_comment, - ACTIONS(2416), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127940] = 3, + [128147] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4423), 1, sym_comment, - ACTIONS(8185), 4, + ACTIONS(8181), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127953] = 3, + [128160] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4424), 1, sym_comment, - ACTIONS(8185), 4, + ACTIONS(8183), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127966] = 3, + [128173] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4425), 1, sym_comment, - ACTIONS(8187), 4, + ACTIONS(8185), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127979] = 3, + [128186] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3067), 1, + sym_block, STATE(4426), 1, sym_comment, - ACTIONS(8189), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127992] = 3, + [128205] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4427), 1, sym_comment, - ACTIONS(8191), 4, + ACTIONS(7369), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128005] = 3, + anon_sym_LBRACE, + [128218] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4428), 1, sym_comment, - ACTIONS(8193), 4, + ACTIONS(7387), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128018] = 4, - ACTIONS(103), 1, + anon_sym_LBRACE, + [128231] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4429), 1, sym_comment, - ACTIONS(5391), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6517), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128033] = 4, - ACTIONS(103), 1, + ACTIONS(4211), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [128244] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, - sym__entry_separator, STATE(4430), 1, sym_comment, - ACTIONS(2420), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128048] = 3, + ACTIONS(4213), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [128257] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4431), 1, sym_comment, - ACTIONS(1518), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128061] = 4, - ACTIONS(103), 1, + ACTIONS(8187), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128270] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__entry_separator, STATE(4432), 1, sym_comment, - ACTIONS(785), 3, - anon_sym_RBRACK, + ACTIONS(8187), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128076] = 6, - ACTIONS(103), 1, + [128283] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8195), 1, - anon_sym_LBRACK, - ACTIONS(8197), 1, - anon_sym_RBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, STATE(4433), 1, sym_comment, - [128095] = 3, + ACTIONS(1774), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1776), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [128298] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4434), 1, sym_comment, - ACTIONS(1470), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128108] = 5, + ACTIONS(8189), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1538), 1, - sym__table_head_separator, - ACTIONS(8199), 1, - anon_sym_DOT2, - STATE(5088), 1, - sym_path, - STATE(4435), 2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8191), 1, + anon_sym_DOT_DOT2, + STATE(4435), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [128125] = 5, + ACTIONS(8193), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128328] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(8202), 1, - anon_sym_DOT_DOT2, STATE(4436), 1, sym_comment, - ACTIONS(8204), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128142] = 3, + ACTIONS(8195), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128341] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4437), 1, sym_comment, - ACTIONS(8206), 4, + ACTIONS(8195), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128155] = 3, + [128354] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4438), 1, sym_comment, - ACTIONS(1474), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128168] = 3, - ACTIONS(3), 1, + ACTIONS(8197), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128367] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4439), 1, sym_comment, - ACTIONS(8208), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [128181] = 5, - ACTIONS(3), 1, + ACTIONS(1866), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [128382] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8210), 1, - anon_sym_LBRACE, - STATE(3516), 1, - sym__blosure, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(8043), 1, + anon_sym_RBRACE, + ACTIONS(8045), 1, + sym__entry_separator, STATE(4440), 1, sym_comment, - STATE(3383), 2, - sym_block, - sym_val_closure, - [128198] = 4, - ACTIONS(103), 1, + STATE(5046), 1, + sym__expr_parenthesized_immediate, + [128401] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4441), 1, sym_comment, - ACTIONS(8212), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8214), 2, + ACTIONS(1921), 2, anon_sym_LPAREN2, sym__entry_separator, - [128213] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1923), 2, anon_sym_RBRACE, - ACTIONS(1714), 1, - sym__entry_separator, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, sym__unquoted_pattern_in_record, + [128416] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7652), 1, + sym__entry_separator, STATE(4442), 1, sym_comment, - [128232] = 4, - ACTIONS(103), 1, + ACTIONS(7748), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128433] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2450), 1, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2696), 1, sym__entry_separator, + ACTIONS(2698), 1, + anon_sym_RBRACK, STATE(4443), 1, sym_comment, - ACTIONS(2452), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128247] = 4, - ACTIONS(103), 1, + [128452] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2350), 1, + ACTIONS(2114), 1, sym__entry_separator, + ACTIONS(2116), 1, + anon_sym_RBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_list, STATE(4444), 1, sym_comment, - ACTIONS(2352), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128262] = 6, - ACTIONS(103), 1, + [128471] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(8216), 1, - anon_sym_RBRACK, - ACTIONS(8218), 1, - sym__entry_separator, STATE(4445), 1, sym_comment, - STATE(5519), 1, - sym__expr_parenthesized_immediate, - [128281] = 4, - ACTIONS(103), 1, + ACTIONS(5389), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6461), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128486] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4446), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_LPAREN2, + ACTIONS(5391), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(1834), 2, + ACTIONS(6463), 2, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [128296] = 5, + anon_sym_GT2, + [128501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8220), 1, - anon_sym_RBRACK, - STATE(3649), 1, - aux_sym_parameter_repeat2, + ACTIONS(8199), 1, + anon_sym_LBRACE, + ACTIONS(8201), 1, + anon_sym_DOT_DOT2, STATE(4447), 1, sym_comment, - ACTIONS(1496), 2, - sym__newline, - anon_sym_COMMA, - [128313] = 3, - ACTIONS(3), 1, + ACTIONS(8203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128518] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4448), 1, + ACTIONS(3458), 1, + anon_sym_COLON2, + ACTIONS(8205), 2, + sym__newline, + sym__space, + STATE(4448), 2, sym_comment, - ACTIONS(8222), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [128326] = 6, - ACTIONS(103), 1, + aux_sym_pipe_element_parenthesized_repeat1, + [128533] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(8108), 1, - anon_sym_RBRACE, - ACTIONS(8110), 1, - sym__entry_separator, STATE(4449), 1, sym_comment, - STATE(4986), 1, - sym__expr_parenthesized_immediate, - [128345] = 3, - ACTIONS(3), 1, + ACTIONS(5393), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6465), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128548] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4450), 1, sym_comment, - ACTIONS(8224), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128358] = 4, - ACTIONS(3), 1, + ACTIONS(5395), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6467), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128563] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__unquoted_pattern, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6093), 1, + anon_sym_RBRACE, STATE(4451), 1, sym_comment, - ACTIONS(2598), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [128373] = 4, - ACTIONS(3), 1, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + [128582] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, STATE(4452), 1, sym_comment, - ACTIONS(884), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128388] = 5, - ACTIONS(3), 1, + ACTIONS(5397), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6473), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128597] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(8226), 1, - anon_sym_DOT_DOT2, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(6095), 1, + sym__entry_separator, + ACTIONS(6097), 1, + anon_sym_RBRACE, STATE(4453), 1, sym_comment, - ACTIONS(8228), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128405] = 5, - ACTIONS(103), 1, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + [128616] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - STATE(2275), 1, - aux_sym__types_body_repeat2, STATE(4454), 1, sym_comment, - ACTIONS(7735), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128422] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2584), 1, - sym__entry_separator, - ACTIONS(2586), 1, + ACTIONS(8208), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2588), 1, - anon_sym_LPAREN2, + [128629] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4455), 1, sym_comment, - [128441] = 5, - ACTIONS(103), 1, + ACTIONS(8210), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128642] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(8212), 1, + anon_sym_GT2, + ACTIONS(8214), 1, + anon_sym_AT2, + ACTIONS(8216), 1, sym__entry_separator, - STATE(2280), 1, - aux_sym__types_body_repeat2, STATE(4456), 1, sym_comment, - ACTIONS(7797), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128458] = 3, - ACTIONS(3), 1, + STATE(4989), 1, + sym_param_completer, + [128661] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4457), 1, sym_comment, - ACTIONS(7470), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [128471] = 5, + ACTIONS(5249), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6085), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7770), 1, - anon_sym_RPAREN, + ACTIONS(2674), 1, + sym__unquoted_pattern, STATE(4458), 1, sym_comment, - STATE(4576), 1, - aux_sym__block_body_repeat1, - ACTIONS(8177), 2, - sym__newline, - anon_sym_SEMI, - [128488] = 6, + ACTIONS(1738), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3023), 1, - sym_block, STATE(4459), 1, sym_comment, - [128507] = 4, - ACTIONS(3), 1, + ACTIONS(7490), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128704] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, STATE(4460), 1, sym_comment, - ACTIONS(2570), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [128522] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2660), 1, + ACTIONS(8218), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8220), 2, + anon_sym_LPAREN2, sym__entry_separator, + [128719] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4461), 1, sym_comment, - ACTIONS(2662), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(8222), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [128537] = 6, - ACTIONS(3), 1, + [128732] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8149), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(8224), 1, anon_sym_LPAREN, - STATE(4275), 1, - sym_parameter_parens, - STATE(4276), 1, - sym_parameter_bracks, STATE(4462), 1, sym_comment, - [128556] = 6, - ACTIONS(103), 1, + ACTIONS(8226), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [128747] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(7975), 1, - anon_sym_RBRACE, - ACTIONS(7977), 1, - sym__entry_separator, STATE(4463), 1, sym_comment, - STATE(4986), 1, - sym__expr_parenthesized_immediate, - [128575] = 6, - ACTIONS(103), 1, + ACTIONS(8228), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128760] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8195), 1, - anon_sym_LBRACK, + ACTIONS(2903), 1, + sym__newline, ACTIONS(8230), 1, - anon_sym_RBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, + anon_sym_LBRACK, + STATE(501), 1, + aux_sym__repeat_newline, STATE(4464), 1, sym_comment, - [128594] = 6, - ACTIONS(103), 1, + STATE(5481), 1, + sym_val_list, + [128779] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1590), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(8232), 1, + anon_sym_COLON, + ACTIONS(8234), 1, + anon_sym_GT2, + ACTIONS(8236), 1, sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_COLON2, - STATE(1487), 1, - aux_sym__types_body_repeat2, STATE(4465), 1, sym_comment, - [128613] = 5, - ACTIONS(103), 1, + STATE(4961), 1, + sym__collection_annotation, + [128798] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8234), 1, - sym__space, STATE(4466), 1, sym_comment, - STATE(4668), 1, - aux_sym_attribute_repeat1, - ACTIONS(8232), 2, - sym__newline, - anon_sym_SEMI, - [128630] = 4, - ACTIONS(103), 1, + ACTIONS(1774), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1776), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [128813] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2372), 1, + ACTIONS(2592), 1, sym__entry_separator, STATE(4467), 1, sym_comment, - ACTIONS(2374), 3, + ACTIONS(2594), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [128645] = 3, + [128828] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4468), 1, sym_comment, - ACTIONS(8236), 4, - anon_sym_if, + ACTIONS(8238), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128658] = 5, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128841] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - STATE(2282), 1, - aux_sym__types_body_repeat2, STATE(4469), 1, sym_comment, - ACTIONS(8238), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128675] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2598), 1, - sym__entry_separator, - ACTIONS(2600), 1, + ACTIONS(8238), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern_in_record, + [128854] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4470), 1, sym_comment, - [128694] = 5, - ACTIONS(103), 1, + ACTIONS(8240), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128867] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - STATE(2283), 1, - aux_sym__types_body_repeat2, STATE(4471), 1, sym_comment, - ACTIONS(8238), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128711] = 4, - ACTIONS(103), 1, + ACTIONS(8240), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128880] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2668), 1, - sym__entry_separator, + ACTIONS(8242), 1, + anon_sym_COLON2, + STATE(4448), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4472), 1, sym_comment, - ACTIONS(2670), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [128726] = 3, + ACTIONS(5454), 2, + sym__newline, + sym__space, + [128897] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4473), 1, sym_comment, - ACTIONS(7448), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [128739] = 3, + ACTIONS(8244), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128910] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4474), 1, sym_comment, - ACTIONS(7319), 4, + ACTIONS(4173), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [128752] = 3, + [128923] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4475), 1, sym_comment, - ACTIONS(7506), 4, - anon_sym_if, + ACTIONS(4175), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128765] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + [128936] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(8246), 1, + anon_sym_RBRACK, + ACTIONS(8248), 1, + sym__entry_separator, STATE(4476), 1, sym_comment, - ACTIONS(5393), 2, - anon_sym_AT2, + STATE(5400), 1, + sym__expr_parenthesized_immediate, + [128955] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2604), 1, sym__entry_separator, - ACTIONS(6519), 2, + ACTIONS(2606), 1, anon_sym_RBRACK, - anon_sym_GT2, - [128780] = 3, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern_in_list, + STATE(4477), 1, + sym_comment, + [128974] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4477), 1, + STATE(4478), 1, sym_comment, - ACTIONS(8240), 4, + ACTIONS(8250), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128793] = 3, + [128987] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4478), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7343), 4, - ts_builtin_sym_end, + ACTIONS(8250), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [128806] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2462), 1, - sym__entry_separator, - STATE(4479), 1, - sym_comment, - ACTIONS(2464), 3, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128821] = 3, + [129000] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4480), 1, sym_comment, - ACTIONS(8242), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128834] = 3, + ACTIONS(7403), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129013] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4481), 1, sym_comment, - ACTIONS(8244), 4, + ACTIONS(8252), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128847] = 3, - ACTIONS(3), 1, + [129026] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1616), 1, + anon_sym_RBRACK, + ACTIONS(1738), 1, + sym__entry_separator, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, STATE(4482), 1, sym_comment, - ACTIONS(8246), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128860] = 3, + [129045] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4483), 1, sym_comment, - ACTIONS(8248), 4, + ACTIONS(8252), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128873] = 6, - ACTIONS(103), 1, + [129058] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(7979), 1, - anon_sym_RBRACE, - ACTIONS(7981), 1, + ACTIONS(914), 1, sym__entry_separator, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, STATE(4484), 1, sym_comment, - STATE(4986), 1, - sym__expr_parenthesized_immediate, - [128892] = 3, + ACTIONS(811), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129075] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4485), 1, sym_comment, - ACTIONS(8250), 4, + ACTIONS(8238), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128905] = 6, + [129088] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7839), 1, - sym__newline, - ACTIONS(7841), 1, - anon_sym_PIPE, - ACTIONS(8252), 1, - anon_sym_EQ_GT, - STATE(4362), 1, - aux_sym_match_pattern_repeat1, STATE(4486), 1, sym_comment, - [128924] = 3, + ACTIONS(8238), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129101] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4487), 1, sym_comment, ACTIONS(8254), 4, - anon_sym_if, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128937] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129114] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4488), 1, sym_comment, - ACTIONS(7454), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [128950] = 5, - ACTIONS(103), 1, + ACTIONS(8256), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129127] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_COLON2, STATE(4489), 1, sym_comment, - STATE(4541), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5474), 2, + ACTIONS(4529), 4, sym__newline, - sym__space, - [128967] = 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [129140] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8146), 1, + anon_sym_LBRACK, + ACTIONS(8148), 1, + anon_sym_LPAREN, + STATE(4273), 1, + sym_parameter_parens, + STATE(4274), 1, + sym_parameter_bracks, STATE(4490), 1, sym_comment, - ACTIONS(7512), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128980] = 3, - ACTIONS(3), 1, + [129159] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2660), 1, + sym__entry_separator, + ACTIONS(2662), 1, + anon_sym_RBRACK, + ACTIONS(2718), 1, + anon_sym_LPAREN2, STATE(4491), 1, sym_comment, - ACTIONS(4171), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [128993] = 3, - ACTIONS(3), 1, + [129178] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4492), 1, sym_comment, - ACTIONS(4191), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [129006] = 3, - ACTIONS(3), 1, + ACTIONS(2576), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2578), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [129193] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4493), 1, sym_comment, - ACTIONS(8256), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129019] = 3, + ACTIONS(1866), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [129208] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(8258), 1, + anon_sym_DOT_DOT2, STATE(4494), 1, sym_comment, - ACTIONS(8256), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129032] = 3, + ACTIONS(8260), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129225] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_LBRACE, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(8262), 1, + anon_sym_DOT, + ACTIONS(8264), 1, + aux_sym__immediate_decimal_token5, STATE(4495), 1, sym_comment, - ACTIONS(8258), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129045] = 5, + [129244] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8260), 1, - anon_sym_DOT_DOT2, + ACTIONS(7874), 1, + sym__newline, + ACTIONS(7876), 1, + anon_sym_PIPE, + ACTIONS(8266), 1, + anon_sym_EQ_GT, STATE(4496), 1, sym_comment, - ACTIONS(8262), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129062] = 3, + STATE(4641), 1, + aux_sym_match_pattern_repeat1, + [129263] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4497), 1, sym_comment, - ACTIONS(8264), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129075] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4498), 1, - sym_comment, - ACTIONS(8266), 4, + ACTIONS(8268), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [129088] = 3, - ACTIONS(3), 1, + [129276] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4499), 1, - sym_comment, - ACTIONS(8268), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1616), 1, anon_sym_RBRACE, - [129101] = 3, - ACTIONS(3), 1, + ACTIONS(1738), 1, + sym__entry_separator, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_record, + STATE(4498), 1, + sym_comment, + [129295] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4500), 1, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8270), 1, + anon_sym_LBRACK, + ACTIONS(8272), 1, + anon_sym_RBRACK, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(4499), 1, sym_comment, - ACTIONS(8268), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129114] = 4, + [129314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern, - STATE(4501), 1, + STATE(4500), 1, sym_comment, - ACTIONS(1714), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129129] = 4, - ACTIONS(103), 1, + ACTIONS(1774), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1776), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129329] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(2596), 1, sym__entry_separator, - STATE(4502), 1, + STATE(4501), 1, sym_comment, - ACTIONS(2110), 3, + ACTIONS(2598), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [129144] = 6, + [129344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(4502), 1, + sym_comment, + ACTIONS(7652), 3, sym__newline, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(3213), 1, - sym_block, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129359] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4503), 1, sym_comment, - STATE(4544), 1, - aux_sym__repeat_newline, - [129163] = 3, - ACTIONS(3), 1, + ACTIONS(1866), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129374] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4504), 1, sym_comment, - ACTIONS(8270), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129176] = 3, + ACTIONS(1921), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1923), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [129389] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + STATE(4078), 1, + sym_parameter_parens, + STATE(4082), 1, + sym_parameter_bracks, STATE(4505), 1, sym_comment, - ACTIONS(7411), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129189] = 4, + [129408] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4506), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(1921), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 2, + ACTIONS(1923), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [129204] = 3, - ACTIONS(3), 1, + [129423] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4507), 1, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8276), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4507), 2, sym_comment, - ACTIONS(8272), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129217] = 3, + aux_sym_string_content_repeat1, + [129438] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2610), 1, + sym__unquoted_pattern, STATE(4508), 1, sym_comment, - ACTIONS(8274), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129230] = 5, - ACTIONS(103), 1, + ACTIONS(2604), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129453] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7512), 1, - sym__entry_separator, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(4509), 1, sym_comment, - ACTIONS(7730), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [129247] = 3, + ACTIONS(914), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129468] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4510), 1, sym_comment, - ACTIONS(7417), 4, + ACTIONS(7424), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [129260] = 5, - ACTIONS(3), 1, + [129481] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8276), 1, - anon_sym_DOT_DOT2, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(8279), 1, + anon_sym_RBRACK, + ACTIONS(8281), 1, + sym__entry_separator, STATE(4511), 1, sym_comment, - ACTIONS(8278), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129277] = 3, + STATE(5400), 1, + sym__expr_parenthesized_immediate, + [129500] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4512), 1, sym_comment, - ACTIONS(8280), 4, + ACTIONS(8283), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129290] = 6, - ACTIONS(103), 1, + [129513] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2574), 1, - sym__entry_separator, - ACTIONS(2576), 1, - anon_sym_RBRACK, STATE(4513), 1, sym_comment, - [129309] = 3, + ACTIONS(8283), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129526] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4514), 1, sym_comment, - ACTIONS(8282), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129322] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(2092), 1, + ACTIONS(8285), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(4515), 1, - sym_comment, - [129341] = 3, + [129539] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4516), 1, + STATE(4515), 1, sym_comment, - ACTIONS(8284), 4, + ACTIONS(8285), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129354] = 6, - ACTIONS(103), 1, + [129552] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(1955), 1, + ACTIONS(8270), 1, + anon_sym_LBRACK, + ACTIONS(8287), 1, anon_sym_RBRACK, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_list, - STATE(4517), 1, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(4516), 1, sym_comment, - [129373] = 3, + [129571] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4518), 1, + STATE(4517), 1, sym_comment, - ACTIONS(7450), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129386] = 4, - ACTIONS(103), 1, + ACTIONS(8289), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129584] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2546), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2104), 1, sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + STATE(4518), 1, + sym_comment, + [129603] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(914), 1, + sym__space, + ACTIONS(5076), 1, + sym__unquoted_pattern, STATE(4519), 1, sym_comment, - ACTIONS(2548), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [129401] = 6, - ACTIONS(103), 1, + ACTIONS(811), 2, + sym__newline, + anon_sym_SEMI, + [129620] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_COLON2, - ACTIONS(8286), 1, - anon_sym_RBRACE, - STATE(1491), 1, + ACTIONS(8270), 1, + anon_sym_LBRACK, + ACTIONS(8291), 1, + anon_sym_RBRACK, + STATE(1934), 1, aux_sym__types_body_repeat2, STATE(4520), 1, sym_comment, - [129420] = 3, - ACTIONS(103), 1, + [129639] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(8293), 1, + anon_sym_DOT_DOT2, STATE(4521), 1, sym_comment, - ACTIONS(1545), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [129433] = 3, + ACTIONS(8295), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129656] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(4522), 1, sym_comment, - ACTIONS(8288), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129446] = 4, + ACTIONS(1258), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(2632), 1, sym__unquoted_pattern, STATE(4523), 1, sym_comment, - ACTIONS(2090), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129461] = 3, + ACTIONS(1250), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129686] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4524), 1, sym_comment, - ACTIONS(8290), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129474] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_COLON2, - ACTIONS(8292), 2, - sym__newline, - sym__space, - STATE(4525), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [129489] = 6, - ACTIONS(103), 1, + ACTIONS(7444), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129699] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(8295), 1, - anon_sym_RBRACK, - ACTIONS(8297), 1, + ACTIONS(1602), 1, sym__entry_separator, - STATE(4526), 1, - sym_comment, - STATE(5519), 1, - sym__expr_parenthesized_immediate, - [129508] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4527), 1, + STATE(4525), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129523] = 3, + ACTIONS(1600), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [129714] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4528), 1, + STATE(4526), 1, sym_comment, - ACTIONS(8299), 4, + ACTIONS(8289), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129536] = 4, - ACTIONS(103), 1, + [129727] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(4527), 1, + sym_comment, + ACTIONS(1774), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129742] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(1901), 1, sym__entry_separator, - STATE(4529), 1, + STATE(4528), 1, sym_comment, - ACTIONS(2468), 3, + ACTIONS(1903), 3, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [129551] = 6, - ACTIONS(103), 1, + [129757] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(7908), 1, + anon_sym_RBRACK, + ACTIONS(7910), 1, + sym__entry_separator, + STATE(4529), 1, + sym_comment, + STATE(4998), 1, + sym__expr_parenthesized_immediate, + [129776] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(3003), 1, - sym_block, + ACTIONS(1868), 1, + sym__unquoted_pattern, STATE(4530), 1, sym_comment, - [129570] = 6, - ACTIONS(103), 1, + ACTIONS(1866), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129791] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1923), 1, + sym__unquoted_pattern, STATE(4531), 1, sym_comment, - [129589] = 6, - ACTIONS(103), 1, + ACTIONS(1921), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129806] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(2385), 1, sym__entry_separator, - ACTIONS(8195), 1, - anon_sym_LBRACK, - ACTIONS(8301), 1, - anon_sym_RBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, STATE(4532), 1, sym_comment, - [129608] = 6, - ACTIONS(103), 1, + ACTIONS(2387), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [129821] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(8303), 1, + ACTIONS(8297), 1, anon_sym_RBRACK, - ACTIONS(8305), 1, - sym__entry_separator, + STATE(3618), 1, + aux_sym_parameter_repeat2, STATE(4533), 1, sym_comment, - STATE(5519), 1, - sym__expr_parenthesized_immediate, - [129627] = 4, - ACTIONS(3), 1, + ACTIONS(1509), 2, + sym__newline, + anon_sym_COMMA, + [129838] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7351), 1, - sym__unquoted_pattern, + ACTIONS(4832), 1, + sym__entry_separator, + STATE(2277), 1, + aux_sym__types_body_repeat2, STATE(4534), 1, sym_comment, - ACTIONS(884), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129642] = 6, - ACTIONS(103), 1, + ACTIONS(7757), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129855] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2590), 1, - sym__entry_separator, - ACTIONS(2592), 1, - anon_sym_RBRACE, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_record, STATE(4535), 1, sym_comment, - [129661] = 4, - ACTIONS(103), 1, + ACTIONS(4177), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [129868] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4536), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1834), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129676] = 3, + ACTIONS(4179), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [129881] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4537), 1, sym_comment, - ACTIONS(8307), 4, + ACTIONS(8299), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129689] = 4, - ACTIONS(103), 1, + [129894] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4538), 1, sym_comment, - ACTIONS(1919), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1921), 2, + ACTIONS(8299), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129704] = 5, + [129907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8210), 1, + ACTIONS(8301), 1, anon_sym_LBRACE, - STATE(3384), 1, + STATE(3398), 1, sym__blosure, STATE(4539), 1, sym_comment, - STATE(3383), 2, + STATE(3369), 2, sym_block, sym_val_closure, - [129721] = 4, + [129924] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4540), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1834), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [129736] = 5, - ACTIONS(103), 1, + ACTIONS(8283), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129937] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8309), 1, - anon_sym_COLON2, - STATE(4525), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4541), 1, sym_comment, - ACTIONS(5474), 2, + ACTIONS(8283), 4, sym__newline, - sym__space, - [129753] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129950] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4542), 1, sym_comment, - ACTIONS(8311), 4, + ACTIONS(8285), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129766] = 5, + [129963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_LBRACE, - ACTIONS(8315), 1, - anon_sym_DOT_DOT2, STATE(4543), 1, sym_comment, - ACTIONS(8317), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129783] = 6, + ACTIONS(8285), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129976] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, + ACTIONS(8301), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3179), 1, - sym_block, + STATE(3435), 1, + sym__blosure, STATE(4544), 1, sym_comment, - [129802] = 4, + STATE(3369), 2, + sym_block, + sym_val_closure, + [129993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, STATE(4545), 1, sym_comment, - ACTIONS(1730), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129817] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4546), 1, - sym_comment, - ACTIONS(8319), 4, + ACTIONS(8303), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [129830] = 6, - ACTIONS(103), 1, + [130006] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(2092), 1, - anon_sym_RBRACK, - ACTIONS(2094), 1, - anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(8305), 1, + anon_sym_DOT_DOT2, + STATE(4546), 1, + sym_comment, + ACTIONS(8307), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130023] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4461), 1, + sym_block, STATE(4547), 1, sym_comment, - [129849] = 4, - ACTIONS(103), 1, + [130042] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(2166), 1, sym__entry_separator, STATE(4548), 1, sym_comment, - ACTIONS(1887), 3, + ACTIONS(2168), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [129864] = 4, + anon_sym_DOT_DOT, + [130057] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, STATE(4549), 1, sym_comment, - ACTIONS(1216), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129879] = 5, + ACTIONS(7436), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8210), 1, - anon_sym_LBRACE, - STATE(3569), 1, - sym__blosure, STATE(4550), 1, sym_comment, - STATE(3383), 2, - sym_block, - sym_val_closure, - [129896] = 4, - ACTIONS(3), 1, + ACTIONS(8309), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130083] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(6065), 1, + sym__entry_separator, + ACTIONS(6067), 1, + anon_sym_RBRACE, STATE(4551), 1, sym_comment, - ACTIONS(1234), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129911] = 4, - ACTIONS(3), 1, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + [130102] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(6079), 1, + sym__entry_separator, + ACTIONS(6081), 1, + anon_sym_RBRACE, STATE(4552), 1, sym_comment, - ACTIONS(1919), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1921), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [129926] = 6, - ACTIONS(3), 1, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + [130121] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(8321), 1, - anon_sym_LBRACK, - STATE(503), 1, - aux_sym__repeat_newline, + ACTIONS(8313), 1, + sym__space, + STATE(4391), 1, + aux_sym_attribute_repeat1, STATE(4553), 1, sym_comment, - STATE(5295), 1, - sym_val_list, - [129945] = 4, - ACTIONS(103), 1, + ACTIONS(8311), 2, + sym__newline, + anon_sym_SEMI, + [130138] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, STATE(4554), 1, sym_comment, - ACTIONS(1580), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [129960] = 4, - ACTIONS(3), 1, + ACTIONS(7480), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130151] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, STATE(4555), 1, sym_comment, - ACTIONS(2574), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129975] = 6, - ACTIONS(103), 1, + ACTIONS(8315), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8317), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [130166] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1216), 1, + ACTIONS(2676), 1, sym__entry_separator, - ACTIONS(1218), 1, + ACTIONS(2678), 1, anon_sym_RBRACK, - ACTIONS(2606), 1, + ACTIONS(2684), 1, anon_sym_LPAREN2, - ACTIONS(2608), 1, + ACTIONS(2686), 1, sym__unquoted_pattern_in_list, STATE(4556), 1, sym_comment, - [129994] = 4, + [130185] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, STATE(4557), 1, sym_comment, - ACTIONS(1953), 3, + ACTIONS(8319), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130009] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130198] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1226), 1, - anon_sym_RBRACK, - ACTIONS(1234), 1, - sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_LPAREN2, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_list, STATE(4558), 1, sym_comment, - [130028] = 6, + ACTIONS(8321), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - STATE(4086), 1, - sym_parameter_parens, - STATE(4087), 1, - sym_parameter_bracks, STATE(4559), 1, sym_comment, - [130047] = 3, + ACTIONS(8289), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130224] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4560), 1, sym_comment, - ACTIONS(8323), 4, - anon_sym_if, + ACTIONS(8289), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130060] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130237] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2454), 1, - sym__entry_separator, STATE(4561), 1, sym_comment, - ACTIONS(2456), 3, - anon_sym_RBRACK, + ACTIONS(8323), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130075] = 4, + [130250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, STATE(4562), 1, sym_comment, - ACTIONS(2584), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130090] = 5, + ACTIONS(7498), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7772), 1, - anon_sym_RPAREN, STATE(4563), 1, sym_comment, - STATE(4576), 1, - aux_sym__block_body_repeat1, - ACTIONS(8177), 2, + ACTIONS(8325), 4, sym__newline, anon_sym_SEMI, - [130107] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130276] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4564), 1, @@ -249052,17042 +249430,17077 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130120] = 4, + [130289] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern, STATE(4565), 1, sym_comment, - ACTIONS(2590), 3, + ACTIONS(8327), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130135] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130302] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LPAREN, STATE(4566), 1, sym_comment, - ACTIONS(8329), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [130150] = 6, + ACTIONS(8327), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, + ACTIONS(2166), 1, anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3218), 1, - sym_block, + ACTIONS(8329), 1, + anon_sym_DOT_DOT2, STATE(4567), 1, sym_comment, - [130169] = 4, - ACTIONS(103), 1, + ACTIONS(8331), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130332] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, - sym__entry_separator, STATE(4568), 1, sym_comment, - ACTIONS(2408), 3, - anon_sym_RBRACK, + ACTIONS(8333), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130184] = 4, + [130345] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern, STATE(4569), 1, sym_comment, - ACTIONS(7512), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130199] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern, - STATE(4570), 1, - sym_comment, - ACTIONS(1832), 3, + ACTIONS(8333), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130214] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8315), 1, - anon_sym_DOT_DOT2, - ACTIONS(8331), 1, + ACTIONS(2174), 1, anon_sym_LBRACE, - STATE(4571), 1, + ACTIONS(8335), 1, + anon_sym_DOT_DOT2, + STATE(4570), 1, sym_comment, - ACTIONS(8317), 2, + ACTIONS(8337), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130231] = 4, + [130375] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(4572), 1, + STATE(4571), 1, sym_comment, - ACTIONS(2570), 3, + ACTIONS(8339), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130246] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130388] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, - ACTIONS(3872), 1, + ACTIONS(2186), 1, anon_sym_LBRACE, - STATE(4564), 1, - sym_block, - STATE(4573), 1, + ACTIONS(8341), 1, + anon_sym_DOT_DOT2, + STATE(4572), 1, sym_comment, - [130265] = 3, + ACTIONS(8343), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130405] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4574), 1, + STATE(4573), 1, sym_comment, - ACTIONS(8333), 4, + ACTIONS(8339), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130278] = 3, + [130418] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4575), 1, + ACTIONS(1579), 1, + sym__table_head_separator, + ACTIONS(7989), 1, + anon_sym_DOT2, + STATE(4574), 1, sym_comment, - ACTIONS(8335), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130291] = 4, + STATE(4611), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4978), 1, + sym_path, + [130437] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_RPAREN, - ACTIONS(8337), 2, + STATE(4575), 1, + sym_comment, + ACTIONS(8345), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - STATE(4576), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130450] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7636), 1, + sym__entry_separator, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, + STATE(4576), 1, sym_comment, - aux_sym__block_body_repeat1, - [130306] = 3, - ACTIONS(3), 1, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130467] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7652), 1, + sym__entry_separator, + ACTIONS(7965), 1, + anon_sym_DOT_DOT2, STATE(4577), 1, sym_comment, - ACTIONS(8335), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130319] = 3, + ACTIONS(7967), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130484] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4578), 1, sym_comment, - ACTIONS(8340), 4, + ACTIONS(8347), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130332] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130497] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2378), 1, - sym__entry_separator, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(3406), 1, + sym__blosure, STATE(4579), 1, sym_comment, - ACTIONS(2380), 3, + STATE(3078), 2, + sym_block, + sym_val_closure, + [130514] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2656), 1, + sym__entry_separator, + STATE(4580), 1, + sym_comment, + ACTIONS(2658), 3, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130347] = 3, + [130529] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8313), 1, + sym__space, + STATE(4553), 1, + aux_sym_attribute_repeat1, + STATE(4581), 1, + sym_comment, + ACTIONS(8349), 2, + sym__newline, + anon_sym_SEMI, + [130546] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4582), 1, sym_comment, - ACTIONS(8340), 4, + ACTIONS(8327), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130360] = 3, + [130559] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4581), 1, + STATE(4583), 1, sym_comment, - ACTIONS(8342), 4, + ACTIONS(8327), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130373] = 3, + [130572] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4582), 1, + STATE(4584), 1, sym_comment, - ACTIONS(8344), 4, + ACTIONS(8351), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [130386] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_comment, - ACTIONS(8346), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130399] = 5, + [130585] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3064), 1, - ts_builtin_sym_end, - STATE(1380), 1, - aux_sym__block_body_repeat1, - STATE(4584), 1, + STATE(4585), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8353), 4, sym__newline, anon_sym_SEMI, - [130416] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_COLON2, - ACTIONS(8348), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1490), 1, - aux_sym__types_body_repeat2, - STATE(4585), 1, + [130598] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8201), 1, + anon_sym_DOT_DOT2, + ACTIONS(8355), 1, + anon_sym_LBRACE, + STATE(4586), 1, sym_comment, - [130435] = 6, - ACTIONS(103), 1, + ACTIONS(8203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130615] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8350), 1, - anon_sym_COLON, - ACTIONS(8352), 1, - anon_sym_GT2, - ACTIONS(8354), 1, + ACTIONS(2401), 1, sym__entry_separator, - STATE(4586), 1, + STATE(4587), 1, sym_comment, - STATE(4942), 1, - sym__collection_annotation, - [130454] = 3, + ACTIONS(2403), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130630] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4587), 1, + STATE(4588), 1, sym_comment, - ACTIONS(8356), 4, + ACTIONS(8333), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130467] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4588), 1, - sym_comment, - ACTIONS(1476), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [130480] = 3, + [130643] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4589), 1, sym_comment, - ACTIONS(4195), 4, - ts_builtin_sym_end, + ACTIONS(8333), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [130493] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_LBRACE, - ACTIONS(1786), 1, - sym__unquoted_pattern, - ACTIONS(8358), 1, - anon_sym_DOT, - ACTIONS(8360), 1, - aux_sym__immediate_decimal_token5, STATE(4590), 1, sym_comment, - [130512] = 5, + ACTIONS(8339), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130669] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3060), 1, - ts_builtin_sym_end, - STATE(1387), 1, - aux_sym__block_body_repeat1, STATE(4591), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8339), 4, sym__newline, anon_sym_SEMI, - [130529] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130682] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4592), 1, sym_comment, - ACTIONS(4163), 4, - ts_builtin_sym_end, + ACTIONS(8357), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [130542] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130695] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4593), 1, sym_comment, - ACTIONS(8362), 4, + ACTIONS(8357), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130555] = 3, + [130708] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4594), 1, sym_comment, - ACTIONS(8362), 4, + ACTIONS(8359), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130568] = 3, + [130721] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4595), 1, sym_comment, - ACTIONS(8364), 4, + ACTIONS(8359), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130581] = 3, + [130734] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4596), 1, sym_comment, - ACTIONS(8364), 4, + ACTIONS(8359), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130594] = 3, - ACTIONS(103), 1, + [130747] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4597), 1, sym_comment, - ACTIONS(1512), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [130607] = 3, + ACTIONS(8359), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130760] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4598), 1, sym_comment, - ACTIONS(8335), 4, + ACTIONS(8361), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130620] = 3, - ACTIONS(3), 1, + [130773] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2405), 1, + sym__entry_separator, STATE(4599), 1, sym_comment, - ACTIONS(8335), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2407), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130633] = 3, + anon_sym_DOT_DOT, + [130788] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4600), 1, sym_comment, - ACTIONS(8366), 4, + ACTIONS(8361), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130646] = 5, + [130801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3211), 1, - sym__blosure, STATE(4601), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [130663] = 3, + ACTIONS(8363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130814] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4602), 1, sym_comment, - ACTIONS(8368), 4, + ACTIONS(8363), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130676] = 4, - ACTIONS(103), 1, + [130827] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, - sym__entry_separator, STATE(4603), 1, sym_comment, - ACTIONS(2412), 3, - anon_sym_RBRACK, + ACTIONS(8365), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130691] = 4, - ACTIONS(103), 1, + [130840] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8370), 1, - anon_sym_DQUOTE, - ACTIONS(8372), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4604), 2, + STATE(4604), 1, sym_comment, - aux_sym_string_content_repeat1, - [130706] = 6, - ACTIONS(103), 1, + ACTIONS(8365), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130853] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2584), 1, - sym__entry_separator, - ACTIONS(2586), 1, - anon_sym_RBRACK, - ACTIONS(2588), 1, - anon_sym_LPAREN2, STATE(4605), 1, sym_comment, - [130725] = 3, - ACTIONS(3), 1, + ACTIONS(8367), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130866] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2409), 1, + sym__entry_separator, STATE(4606), 1, sym_comment, - ACTIONS(8375), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130738] = 5, - ACTIONS(3), 1, + ACTIONS(2411), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130881] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3370), 1, - sym__blosure, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2696), 1, + sym__entry_separator, + ACTIONS(2698), 1, + anon_sym_RBRACE, STATE(4607), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [130755] = 6, - ACTIONS(103), 1, + [130900] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2598), 1, + ACTIONS(914), 1, sym__entry_separator, - ACTIONS(2600), 1, - anon_sym_RBRACK, - ACTIONS(2602), 1, - anon_sym_LPAREN2, - ACTIONS(2604), 1, - sym__unquoted_pattern_in_list, STATE(4608), 1, sym_comment, - [130774] = 3, - ACTIONS(3), 1, + ACTIONS(811), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130915] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(8369), 1, + anon_sym_RBRACK, + ACTIONS(8371), 1, + sym__entry_separator, STATE(4609), 1, sym_comment, - ACTIONS(8344), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130787] = 3, - ACTIONS(3), 1, + STATE(5400), 1, + sym__expr_parenthesized_immediate, + [130934] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2114), 1, + sym__entry_separator, + ACTIONS(2116), 1, + anon_sym_RBRACE, + ACTIONS(2118), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, STATE(4610), 1, sym_comment, - ACTIONS(8377), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130800] = 3, + [130953] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4611), 1, + ACTIONS(1492), 1, + sym__table_head_separator, + ACTIONS(8373), 1, + anon_sym_DOT2, + STATE(4978), 1, + sym_path, + STATE(4611), 2, sym_comment, - ACTIONS(8379), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130813] = 5, - ACTIONS(103), 1, + aux_sym__where_predicate_lhs_repeat1, + [130970] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(2277), 1, sym__entry_separator, - STATE(2285), 1, - aux_sym__types_body_repeat2, STATE(4612), 1, sym_comment, - ACTIONS(8381), 2, + ACTIONS(2279), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [130830] = 5, - ACTIONS(103), 1, + [130985] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4814), 1, + ACTIONS(2413), 1, sym__entry_separator, - STATE(2273), 1, - aux_sym__types_body_repeat2, STATE(4613), 1, sym_comment, - ACTIONS(8381), 2, + ACTIONS(2415), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [130847] = 4, - ACTIONS(103), 1, + [131000] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, STATE(4614), 1, sym_comment, - ACTIONS(1895), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(8376), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [130862] = 6, - ACTIONS(3), 1, + [131013] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_LPAREN, - STATE(4037), 1, - sym_parameter_parens, - STATE(4038), 1, - sym_parameter_bracks, + ACTIONS(4832), 1, + sym__entry_separator, + STATE(2286), 1, + aux_sym__types_body_repeat2, STATE(4615), 1, sym_comment, - [130881] = 4, - ACTIONS(3), 1, + ACTIONS(7750), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131030] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1921), 1, - sym__unquoted_pattern, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(8378), 1, + anon_sym_RBRACK, + ACTIONS(8380), 1, + sym__entry_separator, STATE(4616), 1, sym_comment, - ACTIONS(1919), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130896] = 6, - ACTIONS(103), 1, + STATE(5400), 1, + sym__expr_parenthesized_immediate, + [131049] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_RBRACK, - ACTIONS(1714), 1, - sym__entry_separator, - ACTIONS(2578), 1, - anon_sym_LPAREN2, - ACTIONS(2580), 1, - sym__unquoted_pattern_in_list, STATE(4617), 1, sym_comment, - [130915] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(1555), 4, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, + sym__table_head_separator, + anon_sym_DOT2, + [131062] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4618), 1, sym_comment, - ACTIONS(785), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [130932] = 5, + ACTIONS(8382), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(8383), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8384), 1, anon_sym_DOT_DOT2, STATE(4619), 1, sym_comment, - ACTIONS(8385), 2, + ACTIONS(8386), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130949] = 4, - ACTIONS(103), 1, + [131092] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4832), 1, + sym__entry_separator, + STATE(2287), 1, + aux_sym__types_body_repeat2, STATE(4620), 1, sym_comment, - ACTIONS(5395), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6533), 2, + ACTIONS(8388), 2, anon_sym_RBRACK, - anon_sym_GT2, - [130964] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [131109] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2660), 1, + sym__entry_separator, + ACTIONS(2662), 1, + anon_sym_RBRACE, + ACTIONS(2718), 1, + anon_sym_LPAREN2, STATE(4621), 1, sym_comment, - ACTIONS(4509), 4, - sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [130977] = 5, - ACTIONS(3), 1, + [131128] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1714), 1, - anon_sym_LBRACE, - ACTIONS(8315), 1, - anon_sym_DOT_DOT2, + ACTIONS(4832), 1, + sym__entry_separator, + STATE(2293), 1, + aux_sym__types_body_repeat2, STATE(4622), 1, sym_comment, - ACTIONS(8317), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130994] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, - ACTIONS(8387), 1, + ACTIONS(8388), 2, anon_sym_RBRACK, - ACTIONS(8389), 1, - sym__entry_separator, + anon_sym_DOT_DOT, + [131145] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3092), 1, + ts_builtin_sym_end, + STATE(1381), 1, + aux_sym__block_body_repeat1, STATE(4623), 1, sym_comment, - STATE(5519), 1, - sym__expr_parenthesized_immediate, - [131013] = 6, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [131162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, - anon_sym_LBRACE, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(8391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8393), 1, - aux_sym__immediate_decimal_token5, STATE(4624), 1, sym_comment, - [131032] = 5, + ACTIONS(8390), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131175] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(3331), 1, - sym__blosure, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + STATE(4145), 1, + sym_parameter_parens, + STATE(4150), 1, + sym_parameter_bracks, STATE(4625), 1, sym_comment, - STATE(3210), 2, - sym_block, - sym_val_closure, - [131049] = 4, - ACTIONS(103), 1, + [131194] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2394), 1, - sym__entry_separator, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(8201), 1, + anon_sym_DOT_DOT2, STATE(4626), 1, sym_comment, - ACTIONS(2396), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131064] = 5, - ACTIONS(3), 1, + ACTIONS(8203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131211] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(461), 1, - ts_builtin_sym_end, - STATE(1373), 1, - aux_sym__block_body_repeat1, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4463), 1, + sym_block, STATE(4627), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [131081] = 3, - ACTIONS(3), 1, + [131230] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_COLON2, + ACTIONS(8392), 1, + anon_sym_RBRACE, + STATE(1475), 1, + aux_sym__types_body_repeat2, STATE(4628), 1, sym_comment, - ACTIONS(8395), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131094] = 4, - ACTIONS(103), 1, + [131249] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(1624), 1, sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_COLON2, + ACTIONS(8394), 1, + anon_sym_RBRACE, + STATE(1478), 1, + aux_sym__types_body_repeat2, STATE(4629), 1, sym_comment, - ACTIONS(2560), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131109] = 3, - ACTIONS(3), 1, + [131268] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2580), 1, + sym__entry_separator, STATE(4630), 1, sym_comment, - ACTIONS(8395), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2582), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [131122] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [131283] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2664), 1, + sym__entry_separator, STATE(4631), 1, sym_comment, - ACTIONS(8397), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2666), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [131135] = 3, + [131298] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4632), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8396), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131148] = 3, + [131311] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4633), 1, sym_comment, - ACTIONS(8136), 4, + ACTIONS(8398), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131161] = 3, - ACTIONS(3), 1, + [131324] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2676), 1, + sym__entry_separator, + ACTIONS(2678), 1, + anon_sym_RBRACE, + ACTIONS(2684), 1, + anon_sym_LPAREN2, + ACTIONS(2686), 1, + sym__unquoted_pattern_in_record, STATE(4634), 1, sym_comment, - ACTIONS(7430), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131174] = 3, + [131343] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4635), 1, sym_comment, - ACTIONS(8136), 4, + ACTIONS(8400), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131187] = 6, - ACTIONS(103), 1, + [131356] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_LPAREN2, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2574), 1, - sym__entry_separator, - ACTIONS(2576), 1, - anon_sym_RBRACE, STATE(4636), 1, sym_comment, - [131206] = 6, - ACTIONS(103), 1, + ACTIONS(8402), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131369] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6394), 1, + ACTIONS(2154), 1, sym__entry_separator, - ACTIONS(6396), 1, - anon_sym_RBRACE, STATE(4637), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - [131225] = 4, - ACTIONS(103), 1, + ACTIONS(2156), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [131384] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3220), 1, + sym_block, STATE(4638), 1, sym_comment, - ACTIONS(5387), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6513), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [131240] = 3, + [131403] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2578), 1, + sym__unquoted_pattern, STATE(4639), 1, sym_comment, - ACTIONS(8399), 4, - anon_sym_if, + ACTIONS(2576), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131418] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4640), 1, + sym_comment, + ACTIONS(8404), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8406), 1, sym__newline, + ACTIONS(8409), 1, anon_sym_PIPE, + ACTIONS(8412), 1, anon_sym_EQ_GT, - [131253] = 6, - ACTIONS(103), 1, + STATE(4641), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [131448] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_COLON2, - ACTIONS(8401), 1, + STATE(4642), 1, + sym_comment, + ACTIONS(8414), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1483), 1, - aux_sym__types_body_repeat2, - STATE(4640), 1, + [131461] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4643), 1, sym_comment, - [131272] = 4, - ACTIONS(103), 1, + ACTIONS(8416), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131474] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, - sym__entry_separator, - STATE(4641), 1, + STATE(4644), 1, + sym_comment, + ACTIONS(8418), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131487] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7522), 1, + anon_sym_LBRACK, + ACTIONS(7524), 1, + anon_sym_LPAREN, + STATE(4121), 1, + sym_parameter_parens, + STATE(4127), 1, + sym_parameter_bracks, + STATE(4645), 1, sym_comment, - ACTIONS(2460), 3, + [131506] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8270), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131287] = 3, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(4646), 1, + sym_comment, + [131525] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4642), 1, + STATE(4647), 1, sym_comment, - ACTIONS(4143), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8422), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131538] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7720), 1, anon_sym_LBRACE, - [131300] = 6, + STATE(3079), 1, + sym__blosure, + STATE(4648), 1, + sym_comment, + STATE(3078), 2, + sym_block, + sym_val_closure, + [131555] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(3549), 1, + STATE(3303), 1, + sym__blosure, + STATE(4649), 1, + sym_comment, + STATE(3078), 2, sym_block, - STATE(4643), 1, + sym_val_closure, + [131572] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4650), 1, sym_comment, - STATE(4649), 1, - aux_sym__repeat_newline, - [131319] = 6, - ACTIONS(103), 1, + ACTIONS(1561), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [131585] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_GT2, - ACTIONS(8405), 1, - anon_sym_AT2, - ACTIONS(8407), 1, + STATE(4651), 1, + sym_comment, + ACTIONS(1565), 4, + anon_sym_RBRACK, sym__entry_separator, - STATE(4644), 1, + sym__table_head_separator, + anon_sym_DOT2, + [131598] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3072), 1, + anon_sym_RPAREN, + ACTIONS(8424), 2, + sym__newline, + anon_sym_SEMI, + STATE(4652), 2, sym_comment, - STATE(4943), 1, - sym_param_completer, - [131338] = 3, + aux_sym__block_body_repeat1, + [131613] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_RBRACE, + ACTIONS(2608), 1, + anon_sym_LPAREN2, + ACTIONS(2610), 1, + sym__unquoted_pattern_in_record, + STATE(4653), 1, + sym_comment, + [131632] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4654), 1, + sym_comment, + ACTIONS(7474), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131645] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4645), 1, + STATE(4655), 1, sym_comment, - ACTIONS(4173), 4, - ts_builtin_sym_end, + ACTIONS(8427), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [131351] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131658] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(6398), 1, - sym__entry_separator, - ACTIONS(6400), 1, - anon_sym_RBRACE, - STATE(4646), 1, + STATE(4656), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - [131370] = 3, + ACTIONS(7636), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131671] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4647), 1, + ACTIONS(7331), 1, + sym__unquoted_pattern, + STATE(4657), 1, sym_comment, - ACTIONS(7710), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [131383] = 6, + ACTIONS(914), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131686] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3550), 1, + STATE(3556), 1, sym_block, - STATE(4648), 1, + STATE(4658), 1, sym_comment, - STATE(4651), 1, + STATE(4661), 1, aux_sym__repeat_newline, - [131402] = 6, + [131705] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(3551), 1, - sym_block, - STATE(4649), 1, + STATE(4659), 1, sym_comment, - [131421] = 3, + ACTIONS(8429), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131718] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4650), 1, - sym_comment, - ACTIONS(8409), 4, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131434] = 6, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(3558), 1, + sym_block, + STATE(4660), 1, + sym_comment, + STATE(4662), 1, + aux_sym__repeat_newline, + [131737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3553), 1, + STATE(3559), 1, sym_block, - STATE(4651), 1, + STATE(4661), 1, sym_comment, - [131453] = 6, + [131756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8149), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, - anon_sym_LPAREN, - STATE(4350), 1, - sym_parameter_parens, - STATE(4352), 1, - sym_parameter_bracks, - STATE(4652), 1, - sym_comment, - [131472] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2368), 1, - sym__entry_separator, - STATE(4653), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(3561), 1, + sym_block, + STATE(4662), 1, sym_comment, - ACTIONS(2370), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131487] = 3, + [131775] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4654), 1, + STATE(4663), 1, sym_comment, - ACTIONS(8409), 4, + ACTIONS(7652), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131500] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131788] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4655), 1, + ACTIONS(5460), 1, + anon_sym_COLON2, + STATE(4472), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4664), 1, sym_comment, - ACTIONS(8395), 4, + ACTIONS(5454), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131513] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2241), 1, - sym__entry_separator, - STATE(4656), 1, - sym_comment, - ACTIONS(2243), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131528] = 3, + sym__space, + [131805] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4657), 1, + STATE(4665), 1, sym_comment, - ACTIONS(8395), 4, + ACTIONS(8431), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131541] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DQUOTE, - STATE(4604), 1, - aux_sym_string_content_repeat1, - STATE(4658), 1, - sym_comment, - ACTIONS(7955), 2, - sym__escaped_str_content, - sym_escape_sequence, - [131558] = 6, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131818] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(3872), 1, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3254), 1, + STATE(3043), 1, sym_block, - STATE(4567), 1, - aux_sym__repeat_newline, - STATE(4659), 1, + STATE(4666), 1, sym_comment, - [131577] = 4, - ACTIONS(103), 1, + [131837] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(1909), 1, sym__entry_separator, - STATE(4660), 1, + STATE(4667), 1, sym_comment, - ACTIONS(2251), 3, + ACTIONS(1911), 3, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131592] = 6, + [131852] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3391), 1, + STATE(3376), 1, sym_block, - STATE(4661), 1, + STATE(4668), 1, sym_comment, - STATE(4663), 1, + STATE(4670), 1, aux_sym__repeat_newline, - [131611] = 6, + [131871] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3392), 1, + STATE(3377), 1, sym_block, - STATE(4662), 1, + STATE(4669), 1, sym_comment, - STATE(4664), 1, + STATE(4671), 1, aux_sym__repeat_newline, - [131630] = 6, + [131890] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3393), 1, + STATE(3378), 1, sym_block, - STATE(4663), 1, + STATE(4670), 1, sym_comment, - [131649] = 6, + [131909] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(501), 1, aux_sym__repeat_newline, - STATE(3395), 1, + STATE(3380), 1, sym_block, - STATE(4664), 1, + STATE(4671), 1, sym_comment, - [131668] = 3, + [131928] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4665), 1, + STATE(4672), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8433), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131681] = 3, + [131941] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4666), 1, - sym_comment, - ACTIONS(8397), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131694] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(5046), 1, + ACTIONS(1774), 1, + anon_sym_LBRACE, + ACTIONS(1776), 1, sym__unquoted_pattern, - STATE(4667), 1, - sym_comment, - ACTIONS(785), 2, - sym__newline, - anon_sym_SEMI, - [131711] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8234), 1, - sym__space, - STATE(4371), 1, - aux_sym_attribute_repeat1, - STATE(4668), 1, - sym_comment, - ACTIONS(8413), 2, - sym__newline, - anon_sym_SEMI, - [131728] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym__entry_separator, - STATE(4669), 1, + ACTIONS(8435), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8437), 1, + aux_sym__immediate_decimal_token5, + STATE(4673), 1, sym_comment, - ACTIONS(2259), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131743] = 4, - ACTIONS(103), 1, + [131960] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4670), 1, + ACTIONS(8301), 1, + anon_sym_LBRACE, + STATE(3425), 1, + sym__blosure, + STATE(4674), 1, sym_comment, - ACTIONS(5243), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6230), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [131758] = 4, - ACTIONS(103), 1, + STATE(3369), 2, + sym_block, + sym_val_closure, + [131977] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8415), 1, - anon_sym_LPAREN, - STATE(4671), 1, + STATE(4675), 1, sym_comment, - ACTIONS(8417), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [131773] = 6, - ACTIONS(103), 1, + ACTIONS(7486), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131990] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(2389), 1, sym__entry_separator, - ACTIONS(8195), 1, - anon_sym_LBRACK, - ACTIONS(8419), 1, - anon_sym_RBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(4672), 1, + STATE(4676), 1, sym_comment, - [131792] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8421), 1, + ACTIONS(2391), 2, anon_sym_RBRACK, - ACTIONS(8423), 1, - sym_hex_digit, - STATE(4673), 1, - sym_comment, - STATE(4868), 1, - aux_sym_val_binary_repeat1, - [131808] = 5, + anon_sym_RBRACE, + [132004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(8425), 1, - anon_sym_COLON, - STATE(503), 1, - aux_sym__repeat_newline, - STATE(4674), 1, - sym_comment, - [131824] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8427), 1, + ACTIONS(8439), 1, anon_sym_RBRACK, - STATE(4464), 1, - aux_sym__types_body_repeat2, - STATE(4675), 1, + ACTIONS(8441), 1, + anon_sym_DOT_DOT, + STATE(4677), 1, sym_comment, - [131840] = 3, + STATE(5169), 1, + sym__match_pattern_rest, + [132020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4676), 1, + STATE(4678), 1, sym_comment, - ACTIONS(8429), 3, + ACTIONS(8443), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [131852] = 3, + [132032] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4677), 1, - sym_comment, - ACTIONS(8431), 3, + ACTIONS(2903), 1, sym__newline, + ACTIONS(3176), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [131864] = 3, + STATE(501), 1, + aux_sym__repeat_newline, + STATE(4679), 1, + sym_comment, + [132048] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + anon_sym_POUND_BANG, + ACTIONS(8445), 1, + sym__newline, + STATE(4680), 2, + aux_sym__repeat_newline, + sym_comment, + [132062] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4678), 1, + STATE(1388), 1, + aux_sym__block_body_repeat1, + STATE(4681), 1, sym_comment, - ACTIONS(8140), 3, - ts_builtin_sym_end, + ACTIONS(155), 2, sym__newline, anon_sym_SEMI, - [131876] = 3, + [132076] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4679), 1, + STATE(4682), 1, sym_comment, - ACTIONS(8140), 3, + ACTIONS(8319), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131888] = 3, + [132088] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4680), 1, + STATE(4683), 1, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8323), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131900] = 3, + [132100] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4681), 1, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(8448), 1, + anon_sym_GT2, + STATE(4684), 1, sym_comment, - ACTIONS(8280), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131912] = 5, + STATE(5350), 1, + sym_param_completer, + [132116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_RBRACK, - ACTIONS(8435), 1, - anon_sym_DOT_DOT, - STATE(4682), 1, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + STATE(4685), 1, sym_comment, - STATE(5473), 1, - sym__match_pattern_rest, - [131928] = 3, + STATE(5048), 1, + sym__expr_parenthesized_immediate, + [132132] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4683), 1, + STATE(4686), 1, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8353), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131940] = 5, - ACTIONS(103), 1, + [132144] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(8437), 1, + ACTIONS(8450), 1, anon_sym_RBRACE, - STATE(1492), 1, + STATE(1486), 1, aux_sym__types_body_repeat2, - STATE(4684), 1, - sym_comment, - [131956] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2402), 1, - sym__entry_separator, - STATE(4685), 1, - sym_comment, - ACTIONS(2404), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [131970] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4686), 1, - sym_comment, - STATE(4881), 1, - sym_block, - [131986] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3466), 1, - sym__newline, - ACTIONS(3468), 1, - sym__space, - STATE(1414), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4687), 1, sym_comment, - [132002] = 5, + [132160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(8440), 1, - anon_sym_GT2, STATE(4688), 1, sym_comment, - STATE(5199), 1, - sym_param_completer, - [132018] = 3, + ACTIONS(8222), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132172] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4689), 1, sym_comment, - ACTIONS(8244), 3, + ACTIONS(8179), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132030] = 3, + [132184] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_LBRACE, + ACTIONS(1868), 1, + sym__unquoted_pattern, + ACTIONS(8452), 1, + aux_sym__immediate_decimal_token5, STATE(4690), 1, sym_comment, - ACTIONS(8246), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132042] = 5, - ACTIONS(103), 1, + [132200] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(8442), 1, - anon_sym_GT2, - STATE(1996), 1, + ACTIONS(8454), 1, + anon_sym_RBRACE, + STATE(1477), 1, aux_sym__types_body_repeat2, STATE(4691), 1, sym_comment, - [132058] = 3, + [132216] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4692), 1, sym_comment, - ACTIONS(8288), 3, + ACTIONS(8181), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132070] = 5, - ACTIONS(103), 1, + [132228] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8444), 1, - anon_sym_RBRACK, - STATE(1984), 1, - aux_sym__types_body_repeat2, STATE(4693), 1, sym_comment, - [132086] = 3, + ACTIONS(8183), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132240] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4694), 1, sym_comment, - ACTIONS(8147), 3, + ACTIONS(8185), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132098] = 5, - ACTIONS(3), 1, + [132252] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(5788), 1, - anon_sym_EQ, - STATE(3228), 1, - sym_param_completer, + ACTIONS(3468), 1, + sym__newline, + ACTIONS(3470), 1, + sym__space, + STATE(1410), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4695), 1, sym_comment, - [132114] = 3, + [132268] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4696), 1, sym_comment, - ACTIONS(8290), 3, + ACTIONS(8376), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132126] = 3, + [132280] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(5806), 1, + anon_sym_EQ, + STATE(3156), 1, + sym_param_completer, STATE(4697), 1, sym_comment, - ACTIONS(8299), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132138] = 5, + [132296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(5788), 1, - anon_sym_EQ, - STATE(3230), 1, - sym_param_completer, STATE(4698), 1, sym_comment, - [132154] = 5, - ACTIONS(3), 1, + ACTIONS(8228), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132308] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8446), 1, - anon_sym_RBRACK, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4688), 1, + sym_block, STATE(4699), 1, sym_comment, - STATE(4794), 1, - aux_sym_val_binary_repeat1, - [132170] = 4, - ACTIONS(103), 1, + [132324] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2354), 1, - sym__entry_separator, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(3141), 1, + sym_block, STATE(4700), 1, sym_comment, - ACTIONS(2356), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132184] = 5, + [132340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7837), 1, - anon_sym_if, - ACTIONS(8448), 1, - anon_sym_EQ_GT, STATE(4701), 1, sym_comment, - STATE(5328), 1, - sym_match_guard, - [132200] = 4, - ACTIONS(103), 1, + ACTIONS(4637), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132352] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2550), 1, - sym__entry_separator, STATE(4702), 1, sym_comment, - ACTIONS(2552), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132214] = 4, - ACTIONS(103), 1, + ACTIONS(4641), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132364] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8450), 1, - sym__table_head_separator, STATE(4703), 1, sym_comment, - ACTIONS(1588), 2, - anon_sym_RBRACK, - sym__entry_separator, - [132228] = 5, - ACTIONS(103), 1, + ACTIONS(8396), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132376] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(8348), 1, - anon_sym_RBRACE, - STATE(1486), 1, - aux_sym__types_body_repeat2, STATE(4704), 1, sym_comment, - [132244] = 3, + ACTIONS(4645), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132388] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4705), 1, sym_comment, - ACTIONS(8248), 3, + ACTIONS(8398), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132256] = 3, + [132400] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8458), 1, + anon_sym_COMMA, STATE(4706), 1, sym_comment, - ACTIONS(8256), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132268] = 4, - ACTIONS(103), 1, + ACTIONS(8456), 2, + anon_sym_RBRACK, + sym_hex_digit, + [132414] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8224), 1, - sym__entry_separator, + ACTIONS(8460), 1, + anon_sym_RBRACK, + ACTIONS(8462), 1, + sym_hex_digit, STATE(4707), 1, sym_comment, - ACTIONS(7422), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132282] = 3, - ACTIONS(3), 1, + STATE(4739), 1, + aux_sym_val_binary_repeat1, + [132430] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2459), 1, + sym__entry_separator, STATE(4708), 1, sym_comment, - ACTIONS(8185), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132294] = 3, - ACTIONS(3), 1, + ACTIONS(2461), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132444] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5421), 1, + sym__entry_separator, STATE(4709), 1, sym_comment, - ACTIONS(8185), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132306] = 5, - ACTIONS(3), 1, + ACTIONS(5419), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132458] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1832), 1, - anon_sym_LBRACE, - ACTIONS(1834), 1, - sym__unquoted_pattern, - ACTIONS(8452), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2463), 1, + sym__entry_separator, STATE(4710), 1, sym_comment, - [132322] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(8454), 1, + ACTIONS(2465), 2, anon_sym_RBRACK, - STATE(2056), 1, - aux_sym__types_body_repeat2, + anon_sym_RBRACE, + [132472] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4711), 1, sym_comment, - [132338] = 5, - ACTIONS(103), 1, + ACTIONS(8400), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132484] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(7636), 1, sym__entry_separator, - ACTIONS(8456), 1, - anon_sym_RBRACK, - STATE(4672), 1, - aux_sym__types_body_repeat2, STATE(4712), 1, sym_comment, - [132354] = 4, - ACTIONS(103), 1, + ACTIONS(7742), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132498] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(8429), 1, sym__entry_separator, STATE(4713), 1, sym_comment, - ACTIONS(5826), 2, + ACTIONS(8464), 2, anon_sym_RBRACK, - anon_sym_GT2, - [132368] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [132512] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8458), 1, - anon_sym_LPAREN, + ACTIONS(7652), 1, + sym__entry_separator, STATE(4714), 1, sym_comment, - ACTIONS(8460), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [132382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(7748), 2, anon_sym_RBRACK, - ACTIONS(8464), 1, - sym_hex_digit, - STATE(4715), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [132396] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [132526] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LPAREN, - STATE(4716), 1, + STATE(4715), 1, sym_comment, - ACTIONS(8329), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [132410] = 5, + ACTIONS(8402), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(8466), 1, anon_sym_LBRACK, - STATE(4675), 1, + STATE(5010), 1, sym_val_list, - STATE(4717), 1, + STATE(4716), 2, sym_comment, - STATE(4731), 1, aux_sym__table_body_repeat1, - [132426] = 4, - ACTIONS(103), 1, + [132552] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4717), 1, + sym_comment, + ACTIONS(8414), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132564] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_GT2, STATE(4718), 1, sym_comment, - ACTIONS(8469), 2, - anon_sym_AT2, - sym__entry_separator, - [132440] = 5, - ACTIONS(103), 1, + ACTIONS(8187), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132576] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(8401), 1, - anon_sym_RBRACE, - STATE(1481), 1, - aux_sym__types_body_repeat2, STATE(4719), 1, sym_comment, - [132456] = 5, + ACTIONS(8283), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132588] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(5632), 1, - anon_sym_EQ, - STATE(3236), 1, - sym_param_completer, STATE(4720), 1, sym_comment, - [132472] = 5, - ACTIONS(103), 1, + ACTIONS(8283), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132600] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8471), 1, - anon_sym_RBRACK, - STATE(4532), 1, - aux_sym__types_body_repeat2, STATE(4721), 1, sym_comment, - [132488] = 5, + ACTIONS(8285), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(8473), 1, - anon_sym_GT2, STATE(4722), 1, sym_comment, - STATE(5515), 1, - sym_param_completer, - [132504] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4723), 1, - sym_comment, - ACTIONS(8250), 3, + ACTIONS(8285), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132516] = 4, - ACTIONS(103), 1, + [132624] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8323), 1, + ACTIONS(8469), 1, + sym__table_head_separator, + STATE(4723), 1, + sym_comment, + ACTIONS(1616), 2, + anon_sym_RBRACK, sym__entry_separator, + [132638] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4724), 1, sym_comment, - ACTIONS(8475), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132530] = 4, - ACTIONS(103), 1, + ACTIONS(8289), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132650] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8189), 1, - sym__entry_separator, STATE(4725), 1, sym_comment, - ACTIONS(8477), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132544] = 4, - ACTIONS(103), 1, + ACTIONS(8289), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132662] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8254), 1, - sym__entry_separator, STATE(4726), 1, sym_comment, - ACTIONS(8479), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132558] = 3, + ACTIONS(8333), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132674] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4727), 1, sym_comment, - ACTIONS(8134), 3, + ACTIONS(8333), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [132570] = 5, - ACTIONS(103), 1, + anon_sym_SEMI, + [132686] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_COLON2, - STATE(1504), 1, - aux_sym__types_body_repeat2, STATE(4728), 1, sym_comment, - [132586] = 5, - ACTIONS(103), 1, + ACTIONS(8339), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132698] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(8481), 1, - anon_sym_RBRACK, - STATE(1987), 1, - aux_sym__types_body_repeat2, STATE(4729), 1, sym_comment, - [132602] = 5, - ACTIONS(103), 1, + ACTIONS(8339), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132710] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4788), 1, - sym__entry_separator, - ACTIONS(8483), 1, - anon_sym_RBRACE, - STATE(2266), 1, - aux_sym__types_body_repeat2, STATE(4730), 1, sym_comment, - [132618] = 4, + ACTIONS(8357), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_LBRACK, - STATE(5091), 1, - sym_val_list, - STATE(4731), 2, + STATE(4731), 1, sym_comment, - aux_sym__table_body_repeat1, - [132632] = 5, + ACTIONS(8357), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(8488), 1, - anon_sym_COLON, - STATE(503), 1, - aux_sym__repeat_newline, STATE(4732), 1, sym_comment, - [132648] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(3096), 1, - sym_block, - STATE(4733), 1, - sym_comment, - [132664] = 3, + ACTIONS(8359), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132746] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4734), 1, + STATE(4733), 1, sym_comment, - ACTIONS(8409), 3, + ACTIONS(8359), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132676] = 3, - ACTIONS(3), 1, + [132758] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4735), 1, + ACTIONS(6271), 1, + sym__entry_separator, + STATE(4734), 1, sym_comment, - ACTIONS(8490), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [132688] = 5, - ACTIONS(103), 1, + ACTIONS(6269), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132772] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_DOT_DOT, - ACTIONS(8492), 1, + ACTIONS(4542), 1, + sym__entry_separator, + ACTIONS(8471), 1, anon_sym_RBRACK, - ACTIONS(8495), 1, + STATE(2078), 1, + aux_sym__types_body_repeat2, + STATE(4735), 1, + sym_comment, + [132788] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5094), 1, sym__entry_separator, + ACTIONS(8473), 1, + anon_sym_GT2, + STATE(2435), 1, + aux_sym__types_body_repeat2, STATE(4736), 1, sym_comment, - [132704] = 3, - ACTIONS(3), 1, + [132804] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4809), 1, + sym__entry_separator, + ACTIONS(4826), 1, + anon_sym_RBRACE, + STATE(2274), 1, + aux_sym__types_body_repeat2, STATE(4737), 1, sym_comment, - ACTIONS(8173), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132716] = 3, + [132820] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4738), 1, sym_comment, - ACTIONS(4639), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132728] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4739), 1, - sym_comment, - ACTIONS(8333), 3, + ACTIONS(8433), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132740] = 3, + [132832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4740), 1, + ACTIONS(8475), 1, + anon_sym_RBRACK, + ACTIONS(8477), 1, + sym_hex_digit, + STATE(4739), 2, sym_comment, - ACTIONS(8175), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132752] = 3, + aux_sym_val_binary_repeat1, + [132846] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5171), 1, + sym__unquoted_pattern, + STATE(4740), 1, + sym_comment, + STATE(5079), 1, + sym__expr_parenthesized_immediate, + [132862] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8224), 1, + anon_sym_LPAREN, STATE(4741), 1, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8226), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [132876] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4742), 1, + sym_comment, + ACTIONS(8187), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132764] = 5, - ACTIONS(103), 1, + [132888] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4788), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(4805), 1, - anon_sym_RBRACE, - STATE(2267), 1, + ACTIONS(8480), 1, + anon_sym_GT2, + STATE(2002), 1, aux_sym__types_body_repeat2, - STATE(4742), 1, - sym_comment, - [132780] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__entry_separator, STATE(4743), 1, sym_comment, - ACTIONS(5885), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [132794] = 3, + [132904] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4744), 1, sym_comment, - ACTIONS(8181), 3, - ts_builtin_sym_end, + ACTIONS(8482), 3, sym__newline, anon_sym_SEMI, - [132806] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [132916] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8498), 1, - anon_sym_RBRACK, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(8484), 1, + anon_sym_GT2, + STATE(2421), 1, + aux_sym__types_body_repeat2, STATE(4745), 1, sym_comment, - STATE(4751), 1, - aux_sym_val_binary_repeat1, - [132822] = 3, + [132932] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8486), 1, + anon_sym_RBRACK, STATE(4746), 1, sym_comment, - ACTIONS(8136), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132834] = 4, - ACTIONS(103), 1, + STATE(4750), 1, + aux_sym_val_binary_repeat1, + [132948] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8344), 1, + ACTIONS(8488), 1, + anon_sym_RBRACK, + ACTIONS(8491), 1, + anon_sym_DOT_DOT, + ACTIONS(8493), 1, sym__entry_separator, STATE(4747), 1, sym_comment, - ACTIONS(8500), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132848] = 4, - ACTIONS(103), 1, + [132964] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8344), 1, - sym__entry_separator, STATE(4748), 1, sym_comment, - ACTIONS(8500), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132862] = 4, - ACTIONS(103), 1, + ACTIONS(8496), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [132976] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(1624), 1, sym__entry_separator, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(1485), 1, + aux_sym__types_body_repeat2, STATE(4749), 1, sym_comment, - ACTIONS(8502), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132876] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4750), 1, - sym_comment, - ACTIONS(8181), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132888] = 5, + [132992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8462), 1, sym_hex_digit, - ACTIONS(8504), 1, + ACTIONS(8501), 1, anon_sym_RBRACK, - STATE(4715), 1, + STATE(4739), 1, aux_sym_val_binary_repeat1, - STATE(4751), 1, + STATE(4750), 1, sym_comment, - [132904] = 5, + [133008] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(5046), 1, + ACTIONS(5076), 1, sym__unquoted_pattern, - STATE(4752), 1, + STATE(4751), 1, sym_comment, - STATE(5052), 1, + STATE(5081), 1, sym__expr_parenthesized_immediate, - [132920] = 5, + [133024] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4752), 1, + sym_comment, + ACTIONS(8144), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, + ACTIONS(4118), 1, anon_sym_AT2, - ACTIONS(8506), 1, + ACTIONS(8503), 1, anon_sym_GT2, STATE(4753), 1, sym_comment, - STATE(5486), 1, + STATE(5500), 1, sym_param_completer, - [132936] = 4, - ACTIONS(103), 1, + [133052] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5255), 1, + ACTIONS(4542), 1, sym__entry_separator, + ACTIONS(8505), 1, + anon_sym_RBRACK, + STATE(2088), 1, + aux_sym__types_body_repeat2, STATE(4754), 1, sym_comment, - ACTIONS(5820), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [132950] = 3, + [133068] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8507), 1, + anon_sym_BANG, STATE(4755), 1, sym_comment, - ACTIONS(8183), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132962] = 5, - ACTIONS(103), 1, + ACTIONS(1462), 2, + sym__table_head_separator, + anon_sym_DOT2, + [133082] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(8508), 1, - anon_sym_RBRACK, - STATE(2082), 1, - aux_sym__types_body_repeat2, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(5539), 1, + anon_sym_EQ, + STATE(3232), 1, + sym_param_completer, STATE(4756), 1, sym_comment, - [132978] = 5, + [133098] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8510), 1, - anon_sym_DOT, - ACTIONS(8512), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(8509), 1, + anon_sym_GT2, STATE(4757), 1, sym_comment, - [132994] = 3, + STATE(5264), 1, + sym_param_completer, + [133114] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(5539), 1, + anon_sym_EQ, + STATE(3244), 1, + sym_param_completer, STATE(4758), 1, sym_comment, - ACTIONS(8183), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133006] = 3, - ACTIONS(3), 1, + [133130] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8511), 1, + anon_sym_RBRACK, + STATE(4516), 1, + aux_sym__types_body_repeat2, STATE(4759), 1, sym_comment, - ACTIONS(8136), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133018] = 3, - ACTIONS(3), 1, + [133146] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_RBRACE, + ACTIONS(1624), 1, + sym__entry_separator, + STATE(1491), 1, + aux_sym__types_body_repeat2, STATE(4760), 1, sym_comment, - ACTIONS(8335), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133030] = 3, + [133162] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4761), 1, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8197), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133042] = 3, + [133174] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_LBRACK, + STATE(4716), 1, + aux_sym__table_body_repeat1, STATE(4762), 1, sym_comment, - ACTIONS(8240), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133054] = 3, + STATE(4834), 1, + sym_val_list, + [133190] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8513), 1, + anon_sym_RBRACK, STATE(4763), 1, sym_comment, - ACTIONS(8514), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [133066] = 5, + STATE(4768), 1, + aux_sym_val_binary_repeat1, + [133206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(7011), 1, - sym__unquoted_pattern_in_record, STATE(4764), 1, sym_comment, - STATE(5080), 1, - sym__expr_parenthesized_immediate, - [133082] = 5, - ACTIONS(3), 1, + ACTIONS(8515), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [133218] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8516), 1, - anon_sym_RBRACK, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8517), 1, + anon_sym_GT2, + STATE(2006), 1, + aux_sym__types_body_repeat2, STATE(4765), 1, sym_comment, - STATE(4768), 1, - aux_sym_val_binary_repeat1, - [133098] = 5, - ACTIONS(103), 1, + [133234] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(6288), 1, sym__entry_separator, - ACTIONS(8518), 1, - anon_sym_RBRACE, - STATE(1478), 1, - aux_sym__types_body_repeat2, STATE(4766), 1, sym_comment, - [133114] = 3, - ACTIONS(103), 1, + ACTIONS(6286), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133248] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4767), 1, sym_comment, - ACTIONS(864), 3, + ACTIONS(8208), 3, + ts_builtin_sym_end, sym__newline, - sym__space, - anon_sym_COLON2, - [133126] = 5, + anon_sym_SEMI, + [133260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8462), 1, sym_hex_digit, - ACTIONS(8521), 1, + ACTIONS(8519), 1, anon_sym_RBRACK, - STATE(4715), 1, + STATE(4739), 1, aux_sym_val_binary_repeat1, STATE(4768), 1, sym_comment, - [133142] = 4, - ACTIONS(3), 1, + [133276] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8523), 1, - anon_sym_BANG, + ACTIONS(8345), 1, + sym__entry_separator, STATE(4769), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [133156] = 3, - ACTIONS(3), 1, + ACTIONS(7420), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133290] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2427), 1, + sym__entry_separator, STATE(4770), 1, sym_comment, - ACTIONS(3131), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [133168] = 3, + ACTIONS(2429), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133304] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4771), 1, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8189), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133180] = 4, - ACTIONS(103), 1, + [133316] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1714), 1, + ACTIONS(4388), 1, sym__entry_separator, + ACTIONS(8521), 1, + anon_sym_RBRACK, + STATE(1991), 1, + aux_sym__types_body_repeat2, STATE(4772), 1, sym_comment, - ACTIONS(1588), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [133194] = 3, + [133332] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4773), 1, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8210), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133206] = 5, - ACTIONS(3), 1, + [133344] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8525), 1, - anon_sym_export, - ACTIONS(8527), 1, - anon_sym_def, - ACTIONS(8529), 1, - anon_sym_extern, + ACTIONS(2467), 1, + sym__entry_separator, STATE(4774), 1, sym_comment, - [133222] = 5, - ACTIONS(103), 1, + ACTIONS(2469), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133358] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(2471), 1, sym__entry_separator, - ACTIONS(8531), 1, - anon_sym_RBRACE, - STATE(1475), 1, - aux_sym__types_body_repeat2, STATE(4775), 1, sym_comment, - [133238] = 3, - ACTIONS(3), 1, + ACTIONS(2473), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133372] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(8523), 1, + anon_sym_RBRACE, + STATE(1480), 1, + aux_sym__types_body_repeat2, STATE(4776), 1, sym_comment, - ACTIONS(8173), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133250] = 5, + [133388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8533), 1, - anon_sym_RBRACK, + ACTIONS(3096), 1, + anon_sym_RPAREN, STATE(4777), 1, sym_comment, - STATE(4779), 1, - aux_sym_val_binary_repeat1, - [133266] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4778), 1, - sym_comment, - ACTIONS(8535), 3, + ACTIONS(2620), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [133278] = 5, + [133402] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(5241), 1, + sym__unquoted_pattern_in_record, + STATE(4778), 1, + sym_comment, + STATE(5041), 1, + sym__expr_parenthesized_immediate, + [133418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8462), 1, sym_hex_digit, - ACTIONS(8537), 1, + ACTIONS(8525), 1, anon_sym_RBRACK, - STATE(4715), 1, - aux_sym_val_binary_repeat1, STATE(4779), 1, sym_comment, - [133294] = 3, - ACTIONS(3), 1, + STATE(4783), 1, + aux_sym_val_binary_repeat1, + [133434] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8527), 1, + anon_sym_RBRACK, + STATE(1970), 1, + aux_sym__types_body_repeat2, STATE(4780), 1, sym_comment, - ACTIONS(8187), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133306] = 3, + [133450] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4781), 1, sym_comment, - ACTIONS(8409), 3, + ACTIONS(8142), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133318] = 3, - ACTIONS(3), 1, + [133462] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8529), 1, + anon_sym_RBRACK, + STATE(1988), 1, + aux_sym__types_body_repeat2, STATE(4782), 1, sym_comment, - ACTIONS(8356), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133330] = 4, - ACTIONS(103), 1, + [133478] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, - anon_sym_LPAREN, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8531), 1, + anon_sym_RBRACK, + STATE(4739), 1, + aux_sym_val_binary_repeat1, STATE(4783), 1, sym_comment, - ACTIONS(8541), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [133344] = 3, + [133494] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1776), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8533), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8535), 1, + aux_sym__immediate_decimal_token5, STATE(4784), 1, sym_comment, - ACTIONS(8138), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133356] = 3, + [133510] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4785), 1, sym_comment, - ACTIONS(8142), 3, + ACTIONS(8299), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133368] = 5, - ACTIONS(103), 1, + [133522] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(8543), 1, - anon_sym_RBRACE, - STATE(1476), 1, - aux_sym__types_body_repeat2, STATE(4786), 1, sym_comment, - [133384] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8545), 1, - anon_sym_RBRACK, - STATE(1970), 1, - aux_sym__types_body_repeat2, - STATE(4787), 1, - sym_comment, - [133400] = 5, + ACTIONS(8299), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133534] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8547), 1, + ACTIONS(8537), 1, anon_sym_RBRACK, - STATE(4788), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT, + STATE(4787), 1, sym_comment, - STATE(4793), 1, - aux_sym_val_binary_repeat1, - [133416] = 4, - ACTIONS(103), 1, + STATE(5246), 1, + sym__match_pattern_rest, + [133550] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5265), 1, sym__entry_separator, - STATE(4789), 1, + STATE(4788), 1, sym_comment, - ACTIONS(5842), 2, + ACTIONS(5816), 2, anon_sym_RBRACK, anon_sym_GT2, - [133430] = 5, + [133564] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + STATE(4789), 1, + sym_comment, + ACTIONS(8283), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8549), 1, - anon_sym_COLON, - STATE(503), 1, - aux_sym__repeat_newline, + anon_sym_SEMI, + [133576] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4790), 1, sym_comment, - [133446] = 5, - ACTIONS(103), 1, + ACTIONS(8283), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133588] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8551), 1, - anon_sym_RBRACK, - STATE(1985), 1, - aux_sym__types_body_repeat2, STATE(4791), 1, sym_comment, - [133462] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8195), 1, - anon_sym_LBRACK, - STATE(1932), 1, - aux_sym__types_body_repeat2, - STATE(4792), 1, - sym_comment, - [133478] = 5, + ACTIONS(8285), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8462), 1, sym_hex_digit, - ACTIONS(8553), 1, + ACTIONS(8541), 1, anon_sym_RBRACK, - STATE(4715), 1, - aux_sym_val_binary_repeat1, - STATE(4793), 1, + STATE(4792), 1, sym_comment, - [133494] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8555), 1, - anon_sym_RBRACK, - STATE(4715), 1, + STATE(4795), 1, aux_sym_val_binary_repeat1, - STATE(4794), 1, - sym_comment, - [133510] = 3, + [133616] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4795), 1, + STATE(4793), 1, sym_comment, - ACTIONS(8138), 3, + ACTIONS(8285), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133522] = 3, + [133628] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4796), 1, + STATE(4794), 1, sym_comment, - ACTIONS(8140), 3, + ACTIONS(8289), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133534] = 3, + [133640] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4797), 1, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8543), 1, + anon_sym_RBRACK, + STATE(4739), 1, + aux_sym_val_binary_repeat1, + STATE(4795), 1, sym_comment, - ACTIONS(8557), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [133546] = 4, - ACTIONS(103), 1, + [133656] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(5292), 1, sym__entry_separator, - STATE(4798), 1, + STATE(4796), 1, sym_comment, - ACTIONS(2632), 2, + ACTIONS(5834), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [133560] = 3, + anon_sym_GT2, + [133670] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4799), 1, + STATE(4797), 1, sym_comment, - ACTIONS(8559), 3, + ACTIONS(8545), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [133572] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + [133682] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4800), 1, + STATE(4798), 1, sym_comment, - ACTIONS(8140), 3, + ACTIONS(8289), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133584] = 5, + [133694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1846), 1, - sym__unquoted_pattern, - STATE(4801), 1, + ACTIONS(8507), 1, + anon_sym_QMARK2, + STATE(4799), 1, sym_comment, - STATE(5070), 1, - sym__expr_parenthesized_immediate, - [133600] = 3, + ACTIONS(1462), 2, + sym__table_head_separator, + anon_sym_DOT2, + [133708] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4802), 1, + STATE(4800), 1, sym_comment, - ACTIONS(8142), 3, + ACTIONS(8238), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133612] = 4, - ACTIONS(103), 1, + [133720] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8561), 1, - anon_sym_DQUOTE, - STATE(4803), 1, + ACTIONS(4388), 1, + sym__entry_separator, + ACTIONS(8547), 1, + anon_sym_RBRACK, + STATE(1990), 1, + aux_sym__types_body_repeat2, + STATE(4801), 1, sym_comment, - ACTIONS(8563), 2, - sym__escaped_str_content, - sym_escape_sequence, - [133626] = 3, + [133736] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8549), 1, + anon_sym_GT2, + STATE(4802), 1, + sym_comment, + ACTIONS(8551), 2, + anon_sym_AT2, + sym__entry_separator, + [133750] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, + STATE(4803), 1, sym_comment, - ACTIONS(8142), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133638] = 4, - ACTIONS(103), 1, + ACTIONS(4633), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [133762] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5281), 1, + ACTIONS(1913), 1, sym__entry_separator, - STATE(4805), 1, + STATE(4804), 1, sym_comment, - ACTIONS(5846), 2, + ACTIONS(1915), 2, anon_sym_RBRACK, - anon_sym_GT2, - [133652] = 3, + anon_sym_DOT_DOT, + [133776] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(5808), 1, + anon_sym_EQ, + STATE(3061), 1, + sym_param_completer, + STATE(4805), 1, + sym_comment, + [133792] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4806), 1, sym_comment, - ACTIONS(8142), 3, - ts_builtin_sym_end, + ACTIONS(8553), 3, sym__newline, - anon_sym_SEMI, - [133664] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + [133804] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4807), 1, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8238), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133676] = 3, - ACTIONS(3), 1, + [133816] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8555), 1, + anon_sym_RBRACK, + STATE(4520), 1, + aux_sym__types_body_repeat2, STATE(4808), 1, sym_comment, - ACTIONS(8362), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133688] = 5, - ACTIONS(3), 1, + [133832] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_LBRACE, - ACTIONS(1786), 1, - sym__unquoted_pattern, - ACTIONS(8360), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5350), 1, + sym__entry_separator, STATE(4809), 1, sym_comment, - [133704] = 3, + ACTIONS(5878), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [133846] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4118), 1, + anon_sym_AT2, + ACTIONS(8557), 1, + anon_sym_GT2, STATE(4810), 1, sym_comment, - ACTIONS(8147), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133716] = 3, + STATE(5344), 1, + sym_param_completer, + [133862] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4811), 1, sym_comment, - ACTIONS(8395), 3, + ACTIONS(8195), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133728] = 3, + [133874] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_LPAREN2, + ACTIONS(7303), 1, + sym__unquoted_pattern_in_record, STATE(4812), 1, sym_comment, - ACTIONS(8362), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133740] = 3, + STATE(5039), 1, + sym__expr_parenthesized_immediate, + [133890] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4813), 1, sym_comment, - ACTIONS(8364), 3, + ACTIONS(8325), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133752] = 3, - ACTIONS(3), 1, + [133902] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8347), 1, + sym__entry_separator, STATE(4814), 1, sym_comment, - ACTIONS(8335), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133764] = 3, - ACTIONS(3), 1, + ACTIONS(8559), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133916] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8351), 1, + sym__entry_separator, STATE(4815), 1, sym_comment, - ACTIONS(8335), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133776] = 3, - ACTIONS(3), 1, + ACTIONS(8561), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133930] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8390), 1, + sym__entry_separator, STATE(4816), 1, sym_comment, - ACTIONS(8175), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133788] = 3, + ACTIONS(8491), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133944] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4817), 1, sym_comment, - ACTIONS(8395), 3, + ACTIONS(8325), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133800] = 3, - ACTIONS(3), 1, + [133956] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7742), 1, + anon_sym_DOT_DOT, + ACTIONS(7908), 1, + anon_sym_RBRACK, + ACTIONS(7910), 1, + sym__entry_separator, STATE(4818), 1, sym_comment, - ACTIONS(8366), 3, + [133972] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4819), 1, + sym_comment, + ACTIONS(8327), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133812] = 5, - ACTIONS(103), 1, + [133984] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(8565), 1, + ACTIONS(7748), 1, + anon_sym_DOT_DOT, + ACTIONS(7922), 1, anon_sym_RBRACK, - STATE(1972), 1, - aux_sym__types_body_repeat2, - STATE(4819), 1, + ACTIONS(7925), 1, + sym__entry_separator, + STATE(4820), 1, sym_comment, - [133828] = 3, + [134000] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4820), 1, + STATE(4821), 1, sym_comment, - ACTIONS(8395), 3, + ACTIONS(8240), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133840] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - sym__entry_separator, - STATE(4821), 1, - sym_comment, - ACTIONS(1899), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133854] = 3, + [134012] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4822), 1, sym_comment, - ACTIONS(8395), 3, + ACTIONS(8327), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133866] = 3, + [134024] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4823), 1, sym_comment, - ACTIONS(8147), 3, + ACTIONS(8333), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133878] = 5, - ACTIONS(103), 1, + [134036] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4564), 1, - sym_block, STATE(4824), 1, sym_comment, - [133894] = 5, - ACTIONS(103), 1, + ACTIONS(8333), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134048] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(8567), 1, - anon_sym_RBRACK, - STATE(1973), 1, - aux_sym__types_body_repeat2, STATE(4825), 1, sym_comment, - [133910] = 3, + ACTIONS(8240), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134060] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8563), 1, + anon_sym_RBRACK, STATE(4826), 1, sym_comment, - ACTIONS(2116), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [133922] = 3, - ACTIONS(3), 1, + STATE(4856), 1, + aux_sym_val_binary_repeat1, + [134076] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(8565), 1, + anon_sym_RBRACE, + STATE(1481), 1, + aux_sym__types_body_repeat2, STATE(4827), 1, sym_comment, - ACTIONS(8397), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133934] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4581), 1, - sym_block, - STATE(4828), 1, - sym_comment, - [133950] = 3, + [134092] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, + STATE(4828), 1, sym_comment, - ACTIONS(8397), 3, + ACTIONS(8339), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133962] = 4, - ACTIONS(103), 1, + [134104] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8152), 1, + sym__entry_separator, + STATE(4829), 1, + sym_comment, + ACTIONS(8567), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134118] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(8152), 1, sym__entry_separator, STATE(4830), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(8567), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [133976] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [134132] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8156), 1, + sym__entry_separator, STATE(4831), 1, sym_comment, - ACTIONS(8368), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133988] = 5, - ACTIONS(103), 1, + ACTIONS(8569), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134146] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(5247), 1, sym__entry_separator, - ACTIONS(8569), 1, + STATE(4832), 1, + sym_comment, + ACTIONS(5891), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(2412), 1, + [134160] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__entry_separator, + STATE(4833), 1, + sym_comment, + ACTIONS(5893), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134174] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8571), 1, + anon_sym_RBRACK, + STATE(4646), 1, aux_sym__types_body_repeat2, - STATE(4832), 1, + STATE(4834), 1, sym_comment, - [134004] = 3, + [134190] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4833), 1, + STATE(4835), 1, sym_comment, - ACTIONS(8307), 3, + ACTIONS(8339), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134016] = 3, + [134202] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4834), 1, + ACTIONS(1790), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8573), 1, + anon_sym_DOT, + ACTIONS(8575), 1, + aux_sym__immediate_decimal_token5, + STATE(4836), 1, sym_comment, - ACTIONS(8397), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134028] = 5, - ACTIONS(103), 1, + [134218] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2642), 1, + STATE(4837), 1, + sym_comment, + ACTIONS(2666), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [134230] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2986), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(3003), 1, + STATE(4698), 1, sym_block, - STATE(4835), 1, + STATE(4838), 1, sym_comment, - [134044] = 3, + [134246] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4836), 1, - sym_comment, - ACTIONS(8136), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134056] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7698), 1, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8577), 1, anon_sym_RBRACK, - ACTIONS(7700), 1, - anon_sym_DOT_DOT, - ACTIONS(7706), 1, - sym__entry_separator, - STATE(4837), 1, + STATE(4707), 1, + aux_sym_val_binary_repeat1, + STATE(4839), 1, sym_comment, - [134072] = 5, + [134262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3277), 1, - anon_sym_SEMI, - STATE(503), 1, + ACTIONS(8579), 1, + anon_sym_COLON, + STATE(501), 1, aux_sym__repeat_newline, - STATE(4838), 1, + STATE(4840), 1, sym_comment, - [134088] = 5, - ACTIONS(103), 1, + [134278] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(5094), 1, sym__entry_separator, - ACTIONS(8571), 1, + ACTIONS(8581), 1, anon_sym_GT2, - STATE(2415), 1, + STATE(2432), 1, aux_sym__types_body_repeat2, - STATE(4839), 1, - sym_comment, - [134104] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7727), 1, - anon_sym_RBRACK, - ACTIONS(7730), 1, - anon_sym_DOT_DOT, - ACTIONS(7732), 1, - sym__entry_separator, - STATE(4840), 1, - sym_comment, - [134120] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8523), 1, - anon_sym_QMARK2, STATE(4841), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [134134] = 3, - ACTIONS(3), 1, + [134294] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(8583), 1, + anon_sym_GT2, + STATE(2433), 1, + aux_sym__types_body_repeat2, STATE(4842), 1, sym_comment, - ACTIONS(8136), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134146] = 4, - ACTIONS(3), 1, + [134310] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_RPAREN, + ACTIONS(8585), 1, + anon_sym_DQUOTE, STATE(4843), 1, sym_comment, - ACTIONS(2748), 2, - sym__newline, - anon_sym_SEMI, - [134160] = 4, - ACTIONS(103), 1, + ACTIONS(8587), 2, + sym__escaped_str_content, + sym_escape_sequence, + [134324] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(4370), 1, sym__entry_separator, + ACTIONS(8589), 1, + anon_sym_RBRACK, + STATE(4499), 1, + aux_sym__types_body_repeat2, STATE(4844), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134174] = 5, - ACTIONS(103), 1, + [134340] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(5308), 1, sym__entry_separator, - ACTIONS(8573), 1, - anon_sym_RBRACE, - STATE(1479), 1, - aux_sym__types_body_repeat2, STATE(4845), 1, sym_comment, - [134190] = 5, + ACTIONS(5914), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - sym__newline, - ACTIONS(8575), 1, - anon_sym_COLON, - STATE(503), 1, - aux_sym__repeat_newline, STATE(4846), 1, sym_comment, - [134206] = 3, + ACTIONS(8359), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134366] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4847), 1, sym_comment, - ACTIONS(2336), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134218] = 3, + ACTIONS(8359), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134378] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4848), 1, sym_comment, - ACTIONS(8264), 3, + ACTIONS(8361), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134230] = 5, - ACTIONS(103), 1, + [134390] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_RBRACK, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4461), 1, + sym_block, STATE(4849), 1, sym_comment, - [134246] = 5, - ACTIONS(103), 1, + [134406] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_RBRACE, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(7011), 1, - sym__unquoted_pattern_in_record, STATE(4850), 1, sym_comment, - [134262] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1905), 1, - sym__entry_separator, - STATE(4851), 1, - sym_comment, - ACTIONS(1907), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [134276] = 3, + ACTIONS(3096), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134418] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4852), 1, + STATE(4851), 1, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8361), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134288] = 4, - ACTIONS(103), 1, + [134430] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2390), 1, - sym__entry_separator, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4463), 1, + sym_block, + STATE(4852), 1, + sym_comment, + [134446] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(3043), 1, + sym_block, STATE(4853), 1, sym_comment, - ACTIONS(2392), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134302] = 3, - ACTIONS(3), 1, + [134462] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1738), 1, + sym__entry_separator, STATE(4854), 1, sym_comment, - ACTIONS(8270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134314] = 3, + ACTIONS(1616), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134476] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4855), 1, sym_comment, - ACTIONS(8397), 3, + ACTIONS(8363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134326] = 5, + [134488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8591), 1, anon_sym_RBRACK, - ACTIONS(8579), 1, - anon_sym_DOT_DOT, + STATE(4739), 1, + aux_sym_val_binary_repeat1, STATE(4856), 1, sym_comment, - STATE(5260), 1, - sym__match_pattern_rest, - [134342] = 3, + [134504] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4857), 1, sym_comment, - ACTIONS(8191), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134354] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4858), 1, - sym_comment, - ACTIONS(8325), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134366] = 5, - ACTIONS(103), 1, + ACTIONS(2348), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134516] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8407), 1, + ACTIONS(8216), 1, sym__entry_separator, - ACTIONS(8581), 1, + ACTIONS(8593), 1, anon_sym_AT2, - STATE(4859), 1, + STATE(4858), 1, sym_comment, - STATE(4943), 1, + STATE(4989), 1, sym_param_completer, - [134382] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5060), 1, - sym__entry_separator, - ACTIONS(8583), 1, - anon_sym_GT2, - STATE(2421), 1, - aux_sym__types_body_repeat2, - STATE(4860), 1, - sym_comment, - [134398] = 5, + [134532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8585), 1, - anon_sym_RBRACK, - STATE(4861), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, + STATE(4859), 1, sym_comment, - STATE(4879), 1, - aux_sym_val_binary_repeat1, - [134414] = 3, + STATE(5068), 1, + sym__expr_parenthesized_immediate, + [134548] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4862), 1, + STATE(4860), 1, sym_comment, - ACTIONS(8274), 3, + ACTIONS(8363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134426] = 3, - ACTIONS(103), 1, + [134560] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4863), 1, + ACTIONS(1933), 1, + sym__entry_separator, + STATE(4861), 1, sym_comment, - ACTIONS(2662), 3, + ACTIONS(1935), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [134438] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [134574] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(811), 1, + anon_sym_RBRACK, + ACTIONS(914), 1, sym__entry_separator, - STATE(4864), 1, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, + STATE(4862), 1, sym_comment, - ACTIONS(5344), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134452] = 3, - ACTIONS(3), 1, + [134590] = 3, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4865), 1, + STATE(4863), 1, sym_comment, - ACTIONS(8587), 3, + ACTIONS(890), 3, sym__newline, + sym__space, + anon_sym_COLON2, + [134602] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - [134464] = 5, - ACTIONS(103), 1, + STATE(4716), 1, + aux_sym__table_body_repeat1, + STATE(4808), 1, + sym_val_list, + STATE(4864), 1, + sym_comment, + [134618] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4858), 1, - sym_block, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8595), 1, + anon_sym_GT2, + STATE(1987), 1, + aux_sym__types_body_repeat2, + STATE(4865), 1, + sym_comment, + [134634] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8597), 1, + anon_sym_GT2, + STATE(2004), 1, + aux_sym__types_body_repeat2, STATE(4866), 1, sym_comment, - [134480] = 4, - ACTIONS(3), 1, + [134650] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_COMMA, + ACTIONS(4542), 1, + sym__entry_separator, + ACTIONS(8599), 1, + anon_sym_RBRACK, + STATE(2087), 1, + aux_sym__types_body_repeat2, STATE(4867), 1, sym_comment, - ACTIONS(8589), 2, - anon_sym_RBRACK, - sym_hex_digit, - [134494] = 5, - ACTIONS(3), 1, + [134666] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8423), 1, - sym_hex_digit, - ACTIONS(8593), 1, - anon_sym_RBRACK, - STATE(4715), 1, - aux_sym_val_binary_repeat1, + ACTIONS(8601), 1, + anon_sym_POUND_BANG, + ACTIONS(8603), 1, + sym__newline, + STATE(4680), 1, + aux_sym__repeat_newline, STATE(4868), 1, sym_comment, - [134510] = 4, - ACTIONS(3), 1, + [134682] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1402), 1, - aux_sym__block_body_repeat1, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8605), 1, + anon_sym_RBRACK, + STATE(1981), 1, + aux_sym__types_body_repeat2, STATE(4869), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [134524] = 3, - ACTIONS(103), 1, + [134698] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(8392), 1, + anon_sym_RBRACE, + STATE(1475), 1, + aux_sym__types_body_repeat2, STATE(4870), 1, sym_comment, - ACTIONS(1887), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [134536] = 3, + [134714] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8607), 1, + anon_sym_export, + ACTIONS(8609), 1, + anon_sym_def, + ACTIONS(8611), 1, + anon_sym_extern, STATE(4871), 1, sym_comment, - ACTIONS(8268), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134548] = 5, - ACTIONS(103), 1, + [134730] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1590), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(4542), 1, sym__entry_separator, - STATE(1487), 1, + ACTIONS(8613), 1, + anon_sym_RBRACK, + STATE(2091), 1, aux_sym__types_body_repeat2, STATE(4872), 1, sym_comment, - [134564] = 5, - ACTIONS(103), 1, + [134746] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(8595), 1, - anon_sym_GT2, - STATE(1978), 1, + ACTIONS(8394), 1, + anon_sym_RBRACE, + STATE(1479), 1, aux_sym__types_body_repeat2, STATE(4873), 1, sym_comment, - [134580] = 4, - ACTIONS(103), 1, + [134762] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_POUND_BANG, - ACTIONS(8597), 1, - sym__newline, - STATE(4874), 2, - aux_sym__repeat_newline, + STATE(4874), 1, sym_comment, - [134594] = 3, - ACTIONS(3), 1, + ACTIONS(2361), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134774] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2710), 1, + sym__entry_separator, STATE(4875), 1, sym_comment, - ACTIONS(8268), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134606] = 5, + ACTIONS(2712), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134788] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(8600), 1, - anon_sym_GT2, STATE(4876), 1, sym_comment, - STATE(5245), 1, - sym_param_completer, - [134622] = 5, - ACTIONS(103), 1, + ACTIONS(8327), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134800] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8602), 1, - anon_sym_GT2, - STATE(1981), 1, - aux_sym__types_body_repeat2, STATE(4877), 1, sym_comment, - [134638] = 3, + ACTIONS(8327), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134812] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_LBRACE, + ACTIONS(1790), 1, + sym__unquoted_pattern, + ACTIONS(8264), 1, + aux_sym__immediate_decimal_token5, STATE(4878), 1, sym_comment, - ACTIONS(8604), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134650] = 5, + [134828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8462), 1, sym_hex_digit, - ACTIONS(8606), 1, + ACTIONS(8615), 1, anon_sym_RBRACK, - STATE(4715), 1, - aux_sym_val_binary_repeat1, STATE(4879), 1, sym_comment, - [134666] = 5, - ACTIONS(3), 1, + STATE(4913), 1, + aux_sym_val_binary_repeat1, + [134844] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, + ACTIONS(1624), 1, + sym__entry_separator, + ACTIONS(8617), 1, + anon_sym_RBRACE, + STATE(1482), 1, + aux_sym__types_body_repeat2, STATE(4880), 1, sym_comment, - STATE(5075), 1, - sym__expr_parenthesized_immediate, - [134682] = 3, + [134860] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4881), 1, sym_comment, - ACTIONS(8342), 3, - ts_builtin_sym_end, + ACTIONS(8620), 3, sym__newline, anon_sym_SEMI, - [134694] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [134872] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - ACTIONS(8608), 1, - anon_sym_RBRACK, - STATE(4433), 1, - aux_sym__types_body_repeat2, STATE(4882), 1, sym_comment, - [134710] = 5, + ACTIONS(8622), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8610), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8612), 1, - aux_sym__immediate_decimal_token5, STATE(4883), 1, sym_comment, - [134726] = 4, - ACTIONS(103), 1, + ACTIONS(8244), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134896] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2426), 1, - sym__entry_separator, STATE(4884), 1, sym_comment, - ACTIONS(2428), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134740] = 4, - ACTIONS(103), 1, + ACTIONS(8412), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134908] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2554), 1, + ACTIONS(4809), 1, sym__entry_separator, + ACTIONS(4824), 1, + anon_sym_RBRACE, + STATE(2269), 1, + aux_sym__types_body_repeat2, STATE(4885), 1, sym_comment, - ACTIONS(2556), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134754] = 5, + [134924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_LBRACK, - STATE(4721), 1, - sym_val_list, - STATE(4731), 1, - aux_sym__table_body_repeat1, STATE(4886), 1, sym_comment, - [134770] = 5, - ACTIONS(103), 1, + ACTIONS(8624), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134936] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - ACTIONS(8614), 1, - anon_sym_RBRACK, - STATE(2030), 1, - aux_sym__types_body_repeat2, STATE(4887), 1, sym_comment, - [134786] = 3, + ACTIONS(4626), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134948] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(8626), 1, + anon_sym_COLON, + STATE(501), 1, + aux_sym__repeat_newline, STATE(4888), 1, sym_comment, - ACTIONS(8616), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134798] = 5, - ACTIONS(3), 1, + [134964] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_AT2, - ACTIONS(5786), 1, - anon_sym_EQ, - STATE(3222), 1, - sym_param_completer, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8270), 1, + anon_sym_LBRACK, + STATE(1934), 1, + aux_sym__types_body_repeat2, STATE(4889), 1, sym_comment, - [134814] = 3, + [134980] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4890), 1, sym_comment, - ACTIONS(8618), 3, + ACTIONS(8628), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [134826] = 5, - ACTIONS(103), 1, + [134992] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4786), 1, - anon_sym_RBRACE, - ACTIONS(4788), 1, - sym__entry_separator, - STATE(2271), 1, - aux_sym__types_body_repeat2, STATE(4891), 1, sym_comment, - [134842] = 3, + ACTIONS(8630), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [135004] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7872), 1, + anon_sym_if, + ACTIONS(8632), 1, + anon_sym_EQ_GT, STATE(4892), 1, sym_comment, - ACTIONS(8258), 3, - ts_builtin_sym_end, + STATE(5192), 1, + sym_match_guard, + [135020] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4893), 1, + sym_comment, + ACTIONS(8634), 3, sym__newline, anon_sym_SEMI, - [134854] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [135032] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4525), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(8620), 1, + ACTIONS(8636), 1, anon_sym_RBRACK, - STATE(2031), 1, + STATE(1992), 1, aux_sym__types_body_repeat2, - STATE(4893), 1, - sym_comment, - [134870] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6333), 1, - sym__entry_separator, STATE(4894), 1, sym_comment, - ACTIONS(6331), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134884] = 3, + [135048] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4895), 1, sym_comment, - ACTIONS(4614), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134896] = 3, + ACTIONS(8365), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135060] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4896), 1, sym_comment, - ACTIONS(4618), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134908] = 5, - ACTIONS(103), 1, + ACTIONS(8365), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135072] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4809), 1, sym__entry_separator, - ACTIONS(8622), 1, - anon_sym_GT2, - STATE(1968), 1, + ACTIONS(8638), 1, + anon_sym_RBRACE, + STATE(2275), 1, aux_sym__types_body_repeat2, STATE(4897), 1, sym_comment, - [134924] = 3, - ACTIONS(3), 1, + [135088] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4898), 1, - sym_comment, - ACTIONS(4635), 3, - anon_sym_LBRACK, + ACTIONS(8640), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134936] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5060), 1, - sym__entry_separator, - ACTIONS(8624), 1, - anon_sym_GT2, - STATE(2413), 1, - aux_sym__types_body_repeat2, - STATE(4899), 1, + STATE(4898), 1, sym_comment, - [134952] = 3, + ACTIONS(8642), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [135102] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, + STATE(4899), 1, sym_comment, - ACTIONS(8626), 3, + ACTIONS(8250), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [134964] = 5, - ACTIONS(103), 1, + [135114] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(8628), 1, + ACTIONS(8158), 1, anon_sym_RBRACE, - STATE(1488), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, + STATE(4900), 1, + sym_comment, + [135130] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(501), 1, + aux_sym__repeat_newline, STATE(4901), 1, sym_comment, - [134980] = 3, + [135146] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4902), 1, sym_comment, - ACTIONS(8147), 3, + ACTIONS(8250), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134992] = 5, - ACTIONS(103), 1, + [135158] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - ACTIONS(8630), 1, - anon_sym_RBRACK, - STATE(1983), 1, - aux_sym__types_body_repeat2, STATE(4903), 1, sym_comment, - [135008] = 3, + ACTIONS(8252), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135170] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4904), 1, sym_comment, - ACTIONS(8632), 3, + ACTIONS(8252), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [135020] = 5, - ACTIONS(103), 1, + [135182] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8634), 1, - anon_sym_POUND_BANG, - ACTIONS(8636), 1, - sym__newline, - STATE(4874), 1, - aux_sym__repeat_newline, + ACTIONS(8646), 1, + anon_sym_export, + ACTIONS(8648), 1, + anon_sym_def, + ACTIONS(8650), 1, + anon_sym_extern, STATE(4905), 1, sym_comment, - [135036] = 5, + [135198] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5132), 1, - sym__unquoted_pattern, STATE(4906), 1, sym_comment, - STATE(4962), 1, - sym__expr_parenthesized_immediate, - [135052] = 5, + ACTIONS(8238), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8638), 1, - anon_sym_export, - ACTIONS(8640), 1, - anon_sym_def, - ACTIONS(8642), 1, - anon_sym_extern, STATE(4907), 1, sym_comment, - [135068] = 5, - ACTIONS(3), 1, + ACTIONS(8238), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135222] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6968), 1, - anon_sym_LPAREN2, + ACTIONS(2397), 1, + sym__entry_separator, STATE(4908), 1, sym_comment, - STATE(4994), 1, - sym__expr_parenthesized_immediate, - [135084] = 3, - ACTIONS(3), 1, + ACTIONS(2399), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135236] = 3, + ACTIONS(105), 1, anon_sym_POUND, STATE(4909), 1, sym_comment, - ACTIONS(8193), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135096] = 5, + ACTIONS(1903), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [135248] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, - ACTIONS(5184), 1, - sym__unquoted_pattern_in_record, STATE(4910), 1, sym_comment, - STATE(5042), 1, - sym__expr_parenthesized_immediate, - [135112] = 4, - ACTIONS(103), 1, + ACTIONS(8367), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135260] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(1624), 1, sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_COLON2, + STATE(1494), 1, + aux_sym__types_body_repeat2, STATE(4911), 1, sym_comment, - ACTIONS(7700), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [135126] = 4, - ACTIONS(103), 1, + [135276] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8242), 1, - sym__entry_separator, STATE(4912), 1, sym_comment, - ACTIONS(8644), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [135140] = 4, - ACTIONS(103), 1, + ACTIONS(8254), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135288] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7512), 1, - sym__entry_separator, + ACTIONS(8462), 1, + sym_hex_digit, + ACTIONS(8652), 1, + anon_sym_RBRACK, + STATE(4739), 1, + aux_sym_val_binary_repeat1, STATE(4913), 1, sym_comment, - ACTIONS(7730), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [135154] = 3, + [135304] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4914), 1, sym_comment, - ACTIONS(8646), 3, + ACTIONS(8654), 3, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [135166] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [135316] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, - sym__entry_separator, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1864), 1, + sym__unquoted_pattern, STATE(4915), 1, sym_comment, - ACTIONS(2476), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135180] = 4, - ACTIONS(103), 1, + STATE(4987), 1, + sym__expr_parenthesized_immediate, + [135332] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(4388), 1, sym__entry_separator, + ACTIONS(8656), 1, + anon_sym_RBRACK, + STATE(1974), 1, + aux_sym__types_body_repeat2, STATE(4916), 1, sym_comment, - ACTIONS(2480), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135194] = 4, - ACTIONS(103), 1, + [135348] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - sym__entry_separator, + ACTIONS(1788), 1, + anon_sym_LBRACE, + ACTIONS(7572), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8658), 1, + anon_sym_DOT, STATE(4917), 1, sym_comment, - ACTIONS(5912), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [135208] = 3, - ACTIONS(3), 1, + [135364] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2393), 1, + sym__entry_separator, STATE(4918), 1, sym_comment, - ACTIONS(8256), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135220] = 5, - ACTIONS(103), 1, + ACTIONS(2395), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135378] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4388), 1, sym__entry_separator, - ACTIONS(8648), 1, + ACTIONS(8660), 1, anon_sym_RBRACK, - STATE(2003), 1, + STATE(1977), 1, aux_sym__types_body_repeat2, STATE(4919), 1, sym_comment, - [135236] = 5, + [135394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_LBRACE, - ACTIONS(7632), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8650), 1, - anon_sym_DOT, STATE(4920), 1, sym_comment, - [135252] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(8256), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8652), 1, - anon_sym_COLON, - STATE(503), 1, - aux_sym__repeat_newline, + anon_sym_SEMI, + [135406] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8662), 1, + anon_sym_LPAREN, STATE(4921), 1, sym_comment, - [135268] = 3, - ACTIONS(3), 1, + ACTIONS(8664), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [135420] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2584), 1, + sym__entry_separator, STATE(4922), 1, sym_comment, - ACTIONS(4610), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [135280] = 5, - ACTIONS(103), 1, + ACTIONS(2586), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135434] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(2588), 1, sym__entry_separator, - ACTIONS(8286), 1, - anon_sym_RBRACE, - STATE(1491), 1, - aux_sym__types_body_repeat2, STATE(4923), 1, sym_comment, - [135296] = 4, - ACTIONS(103), 1, + ACTIONS(2590), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135448] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2386), 1, - sym__entry_separator, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(8666), 1, + anon_sym_COLON, + STATE(501), 1, + aux_sym__repeat_newline, STATE(4924), 1, sym_comment, - ACTIONS(2388), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135310] = 4, - ACTIONS(103), 1, + [135464] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6171), 1, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(914), 1, sym__entry_separator, + ACTIONS(7303), 1, + sym__unquoted_pattern_in_record, STATE(4925), 1, sym_comment, - ACTIONS(6169), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135324] = 5, - ACTIONS(103), 1, + [135480] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8354), 1, + ACTIONS(2455), 1, sym__entry_separator, - ACTIONS(8654), 1, - anon_sym_COLON, STATE(4926), 1, sym_comment, - STATE(4942), 1, - sym__collection_annotation, - [135340] = 4, - ACTIONS(103), 1, + ACTIONS(2457), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135494] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(2455), 1, sym__entry_separator, STATE(4927), 1, sym_comment, - ACTIONS(2384), 2, + ACTIONS(2457), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [135354] = 3, + [135508] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4928), 1, sym_comment, - ACTIONS(8364), 3, - ts_builtin_sym_end, + ACTIONS(8668), 3, sym__newline, anon_sym_SEMI, - [135366] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [135520] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(3381), 1, - sym_block, + ACTIONS(8236), 1, + sym__entry_separator, + ACTIONS(8670), 1, + anon_sym_COLON, STATE(4929), 1, sym_comment, - [135379] = 4, + STATE(4961), 1, + sym__collection_annotation, + [135536] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1806), 1, - sym__unquoted_pattern, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(8672), 1, + anon_sym_COLON, + STATE(501), 1, + aux_sym__repeat_newline, STATE(4930), 1, sym_comment, - [135392] = 4, + [135552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4796), 1, - sym_block, STATE(4931), 1, sym_comment, - [135405] = 4, - ACTIONS(103), 1, + ACTIONS(8195), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135564] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8656), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4920), 1, + sym_block, STATE(4932), 1, sym_comment, - STATE(5062), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135418] = 4, + [135577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1234), 1, + ACTIONS(1738), 1, anon_sym_LBRACE, - ACTIONS(2608), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, STATE(4933), 1, sym_comment, - [135431] = 4, + [135590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, - ACTIONS(2574), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, + ACTIONS(1868), 1, + sym__unquoted_pattern, STATE(4934), 1, sym_comment, - [135444] = 4, + [135603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4709), 1, + STATE(4583), 1, sym_block, STATE(4935), 1, sym_comment, - [135457] = 4, - ACTIONS(3), 1, + [135616] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4678), 1, - sym_block, + ACTIONS(8674), 1, + anon_sym_LPAREN2, + ACTIONS(8676), 1, + aux_sym__record_key_token1, STATE(4936), 1, sym_comment, - [135470] = 4, + [135629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4800), 1, + STATE(4603), 1, sym_block, STATE(4937), 1, sym_comment, - [135483] = 4, + [135642] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4403), 1, - sym_block, + ACTIONS(6627), 1, + anon_sym_DOLLAR2, + ACTIONS(8678), 1, + anon_sym_RBRACK, STATE(4938), 1, sym_comment, - [135496] = 4, - ACTIONS(3), 1, + [135655] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4404), 1, - sym_block, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1258), 1, + sym__entry_separator, STATE(4939), 1, sym_comment, - [135509] = 4, - ACTIONS(3), 1, + [135668] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4368), 1, - sym_block, + ACTIONS(1234), 1, + anon_sym_RBRACE, + ACTIONS(1250), 1, + sym__entry_separator, STATE(4940), 1, sym_comment, - [135522] = 4, + [135681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4593), 1, - sym_block, STATE(4941), 1, sym_comment, - [135535] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8658), 1, + ACTIONS(8551), 2, anon_sym_GT2, - ACTIONS(8660), 1, - sym__entry_separator, + anon_sym_AT2, + [135692] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4732), 1, + sym_block, STATE(4942), 1, sym_comment, - [135548] = 4, - ACTIONS(103), 1, + [135705] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8662), 1, - anon_sym_GT2, - ACTIONS(8664), 1, - sym__entry_separator, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4899), 1, + sym_block, STATE(4943), 1, sym_comment, - [135561] = 4, - ACTIONS(103), 1, + [135718] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8666), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4542), 1, + sym__entry_separator, + STATE(2190), 1, + aux_sym__types_body_repeat2, STATE(4944), 1, sym_comment, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, - [135574] = 4, - ACTIONS(3), 1, + [135731] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4594), 1, - sym_block, + ACTIONS(8680), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4945), 1, sym_comment, - [135587] = 4, - ACTIONS(103), 1, + STATE(4967), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135744] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7979), 1, - anon_sym_RBRACE, - ACTIONS(7981), 1, - sym__entry_separator, + ACTIONS(8682), 1, + sym__newline, + ACTIONS(8684), 1, + sym__space, STATE(4946), 1, sym_comment, - [135600] = 4, + [135757] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(1659), 1, + sym__unquoted_pattern, + ACTIONS(2104), 1, anon_sym_LBRACE, - STATE(4820), 1, - sym_block, STATE(4947), 1, sym_comment, - [135613] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8668), 1, - anon_sym_RBRACK, - ACTIONS(8670), 1, - sym__entry_separator, - STATE(4948), 1, - sym_comment, - [135626] = 4, + [135770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4802), 1, + STATE(4604), 1, sym_block, + STATE(4948), 1, + sym_comment, + [135783] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3484), 1, + sym__space, + STATE(1414), 1, + aux_sym_pipe_element_repeat1, STATE(4949), 1, sym_comment, - [135639] = 4, - ACTIONS(103), 1, + [135796] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4525), 1, - sym__entry_separator, - STATE(2183), 1, - aux_sym__types_body_repeat2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4733), 1, + sym_block, STATE(4950), 1, sym_comment, - [135652] = 4, + [135809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(1258), 1, anon_sym_LBRACE, - STATE(4679), 1, - sym_block, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(4951), 1, sym_comment, - [135665] = 4, - ACTIONS(103), 1, + [135822] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8672), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1250), 1, + anon_sym_LBRACE, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(4952), 1, sym_comment, - STATE(5062), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135678] = 4, - ACTIONS(3), 1, + [135835] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4822), 1, - sym_block, + ACTIONS(3809), 1, + sym__entry_separator, + ACTIONS(8686), 1, + anon_sym_RBRACE, STATE(4953), 1, sym_comment, - [135691] = 4, + [135848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4369), 1, - sym_block, + ACTIONS(6627), 1, + anon_sym_DOLLAR2, + ACTIONS(8689), 1, + anon_sym_RBRACK, STATE(4954), 1, sym_comment, - [135704] = 4, - ACTIONS(3), 1, + [135861] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8512), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8691), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4955), 1, sym_comment, - [135717] = 4, - ACTIONS(3), 1, + STATE(4967), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135874] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4804), 1, - sym_block, + ACTIONS(2114), 1, + sym__entry_separator, + ACTIONS(2116), 1, + anon_sym_RBRACE, STATE(4956), 1, sym_comment, - [135730] = 4, - ACTIONS(3), 1, + [135887] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4602), 1, - sym_block, + ACTIONS(8693), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4957), 1, sym_comment, - [135743] = 4, + STATE(4967), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4370), 1, + STATE(4819), 1, sym_block, STATE(4958), 1, sym_comment, - [135756] = 4, - ACTIONS(103), 1, + [135913] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8674), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8695), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4959), 1, sym_comment, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, - [135769] = 4, - ACTIONS(103), 1, + STATE(4967), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135926] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - anon_sym_RBRACK, - ACTIONS(8678), 1, - sym__entry_separator, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4822), 1, + sym_block, STATE(4960), 1, sym_comment, - [135782] = 4, - ACTIONS(3), 1, + [135939] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6602), 1, - anon_sym_DOLLAR2, - ACTIONS(8680), 1, - anon_sym_RBRACK, + ACTIONS(8697), 1, + anon_sym_GT2, + ACTIONS(8699), 1, + sym__entry_separator, STATE(4961), 1, sym_comment, - [135795] = 4, - ACTIONS(103), 1, + [135952] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8682), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4944), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8701), 1, + anon_sym_RBRACE, + ACTIONS(8703), 1, + sym__entry_separator, STATE(4962), 1, sym_comment, - [135808] = 4, - ACTIONS(103), 1, + [135965] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8684), 1, - anon_sym_RBRACE, - ACTIONS(8686), 1, - sym__entry_separator, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4823), 1, + sym_block, STATE(4963), 1, sym_comment, - [135821] = 4, + [135978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2598), 1, + ACTIONS(2576), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2578), 1, sym__unquoted_pattern, STATE(4964), 1, sym_comment, - [135834] = 4, - ACTIONS(3), 1, + [135991] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_LBRACE, - ACTIONS(1963), 1, - sym__unquoted_pattern, + ACTIONS(8039), 1, + anon_sym_RBRACE, + ACTIONS(8041), 1, + sym__entry_separator, STATE(4965), 1, sym_comment, - [135847] = 4, - ACTIONS(103), 1, + [136004] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8688), 1, - anon_sym_RBRACE, - ACTIONS(8690), 1, + ACTIONS(5423), 1, + anon_sym_RBRACK, + ACTIONS(5425), 1, sym__entry_separator, STATE(4966), 1, sym_comment, - [135860] = 4, - ACTIONS(103), 1, + [136017] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8692), 1, - anon_sym_RBRACE, - ACTIONS(8694), 1, - sym__entry_separator, - STATE(4967), 1, + ACTIONS(8705), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4967), 2, sym_comment, - [135873] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136028] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, - ACTIONS(2584), 1, - anon_sym_LBRACE, + ACTIONS(8708), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4968), 1, sym_comment, - [135886] = 4, - ACTIONS(103), 1, + STATE(5040), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136041] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - anon_sym_COLON2, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5231), 1, + anon_sym_LPAREN2, STATE(4969), 1, sym_comment, - [135899] = 4, - ACTIONS(103), 1, + STATE(5413), 1, + sym__expr_parenthesized_immediate, + [136054] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8696), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8710), 1, + sym_identifier, + ACTIONS(8712), 1, + anon_sym_DOLLAR, STATE(4970), 1, sym_comment, - STATE(4985), 1, - aux_sym__unquoted_with_expr_repeat1, - [135912] = 4, - ACTIONS(3), 1, + [136067] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4390), 1, - sym_block, + ACTIONS(8714), 1, + anon_sym_RBRACE, + ACTIONS(8716), 1, + sym__entry_separator, STATE(4971), 1, sym_comment, - [135925] = 4, + [136080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4391), 1, + STATE(4824), 1, sym_block, STATE(4972), 1, sym_comment, - [135938] = 4, - ACTIONS(103), 1, + [136093] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8092), 1, - anon_sym_RBRACE, - ACTIONS(8094), 1, - sym__entry_separator, + ACTIONS(914), 1, + anon_sym_COLON2, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, STATE(4973), 1, sym_comment, - [135951] = 4, - ACTIONS(103), 1, + [136106] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4788), 1, - sym__entry_separator, - STATE(2281), 1, - aux_sym__types_body_repeat2, + ACTIONS(8718), 1, + aux_sym__unquoted_with_expr_token1, STATE(4974), 1, sym_comment, - [135964] = 4, - ACTIONS(103), 1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, + [136119] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8698), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(4975), 1, sym_comment, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, - [135977] = 4, - ACTIONS(3), 1, + STATE(5283), 1, + sym__expr_parenthesized_immediate, + [136132] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8700), 1, - anon_sym_DASH2, + ACTIONS(8720), 1, + aux_sym__unquoted_with_expr_token1, STATE(4976), 1, sym_comment, - STATE(5222), 1, - sym_param_short_flag, - [135990] = 4, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, + [136145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4406), 1, + STATE(4588), 1, sym_block, STATE(4977), 1, sym_comment, - [136003] = 4, + [136158] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4408), 1, - sym_block, STATE(4978), 1, sym_comment, - [136016] = 4, + ACTIONS(1557), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4412), 1, + STATE(4895), 1, sym_block, STATE(4979), 1, sym_comment, - [136029] = 4, - ACTIONS(103), 1, + [136182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5946), 1, - sym__entry_separator, - ACTIONS(6720), 1, - anon_sym_GT2, + ACTIONS(1921), 1, + anon_sym_LBRACE, + ACTIONS(1923), 1, + sym__unquoted_pattern, STATE(4980), 1, sym_comment, - [136042] = 4, + [136195] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6602), 1, - anon_sym_DOLLAR2, - ACTIONS(8702), 1, - anon_sym_RBRACK, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4846), 1, + sym_block, STATE(4981), 1, sym_comment, - [136055] = 4, - ACTIONS(103), 1, + [136208] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__entry_separator, - ACTIONS(6463), 1, - anon_sym_RBRACK, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4589), 1, + sym_block, STATE(4982), 1, sym_comment, - [136068] = 4, + [136221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4413), 1, + STATE(4896), 1, sym_block, STATE(4983), 1, sym_comment, - [136081] = 4, - ACTIONS(103), 1, + [136234] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(6290), 1, + anon_sym_RBRACK, + ACTIONS(6292), 1, sym__entry_separator, - STATE(2144), 1, - aux_sym__types_body_repeat2, STATE(4984), 1, sym_comment, - [136094] = 4, - ACTIONS(103), 1, + [136247] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8704), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4847), 1, + sym_block, STATE(4985), 1, sym_comment, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, - [136107] = 4, - ACTIONS(103), 1, + [136260] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8706), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4952), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(8722), 1, + anon_sym_RBRACE, + ACTIONS(8724), 1, + sym__entry_separator, STATE(4986), 1, sym_comment, - [136120] = 4, - ACTIONS(3), 1, + [136273] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4741), 1, - sym_block, + ACTIONS(8726), 1, + aux_sym__unquoted_with_expr_token1, STATE(4987), 1, sym_comment, - [136133] = 4, - ACTIONS(103), 1, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, + [136286] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7512), 1, - sym__entry_separator, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4848), 1, + sym_block, STATE(4988), 1, sym_comment, - [136146] = 3, - ACTIONS(3), 1, + [136299] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8728), 1, + anon_sym_GT2, + ACTIONS(8730), 1, + sym__entry_separator, STATE(4989), 1, sym_comment, - ACTIONS(1478), 2, - sym__table_head_separator, - anon_sym_DOT2, - [136157] = 4, - ACTIONS(3), 1, + [136312] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4650), 1, - sym_block, + ACTIONS(7908), 1, + anon_sym_RBRACK, + ACTIONS(7910), 1, + sym__entry_separator, STATE(4990), 1, sym_comment, - [136170] = 4, + [136325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4423), 1, + STATE(4851), 1, sym_block, STATE(4991), 1, sym_comment, - [136183] = 4, - ACTIONS(3), 1, + [136338] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4655), 1, - sym_block, + ACTIONS(2660), 1, + sym__entry_separator, + ACTIONS(2662), 1, + anon_sym_RBRACE, STATE(4992), 1, sym_comment, - [136196] = 4, - ACTIONS(3), 1, + [136351] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4424), 1, - sym_block, + ACTIONS(7369), 1, + sym__entry_separator, + ACTIONS(8732), 1, + anon_sym_RBRACK, STATE(4993), 1, sym_comment, - [136209] = 4, - ACTIONS(103), 1, + [136364] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8708), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(7387), 1, + sym__entry_separator, + ACTIONS(8734), 1, + anon_sym_RBRACK, STATE(4994), 1, sym_comment, - STATE(5020), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136222] = 4, - ACTIONS(103), 1, + [136377] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - STATE(1504), 1, - aux_sym__types_body_repeat2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4537), 1, + sym_block, STATE(4995), 1, sym_comment, - [136235] = 4, + [136390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2590), 1, - anon_sym_LBRACE, - ACTIONS(2596), 1, - sym__unquoted_pattern, + ACTIONS(1790), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8575), 1, + aux_sym__immediate_decimal_token5, STATE(4996), 1, sym_comment, - [136248] = 4, + [136403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(3372), 1, + STATE(4719), 1, sym_block, STATE(4997), 1, sym_comment, - [136261] = 3, - ACTIONS(3), 1, + [136416] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8736), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4998), 1, sym_comment, - ACTIONS(8710), 2, - sym__newline, - anon_sym_SEMI, - [136272] = 4, - ACTIONS(103), 1, + STATE(5022), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136429] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7319), 1, - sym__entry_separator, - ACTIONS(8712), 1, - anon_sym_RBRACK, STATE(4999), 1, sym_comment, - [136285] = 3, - ACTIONS(103), 1, + ACTIONS(8738), 2, + anon_sym_RBRACK, + sym_hex_digit, + [136440] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8714), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5000), 2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4902), 1, + sym_block, + STATE(5000), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [136296] = 3, - ACTIONS(103), 1, + [136453] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4363), 1, + sym_block, STATE(5001), 1, sym_comment, - ACTIONS(1965), 2, - anon_sym_POUND_BANG, - sym__newline, - [136307] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7343), 1, - sym__entry_separator, - ACTIONS(8717), 1, - anon_sym_RBRACK, - STATE(5002), 1, - sym_comment, - [136320] = 4, + [136466] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4657), 1, + STATE(3322), 1, sym_block, + STATE(5002), 1, + sym_comment, + [136479] = 3, + ACTIONS(105), 1, + anon_sym_POUND, STATE(5003), 1, sym_comment, - [136333] = 4, - ACTIONS(103), 1, + ACTIONS(2126), 2, + anon_sym_POUND_BANG, + sym__newline, + [136490] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, - sym__entry_separator, - ACTIONS(8719), 1, - anon_sym_RBRACE, + ACTIONS(1868), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8740), 1, + aux_sym__immediate_decimal_token5, STATE(5004), 1, sym_comment, - [136346] = 3, - ACTIONS(3), 1, + [136503] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8742), 1, + aux_sym__unquoted_with_expr_token1, STATE(5005), 1, sym_comment, - ACTIONS(1514), 2, - sym__table_head_separator, - anon_sym_DOT2, - [136357] = 4, - ACTIONS(103), 1, + STATE(5051), 1, + aux_sym__unquoted_with_expr_repeat1, + [136516] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8108), 1, - anon_sym_RBRACE, - ACTIONS(8110), 1, - sym__entry_separator, - STATE(5006), 1, + ACTIONS(8744), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 2, sym_comment, - [136370] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_with_expr_repeat1, + [136527] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5948), 1, - sym__entry_separator, - ACTIONS(6722), 1, - anon_sym_GT2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4538), 1, + sym_block, STATE(5007), 1, sym_comment, - [136383] = 4, - ACTIONS(103), 1, + [136540] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2584), 1, + ACTIONS(1624), 1, sym__entry_separator, - ACTIONS(2586), 1, - anon_sym_RBRACE, + STATE(1497), 1, + aux_sym__types_body_repeat2, STATE(5008), 1, sym_comment, - [136396] = 4, - ACTIONS(103), 1, + [136553] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2598), 1, - sym__entry_separator, - ACTIONS(2600), 1, - anon_sym_RBRACE, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4512), 1, + sym_block, STATE(5009), 1, sym_comment, - [136409] = 4, - ACTIONS(103), 1, + [136566] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2590), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(2592), 1, - anon_sym_RBRACE, + STATE(4889), 1, + aux_sym__types_body_repeat2, STATE(5010), 1, sym_comment, - [136422] = 4, + [136579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4812), 1, - sym_block, + ACTIONS(8747), 1, + anon_sym_DASH2, STATE(5011), 1, sym_comment, - [136435] = 3, - ACTIONS(3), 1, + STATE(5337), 1, + sym_param_short_flag, + [136592] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_RBRACE, + ACTIONS(8751), 1, + sym__entry_separator, STATE(5012), 1, sym_comment, - ACTIONS(8469), 2, - anon_sym_GT2, - anon_sym_AT2, - [136446] = 4, - ACTIONS(3), 1, + [136605] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4740), 1, - sym_block, + ACTIONS(4370), 1, + sym__entry_separator, + STATE(2071), 1, + aux_sym__types_body_repeat2, STATE(5013), 1, sym_comment, - [136459] = 4, - ACTIONS(103), 1, + [136618] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8722), 1, - anon_sym_RBRACE, - ACTIONS(8724), 1, - sym__entry_separator, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4596), 1, + sym_block, STATE(5014), 1, sym_comment, - [136472] = 4, + [136631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4831), 1, + STATE(4876), 1, sym_block, STATE(5015), 1, sym_comment, - [136485] = 4, - ACTIONS(103), 1, + [136644] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7715), 1, + ACTIONS(8043), 1, anon_sym_RBRACE, - ACTIONS(7717), 1, + ACTIONS(8045), 1, sym__entry_separator, STATE(5016), 1, sym_comment, - [136498] = 4, - ACTIONS(103), 1, + [136657] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2738), 1, - anon_sym_COLON2, + ACTIONS(8126), 1, + anon_sym_RBRACE, + ACTIONS(8128), 1, + sym__entry_separator, STATE(5017), 1, sym_comment, - [136511] = 4, - ACTIONS(103), 1, + [136670] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3497), 1, - sym__space, - STATE(1422), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4877), 1, + sym_block, STATE(5018), 1, sym_comment, - [136524] = 4, + [136683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6968), 1, - anon_sym_LPAREN2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4540), 1, + sym_block, STATE(5019), 1, sym_comment, - STATE(5519), 1, - sym__expr_parenthesized_immediate, - [136537] = 4, - ACTIONS(103), 1, + [136696] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8726), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACE, STATE(5020), 1, sym_comment, - STATE(5096), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136550] = 4, - ACTIONS(3), 1, + [136709] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4367), 1, - sym_block, + ACTIONS(8753), 1, + anon_sym_RBRACE, + ACTIONS(8755), 1, + sym__entry_separator, STATE(5021), 1, sym_comment, - [136563] = 4, - ACTIONS(3), 1, + [136722] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1919), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - sym__unquoted_pattern, + ACTIONS(8757), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5022), 1, sym_comment, - [136576] = 4, - ACTIONS(3), 1, + STATE(5040), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136735] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2090), 1, - anon_sym_LBRACE, + ACTIONS(8136), 1, + anon_sym_RBRACE, + ACTIONS(8138), 1, + sym__entry_separator, STATE(5023), 1, sym_comment, - [136589] = 4, - ACTIONS(3), 1, + [136748] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1216), 1, - anon_sym_LBRACE, - ACTIONS(2608), 1, - sym__unquoted_pattern, + ACTIONS(8759), 1, + anon_sym_RBRACK, + ACTIONS(8761), 1, + sym__entry_separator, STATE(5024), 1, sym_comment, - [136602] = 4, + [136761] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4750), 1, + STATE(4597), 1, sym_block, STATE(5025), 1, sym_comment, - [136615] = 4, + [136774] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(1834), 1, - sym__unquoted_pattern, + STATE(4726), 1, + sym_block, STATE(5026), 1, sym_comment, - [136628] = 4, - ACTIONS(103), 1, + [136787] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - STATE(2132), 1, - aux_sym__types_body_repeat2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(3351), 1, + sym_block, STATE(5027), 1, sym_comment, - [136641] = 4, - ACTIONS(103), 1, + [136800] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8728), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4598), 1, + sym_block, STATE(5028), 1, sym_comment, - STATE(5050), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136654] = 4, - ACTIONS(103), 1, + [136813] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7975), 1, - anon_sym_RBRACE, - ACTIONS(7977), 1, - sym__entry_separator, STATE(5029), 1, sym_comment, - [136667] = 4, + ACTIONS(8763), 2, + sym__newline, + anon_sym_SEMI, + [136824] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LPAREN2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4541), 1, + sym_block, STATE(5030), 1, sym_comment, - STATE(5470), 1, - sym__expr_parenthesized_immediate, - [136680] = 4, + [136837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4600), 1, + sym_block, STATE(5031), 1, sym_comment, - STATE(5511), 1, - sym__expr_parenthesized_immediate, - [136693] = 4, + [136850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4654), 1, + STATE(4727), 1, sym_block, STATE(5032), 1, sym_comment, - [136706] = 4, - ACTIONS(3), 1, + [136863] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4808), 1, - sym_block, + ACTIONS(4809), 1, + sym__entry_separator, + STATE(2279), 1, + aux_sym__types_body_repeat2, STATE(5033), 1, sym_comment, - [136719] = 4, - ACTIONS(103), 1, + [136876] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__entry_separator, - STATE(2291), 1, - aux_sym__types_body_repeat2, + ACTIONS(2676), 1, + anon_sym_LBRACE, + ACTIONS(2686), 1, + sym__unquoted_pattern, STATE(5034), 1, sym_comment, - [136732] = 3, - ACTIONS(3), 1, + [136889] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5094), 1, + sym__entry_separator, + STATE(2443), 1, + aux_sym__types_body_repeat2, STATE(5035), 1, sym_comment, - ACTIONS(8730), 2, - anon_sym_RBRACK, - sym_hex_digit, - [136743] = 4, + [136902] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4744), 1, - sym_block, + ACTIONS(6954), 1, + anon_sym_LPAREN2, STATE(5036), 1, sym_comment, - [136756] = 4, - ACTIONS(103), 1, + STATE(5400), 1, + sym__expr_parenthesized_immediate, + [136915] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_RBRACE, - ACTIONS(8088), 1, + ACTIONS(8765), 1, + anon_sym_RBRACK, + ACTIONS(8767), 1, sym__entry_separator, STATE(5037), 1, sym_comment, - [136769] = 4, - ACTIONS(3), 1, + [136928] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1730), 1, - anon_sym_LBRACE, - ACTIONS(1732), 1, - sym__unquoted_pattern, + ACTIONS(2676), 1, + sym__entry_separator, + ACTIONS(2678), 1, + anon_sym_RBRACE, STATE(5038), 1, sym_comment, - [136782] = 4, - ACTIONS(103), 1, + [136941] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8732), 1, - anon_sym_LPAREN2, - ACTIONS(8734), 1, - aux_sym__record_key_token1, + ACTIONS(8769), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4955), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5039), 1, sym_comment, - [136795] = 4, - ACTIONS(103), 1, + [136954] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8736), 1, - anon_sym_RBRACE, - ACTIONS(8738), 1, - sym__entry_separator, - STATE(5040), 1, + ACTIONS(8771), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5040), 2, sym_comment, - [136808] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136965] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4852), 1, - sym_block, + ACTIONS(8774), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4945), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5041), 1, sym_comment, - [136821] = 4, - ACTIONS(103), 1, + [136978] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8740), 1, + ACTIONS(8776), 1, aux_sym__unquoted_in_record_with_expr_token1, + STATE(4959), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5042), 1, sym_comment, - STATE(5084), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [136834] = 4, - ACTIONS(3), 1, + [136991] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4807), 1, - sym_block, + ACTIONS(4832), 1, + sym__entry_separator, + STATE(2298), 1, + aux_sym__types_body_repeat2, STATE(5043), 1, sym_comment, - [136847] = 4, - ACTIONS(103), 1, + [137004] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8742), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8778), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5044), 1, sym_comment, - STATE(5085), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [136860] = 4, - ACTIONS(103), 1, + [137017] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8744), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4752), 1, + sym_block, STATE(5045), 1, sym_comment, - [136873] = 4, - ACTIONS(103), 1, + [137030] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym__entry_separator, - STATE(2112), 1, - aux_sym__types_body_repeat2, + ACTIONS(8780), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4957), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5046), 1, sym_comment, - [136886] = 4, - ACTIONS(103), 1, + [137043] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5348), 1, - anon_sym_RBRACK, - ACTIONS(5350), 1, - sym__entry_separator, + ACTIONS(8782), 1, + anon_sym_def, + ACTIONS(8784), 1, + anon_sym_extern, STATE(5047), 1, sym_comment, - [136899] = 4, - ACTIONS(3), 1, + [137056] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(3635), 1, - sym_block, + ACTIONS(8786), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4968), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(5048), 1, sym_comment, - [136912] = 4, - ACTIONS(103), 1, + [137069] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8746), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(4370), 1, + sym__entry_separator, + STATE(2074), 1, + aux_sym__types_body_repeat2, STATE(5049), 1, sym_comment, - [136925] = 4, - ACTIONS(103), 1, + [137082] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8748), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + anon_sym_COLON2, STATE(5050), 1, sym_comment, - STATE(5096), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136938] = 4, - ACTIONS(103), 1, + [137095] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_RBRACK, - ACTIONS(7706), 1, - sym__entry_separator, + ACTIONS(8788), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5051), 1, sym_comment, - [136951] = 4, - ACTIONS(103), 1, + [137108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8750), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4594), 1, + sym_block, STATE(5052), 1, sym_comment, - STATE(5074), 1, - aux_sym__unquoted_with_expr_repeat1, - [136964] = 4, + [137121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(3595), 1, + STATE(3648), 1, sym_block, STATE(5053), 1, sym_comment, - [136977] = 4, - ACTIONS(103), 1, + [137134] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8752), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4720), 1, + sym_block, STATE(5054), 1, sym_comment, - STATE(5079), 1, - aux_sym__unquoted_with_expr_repeat1, - [136990] = 4, + [137147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4785), 1, + sym_block, STATE(5055), 1, sym_comment, - [137003] = 4, + [137160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4708), 1, + STATE(4595), 1, sym_block, STATE(5056), 1, sym_comment, - [137016] = 4, + [137173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(2572), 1, - sym__unquoted_pattern, + STATE(4786), 1, + sym_block, STATE(5057), 1, sym_comment, - [137029] = 4, + [137186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4734), 1, + STATE(3595), 1, sym_block, STATE(5058), 1, sym_comment, - [137042] = 4, - ACTIONS(3), 1, + [137199] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1714), 1, - anon_sym_LBRACE, - ACTIONS(2580), 1, - sym__unquoted_pattern, + ACTIONS(4388), 1, + sym__entry_separator, + STATE(2109), 1, + aux_sym__types_body_repeat2, STATE(5059), 1, sym_comment, - [137055] = 4, + [137212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(4542), 1, + STATE(4789), 1, sym_block, STATE(5060), 1, sym_comment, - [137068] = 4, + [137225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8756), 1, - anon_sym_def, - ACTIONS(8758), 1, - anon_sym_extern, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(3281), 1, + sym_block, STATE(5061), 1, sym_comment, - [137081] = 3, - ACTIONS(103), 1, + [137238] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8760), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5062), 2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7652), 1, + sym__entry_separator, + STATE(5062), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [137092] = 4, + [137251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, - anon_sym_def, - ACTIONS(8765), 1, - anon_sym_extern, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(4790), 1, + sym_block, STATE(5063), 1, sym_comment, - [137105] = 4, - ACTIONS(103), 1, + [137264] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5060), 1, - sym__entry_separator, - STATE(2469), 1, - aux_sym__types_body_repeat2, + ACTIONS(8790), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5064), 1, sym_comment, - [137118] = 4, - ACTIONS(3), 1, + [137277] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(3298), 1, - sym_block, + ACTIONS(7934), 1, + anon_sym_RBRACE, + ACTIONS(7936), 1, + sym__entry_separator, STATE(5065), 1, sym_comment, - [137131] = 4, + [137290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4781), 1, - sym_block, + ACTIONS(8792), 1, + anon_sym_def, + ACTIONS(8794), 1, + anon_sym_extern, STATE(5066), 1, sym_comment, - [137144] = 4, - ACTIONS(103), 1, + [137303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1216), 1, - sym__entry_separator, - ACTIONS(1218), 1, - anon_sym_RBRACE, + ACTIONS(2604), 1, + anon_sym_LBRACE, + ACTIONS(2610), 1, + sym__unquoted_pattern, STATE(5067), 1, sym_comment, - [137157] = 4, - ACTIONS(3), 1, + [137316] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4811), 1, - sym_block, + ACTIONS(8796), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4974), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5068), 1, sym_comment, - [137170] = 4, - ACTIONS(103), 1, + [137329] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1226), 1, - anon_sym_RBRACE, - ACTIONS(1234), 1, - sym__entry_separator, + ACTIONS(8798), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4976), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5069), 1, sym_comment, - [137183] = 4, - ACTIONS(103), 1, + [137342] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5045), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(5070), 1, sym_comment, - [137196] = 4, - ACTIONS(103), 1, + ACTIONS(1563), 2, + sym__table_head_separator, + anon_sym_DOT2, + [137353] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8769), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5049), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8800), 1, + anon_sym_RBRACK, + ACTIONS(8802), 1, + sym__entry_separator, STATE(5071), 1, sym_comment, - [137209] = 4, + [137366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4817), 1, + STATE(4565), 1, sym_block, STATE(5072), 1, sym_comment, - [137222] = 4, - ACTIONS(103), 1, + [137379] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - sym__newline, - ACTIONS(8773), 1, - sym__space, STATE(5073), 1, sym_comment, - [137235] = 4, - ACTIONS(103), 1, + ACTIONS(1567), 2, + sym__table_head_separator, + anon_sym_DOT2, + [137390] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8775), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1624), 1, + sym__entry_separator, + STATE(1494), 1, + aux_sym__types_body_repeat2, STATE(5074), 1, sym_comment, - [137248] = 4, - ACTIONS(103), 1, + [137403] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4959), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4566), 1, + sym_block, STATE(5075), 1, sym_comment, - [137261] = 4, - ACTIONS(103), 1, + [137416] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4975), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4568), 1, + sym_block, STATE(5076), 1, sym_comment, - [137274] = 4, + [137429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4816), 1, + STATE(4569), 1, sym_block, STATE(5077), 1, sym_comment, - [137287] = 4, - ACTIONS(3), 1, + [137442] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4628), 1, - sym_block, + ACTIONS(5976), 1, + sym__entry_separator, + ACTIONS(6635), 1, + anon_sym_GT2, STATE(5078), 1, sym_comment, - [137300] = 4, - ACTIONS(103), 1, + [137455] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8781), 1, + ACTIONS(8804), 1, aux_sym__unquoted_with_expr_token1, - STATE(5000), 1, + STATE(5064), 1, aux_sym__unquoted_with_expr_repeat1, STATE(5079), 1, sym_comment, - [137313] = 4, - ACTIONS(103), 1, + [137468] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8783), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4932), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(8806), 1, + aux_sym__unquoted_with_expr_token1, STATE(5080), 1, sym_comment, - [137326] = 4, - ACTIONS(3), 1, + STATE(5083), 1, + aux_sym__unquoted_with_expr_repeat1, + [137481] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(4630), 1, - sym_block, + ACTIONS(8808), 1, + aux_sym__unquoted_with_expr_token1, STATE(5081), 1, sym_comment, - [137339] = 4, - ACTIONS(3), 1, + STATE(5087), 1, + aux_sym__unquoted_with_expr_repeat1, + [137494] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8785), 1, - sym_identifier, - ACTIONS(8787), 1, - anon_sym_DOLLAR, + ACTIONS(8810), 1, + aux_sym__unquoted_with_expr_token1, STATE(5082), 1, sym_comment, - [137352] = 4, - ACTIONS(3), 1, + STATE(5092), 1, + aux_sym__unquoted_with_expr_repeat1, + [137507] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LBRACE, - STATE(4806), 1, - sym_block, + ACTIONS(8812), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5083), 1, sym_comment, - [137365] = 4, - ACTIONS(103), 1, + [137520] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8789), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5062), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(5476), 1, + sym__entry_separator, + ACTIONS(6539), 1, + anon_sym_RBRACK, STATE(5084), 1, sym_comment, - [137378] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8791), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5062), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(5085), 1, - sym_comment, - [137391] = 4, + [137533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - STATE(4397), 1, + STATE(4488), 1, sym_block, - STATE(5086), 1, + STATE(5085), 1, sym_comment, - [137404] = 4, - ACTIONS(103), 1, + [137546] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2574), 1, + ACTIONS(2696), 1, sym__entry_separator, - ACTIONS(2576), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, + STATE(5086), 1, + sym_comment, + [137559] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8814), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5087), 1, sym_comment, - [137417] = 3, - ACTIONS(3), 1, + [137572] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_RBRACE, STATE(5088), 1, sym_comment, - ACTIONS(1547), 2, - sym__table_head_separator, - anon_sym_DOT2, - [137428] = 4, - ACTIONS(103), 1, + [137585] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8793), 1, - anon_sym_RBRACK, - ACTIONS(8795), 1, + ACTIONS(5982), 1, sym__entry_separator, + ACTIONS(6637), 1, + anon_sym_GT2, STATE(5089), 1, sym_comment, - [137441] = 4, - ACTIONS(103), 1, + [137598] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6173), 1, - anon_sym_RBRACK, - ACTIONS(6175), 1, - sym__entry_separator, + ACTIONS(2124), 1, + sym__unquoted_pattern, + ACTIONS(2696), 1, + anon_sym_LBRACE, STATE(5090), 1, sym_comment, - [137454] = 4, - ACTIONS(103), 1, + [137611] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - sym__entry_separator, - STATE(4792), 1, - aux_sym__types_body_repeat2, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4582), 1, + sym_block, STATE(5091), 1, sym_comment, - [137467] = 4, - ACTIONS(103), 1, + [137624] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(1955), 1, - anon_sym_RBRACE, + ACTIONS(8816), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5006), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5092), 1, sym_comment, - [137480] = 4, + [137637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(1774), 1, anon_sym_LBRACE, - STATE(4398), 1, - sym_block, + ACTIONS(1776), 1, + sym__unquoted_pattern, STATE(5093), 1, sym_comment, - [137493] = 4, - ACTIONS(103), 1, + [137650] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(8035), 1, + anon_sym_RBRACE, + ACTIONS(8037), 1, sym__entry_separator, - STATE(1500), 1, - aux_sym__types_body_repeat2, STATE(5094), 1, sym_comment, - [137506] = 4, - ACTIONS(103), 1, + [137663] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(2092), 1, - anon_sym_RBRACE, + ACTIONS(1711), 1, + sym__unquoted_pattern, + ACTIONS(2660), 1, + anon_sym_LBRACE, STATE(5095), 1, sym_comment, - [137519] = 3, - ACTIONS(103), 1, + [137676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5096), 2, + ACTIONS(2114), 1, + anon_sym_LBRACE, + ACTIONS(2124), 1, + sym__unquoted_pattern, + STATE(5096), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [137530] = 4, + [137689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(914), 1, anon_sym_LBRACE, - STATE(4785), 1, - sym_block, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(5097), 1, sym_comment, - [137543] = 3, + [137702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8800), 1, - anon_sym_LT, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4478), 1, + sym_block, STATE(5098), 1, sym_comment, - [137553] = 3, + [137715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, - anon_sym_RBRACK, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4479), 1, + sym_block, STATE(5099), 1, sym_comment, - [137563] = 3, + [137728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8804), 1, - anon_sym_RPAREN, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(4513), 1, + sym_block, STATE(5100), 1, sym_comment, - [137573] = 3, + [137741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern, + ACTIONS(8818), 1, + anon_sym_RPAREN, STATE(5101), 1, sym_comment, - [137583] = 3, - ACTIONS(103), 1, + [137751] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8806), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8820), 1, + anon_sym_RBRACK, STATE(5102), 1, sym_comment, - [137593] = 3, + [137761] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6555), 1, - anon_sym_EQ, + ACTIONS(8822), 1, + anon_sym_RPAREN, STATE(5103), 1, sym_comment, - [137603] = 3, - ACTIONS(103), 1, + [137771] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8824), 1, + anon_sym_in, STATE(5104), 1, sym_comment, - [137613] = 3, + [137781] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8808), 1, - sym_raw_string_end, + ACTIONS(5247), 1, + anon_sym_EQ2, STATE(5105), 1, sym_comment, - [137623] = 3, + [137791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7351), 1, - sym__unquoted_pattern, + ACTIONS(6515), 1, + anon_sym_EQ, STATE(5106), 1, sym_comment, - [137633] = 3, + [137801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8826), 1, + sym_raw_string_end, STATE(5107), 1, sym_comment, - [137643] = 3, + [137811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8810), 1, - anon_sym_EQ_GT, + ACTIONS(8828), 1, + sym_raw_string_end, STATE(5108), 1, sym_comment, - [137653] = 3, + [137821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8812), 1, - anon_sym_RBRACK, + ACTIONS(8830), 1, + anon_sym_GT2, STATE(5109), 1, sym_comment, - [137663] = 3, + [137831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5295), 1, - anon_sym_EQ2, + ACTIONS(2686), 1, + sym__unquoted_pattern_in_record, STATE(5110), 1, sym_comment, - [137673] = 3, - ACTIONS(3), 1, + [137841] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8814), 1, - anon_sym_RBRACE, + ACTIONS(8832), 1, + sym__space, STATE(5111), 1, sym_comment, - [137683] = 3, + [137851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern, + ACTIONS(8834), 1, + anon_sym_RBRACK, STATE(5112), 1, sym_comment, - [137693] = 3, - ACTIONS(3), 1, + [137861] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8816), 1, - anon_sym_DQUOTE, + ACTIONS(8836), 1, + aux_sym__str_single_quotes_token1, STATE(5113), 1, sym_comment, - [137703] = 3, + [137871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8818), 1, - anon_sym_SQUOTE2, + ACTIONS(8838), 1, + anon_sym_RBRACE, STATE(5114), 1, sym_comment, - [137713] = 3, + [137881] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8820), 1, - anon_sym_BQUOTE2, + ACTIONS(8840), 1, + anon_sym_GT2, STATE(5115), 1, sym_comment, - [137723] = 3, + [137891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8822), 1, - anon_sym_RPAREN, + ACTIONS(8842), 1, + anon_sym_DQUOTE, STATE(5116), 1, sym_comment, - [137733] = 3, + [137901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5281), 1, - anon_sym_EQ2, + ACTIONS(8844), 1, + anon_sym_SQUOTE2, STATE(5117), 1, sym_comment, - [137743] = 3, + [137911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8824), 1, - anon_sym_RBRACE, + ACTIONS(8846), 1, + anon_sym_BQUOTE2, STATE(5118), 1, sym_comment, - [137753] = 3, + [137921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - anon_sym_RBRACK, + ACTIONS(8848), 1, + anon_sym_RPAREN, STATE(5119), 1, sym_comment, - [137763] = 3, + [137931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8828), 1, - sym_raw_string_end, + ACTIONS(7331), 1, + sym__unquoted_pattern, STATE(5120), 1, sym_comment, - [137773] = 3, + [137941] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8830), 1, - sym_identifier, + ACTIONS(8850), 1, + sym_raw_string_end, STATE(5121), 1, sym_comment, - [137783] = 3, + [137951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_LBRACE, + ACTIONS(8852), 1, + anon_sym_GT2, STATE(5122), 1, sym_comment, - [137793] = 3, + [137961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8832), 1, - anon_sym_RPAREN, + ACTIONS(8854), 1, + sym_raw_string_end, STATE(5123), 1, sym_comment, - [137803] = 3, + [137971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8834), 1, - anon_sym_RBRACK, + ACTIONS(5296), 1, + anon_sym_EQ2, STATE(5124), 1, sym_comment, - [137813] = 3, + [137981] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, - anon_sym_RBRACE, + ACTIONS(8856), 1, + anon_sym_RBRACK, STATE(5125), 1, sym_comment, - [137823] = 3, + [137991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_RBRACE, + ACTIONS(8858), 1, + sym_raw_string_end, STATE(5126), 1, sym_comment, - [137833] = 3, + [138001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8838), 1, - anon_sym_DQUOTE, + ACTIONS(8860), 1, + anon_sym_RBRACK, STATE(5127), 1, sym_comment, - [137843] = 3, - ACTIONS(3), 1, + [138011] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_SQUOTE2, + ACTIONS(8862), 1, + aux_sym__str_back_ticks_token1, STATE(5128), 1, sym_comment, - [137853] = 3, + [138021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_BQUOTE2, + ACTIONS(8864), 1, + anon_sym_RBRACE, STATE(5129), 1, sym_comment, - [137863] = 3, - ACTIONS(3), 1, + [138031] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8844), 1, - anon_sym_RPAREN, + ACTIONS(1915), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5130), 1, sym_comment, - [137873] = 3, + [138041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8846), 1, - sym_long_flag_identifier, + ACTIONS(8866), 1, + anon_sym_DQUOTE, STATE(5131), 1, sym_comment, - [137883] = 3, + [138051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_RBRACE, + ACTIONS(8868), 1, + anon_sym_SQUOTE2, STATE(5132), 1, sym_comment, - [137893] = 3, - ACTIONS(103), 1, + [138061] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8848), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8870), 1, + anon_sym_BQUOTE2, STATE(5133), 1, sym_comment, - [137903] = 3, + [138071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, - sym_raw_string_end, + ACTIONS(8872), 1, + anon_sym_RPAREN, STATE(5134), 1, sym_comment, - [137913] = 3, + [138081] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8852), 1, + ACTIONS(8874), 1, anon_sym_EQ, STATE(5135), 1, sym_comment, - [137923] = 3, + [138091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8854), 1, - anon_sym_RBRACE, + ACTIONS(2578), 1, + sym__unquoted_pattern_in_record, STATE(5136), 1, sym_comment, - [137933] = 3, + [138101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8856), 1, - anon_sym_RBRACE, + ACTIONS(8876), 1, + anon_sym_RBRACK, STATE(5137), 1, sym_comment, - [137943] = 3, + [138111] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8858), 1, - anon_sym_RBRACK, + ACTIONS(8878), 1, + sym_raw_string_end, STATE(5138), 1, sym_comment, - [137953] = 3, + [138121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8880), 1, + anon_sym_EQ, STATE(5139), 1, sym_comment, - [137963] = 3, + [138131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8860), 1, - anon_sym_DQUOTE, + ACTIONS(7818), 1, + sym__unquoted_pattern, STATE(5140), 1, sym_comment, - [137973] = 3, + [138141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8862), 1, - anon_sym_SQUOTE2, + ACTIONS(8882), 1, + anon_sym_RPAREN, STATE(5141), 1, sym_comment, - [137983] = 3, + [138151] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8864), 1, - anon_sym_BQUOTE2, + ACTIONS(8884), 1, + anon_sym_RBRACK, STATE(5142), 1, sym_comment, - [137993] = 3, - ACTIONS(3), 1, + [138161] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8866), 1, - sym_param_short_flag_identifier, + ACTIONS(2634), 1, + aux_sym_cmd_identifier_token2, STATE(5143), 1, sym_comment, - [138003] = 3, + [138171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern, + ACTIONS(8886), 1, + anon_sym_DQUOTE, STATE(5144), 1, sym_comment, - [138013] = 3, + [138181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8868), 1, - sym_raw_string_end, + ACTIONS(8888), 1, + anon_sym_SQUOTE2, STATE(5145), 1, sym_comment, - [138023] = 3, + [138191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8870), 1, - anon_sym_RBRACK, + ACTIONS(8890), 1, + anon_sym_BQUOTE2, STATE(5146), 1, sym_comment, - [138033] = 3, + [138201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8872), 1, - anon_sym_DQUOTE, + ACTIONS(1711), 1, + sym__unquoted_pattern_in_record, STATE(5147), 1, sym_comment, - [138043] = 3, + [138211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8874), 1, - anon_sym_SQUOTE2, + ACTIONS(2632), 1, + sym__unquoted_pattern_in_record, STATE(5148), 1, sym_comment, - [138053] = 3, + [138221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8876), 1, - anon_sym_RBRACK, + ACTIONS(8892), 1, + sym_raw_string_end, STATE(5149), 1, sym_comment, - [138063] = 3, + [138231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(359), 1, - anon_sym_RPAREN2, + ACTIONS(317), 1, + anon_sym_RBRACE, STATE(5150), 1, sym_comment, - [138073] = 3, + [138241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8878), 1, - anon_sym_DQUOTE, + ACTIONS(2632), 1, + sym__unquoted_pattern, STATE(5151), 1, sym_comment, - [138083] = 3, + [138251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8880), 1, - anon_sym_SQUOTE2, + ACTIONS(8894), 1, + anon_sym_GT2, STATE(5152), 1, sym_comment, - [138093] = 3, + [138261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8882), 1, - anon_sym_BQUOTE2, + ACTIONS(8896), 1, + anon_sym_RBRACK, STATE(5153), 1, sym_comment, - [138103] = 3, + [138271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8884), 1, - anon_sym_BQUOTE2, + ACTIONS(8898), 1, + anon_sym_RBRACE, STATE(5154), 1, sym_comment, - [138113] = 3, + [138281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8886), 1, - sym_raw_string_end, + ACTIONS(8900), 1, + anon_sym_DQUOTE, STATE(5155), 1, sym_comment, - [138123] = 3, + [138291] = 3, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8888), 1, - sym_raw_string_end, + anon_sym_POUND, + ACTIONS(8902), 1, + anon_sym_SQUOTE2, STATE(5156), 1, sym_comment, - [138133] = 3, + [138301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_SQUOTE2, + ACTIONS(8904), 1, + anon_sym_BQUOTE2, STATE(5157), 1, sym_comment, - [138143] = 3, - ACTIONS(3), 1, + [138311] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8892), 1, - anon_sym_EQ, + ACTIONS(1935), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5158), 1, sym_comment, - [138153] = 3, - ACTIONS(103), 1, + [138321] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8894), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8906), 1, + sym_identifier, STATE(5159), 1, sym_comment, - [138163] = 3, - ACTIONS(103), 1, + [138331] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8896), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8908), 1, + sym_raw_string_end, STATE(5160), 1, sym_comment, - [138173] = 3, + [138341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8898), 1, - anon_sym_DQUOTE, + ACTIONS(8910), 1, + sym_identifier, STATE(5161), 1, sym_comment, - [138183] = 3, + [138351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_SQUOTE2, + ACTIONS(8912), 1, + anon_sym_PIPE, STATE(5162), 1, sym_comment, - [138193] = 3, + [138361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8902), 1, - anon_sym_BQUOTE2, + ACTIONS(8914), 1, + anon_sym_RBRACK, STATE(5163), 1, sym_comment, - [138203] = 3, + [138371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8904), 1, - anon_sym_LBRACE, + ACTIONS(8916), 1, + anon_sym_DQUOTE, STATE(5164), 1, sym_comment, - [138213] = 3, - ACTIONS(103), 1, + [138381] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8906), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8918), 1, + anon_sym_DQUOTE, STATE(5165), 1, sym_comment, - [138223] = 3, + [138391] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8908), 1, - sym_raw_string_end, + ACTIONS(8920), 1, + anon_sym_SQUOTE2, STATE(5166), 1, sym_comment, - [138233] = 3, - ACTIONS(103), 1, + [138401] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8734), 1, - aux_sym__record_key_token1, + ACTIONS(8922), 1, + anon_sym_BQUOTE2, STATE(5167), 1, sym_comment, - [138243] = 3, + [138411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8910), 1, - anon_sym_DQUOTE, + ACTIONS(8924), 1, + anon_sym_RPAREN, STATE(5168), 1, sym_comment, - [138253] = 3, + [138421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8912), 1, - anon_sym_SQUOTE2, + ACTIONS(8926), 1, + anon_sym_RBRACK, STATE(5169), 1, sym_comment, - [138263] = 3, + [138431] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8914), 1, - anon_sym_BQUOTE2, + ACTIONS(8928), 1, + sym_raw_string_end, STATE(5170), 1, sym_comment, - [138273] = 3, + [138441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8916), 1, - anon_sym_RBRACE, + ACTIONS(8930), 1, + anon_sym_SQUOTE2, STATE(5171), 1, sym_comment, - [138283] = 3, + [138451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8918), 1, - anon_sym_RBRACK, + ACTIONS(8932), 1, + anon_sym_DQUOTE, STATE(5172), 1, sym_comment, - [138293] = 3, + [138461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8920), 1, - sym_raw_string_end, + ACTIONS(8934), 1, + anon_sym_SQUOTE2, STATE(5173), 1, sym_comment, - [138303] = 3, + [138471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8922), 1, - anon_sym_RBRACE, + ACTIONS(8936), 1, + anon_sym_BQUOTE2, STATE(5174), 1, sym_comment, - [138313] = 3, + [138481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8924), 1, - anon_sym_DQUOTE, + ACTIONS(8938), 1, + anon_sym_BQUOTE2, STATE(5175), 1, sym_comment, - [138323] = 3, + [138491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8926), 1, - anon_sym_SQUOTE2, + ACTIONS(2674), 1, + sym__unquoted_pattern, STATE(5176), 1, sym_comment, - [138333] = 3, + [138501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8928), 1, - anon_sym_BQUOTE2, + ACTIONS(8940), 1, + sym_raw_string_end, STATE(5177), 1, sym_comment, - [138343] = 3, + [138511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8930), 1, - anon_sym_RBRACK, + ACTIONS(309), 1, + anon_sym_RBRACE, STATE(5178), 1, sym_comment, - [138353] = 3, + [138521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8932), 1, - anon_sym_RBRACE, + ACTIONS(8942), 1, + anon_sym_DQUOTE, STATE(5179), 1, sym_comment, - [138363] = 3, + [138531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8934), 1, - sym_raw_string_end, + ACTIONS(8944), 1, + anon_sym_SQUOTE2, STATE(5180), 1, sym_comment, - [138373] = 3, + [138541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, - anon_sym_RPAREN, + ACTIONS(8946), 1, + anon_sym_BQUOTE2, STATE(5181), 1, sym_comment, - [138383] = 3, - ACTIONS(3), 1, + [138551] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8938), 1, - anon_sym_DQUOTE, + ACTIONS(1915), 1, + aux_sym__unquoted_with_expr_token1, STATE(5182), 1, sym_comment, - [138393] = 3, + [138561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8940), 1, - anon_sym_SQUOTE2, + ACTIONS(8948), 1, + anon_sym_RBRACK, STATE(5183), 1, sym_comment, - [138403] = 3, + [138571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_BQUOTE2, + ACTIONS(8950), 1, + sym_raw_string_end, STATE(5184), 1, sym_comment, - [138413] = 3, - ACTIONS(103), 1, + [138581] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8944), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8952), 1, + anon_sym_RBRACK, STATE(5185), 1, sym_comment, - [138423] = 3, - ACTIONS(103), 1, + [138591] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8946), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8954), 1, + anon_sym_DQUOTE, STATE(5186), 1, sym_comment, - [138433] = 3, + [138601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, - sym_raw_string_end, + ACTIONS(8956), 1, + anon_sym_SQUOTE2, STATE(5187), 1, sym_comment, - [138443] = 3, + [138611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - sym__unquoted_pattern, + ACTIONS(8958), 1, + anon_sym_BQUOTE2, STATE(5188), 1, sym_comment, - [138453] = 3, - ACTIONS(3), 1, + [138621] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8950), 1, - anon_sym_DQUOTE, + ACTIONS(8960), 1, + aux_sym_cmd_identifier_token6, STATE(5189), 1, sym_comment, - [138463] = 3, + [138631] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8952), 1, - anon_sym_SQUOTE2, + ACTIONS(8962), 1, + anon_sym_RBRACE, STATE(5190), 1, sym_comment, - [138473] = 3, + [138641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8954), 1, - anon_sym_BQUOTE2, + ACTIONS(8964), 1, + sym_raw_string_end, STATE(5191), 1, sym_comment, - [138483] = 3, + [138651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_RBRACE, + ACTIONS(8266), 1, + anon_sym_EQ_GT, STATE(5192), 1, sym_comment, - [138493] = 3, + [138661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8966), 1, + anon_sym_DQUOTE, STATE(5193), 1, sym_comment, - [138503] = 3, + [138671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8958), 1, - sym_raw_string_end, + ACTIONS(8968), 1, + anon_sym_SQUOTE2, STATE(5194), 1, sym_comment, - [138513] = 3, + [138681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern, + ACTIONS(8970), 1, + anon_sym_BQUOTE2, STATE(5195), 1, sym_comment, - [138523] = 3, + [138691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DQUOTE, + ACTIONS(8972), 1, + anon_sym_GT2, STATE(5196), 1, sym_comment, - [138533] = 3, + [138701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8962), 1, - anon_sym_SQUOTE2, + ACTIONS(8974), 1, + anon_sym_DQUOTE, STATE(5197), 1, sym_comment, - [138543] = 3, + [138711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8964), 1, - anon_sym_BQUOTE2, + ACTIONS(8976), 1, + sym_raw_string_end, STATE(5198), 1, sym_comment, - [138553] = 3, + [138721] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_GT2, + ACTIONS(8978), 1, + anon_sym_SQUOTE2, STATE(5199), 1, sym_comment, - [138563] = 3, + [138731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8968), 1, - sym_raw_string_end, + ACTIONS(8980), 1, + anon_sym_DQUOTE, STATE(5200), 1, sym_comment, - [138573] = 3, + [138741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, + ACTIONS(8982), 1, + anon_sym_SQUOTE2, STATE(5201), 1, sym_comment, - [138583] = 3, + [138751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8970), 1, - anon_sym_DQUOTE, + ACTIONS(8984), 1, + anon_sym_BQUOTE2, STATE(5202), 1, sym_comment, - [138593] = 3, + [138761] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8972), 1, - anon_sym_SQUOTE2, + ACTIONS(8986), 1, + anon_sym_BQUOTE2, STATE(5203), 1, sym_comment, - [138603] = 3, + [138771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, - anon_sym_BQUOTE2, + ACTIONS(8988), 1, + sym_raw_string_end, STATE(5204), 1, sym_comment, - [138613] = 3, + [138781] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8976), 1, - anon_sym_RBRACK, + ACTIONS(8990), 1, + sym_identifier, STATE(5205), 1, sym_comment, - [138623] = 3, + [138791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8978), 1, - sym_raw_string_end, + ACTIONS(8992), 1, + anon_sym_DQUOTE, STATE(5206), 1, sym_comment, - [138633] = 3, - ACTIONS(103), 1, + [138801] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8980), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8994), 1, + anon_sym_SQUOTE2, STATE(5207), 1, sym_comment, - [138643] = 3, + [138811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8982), 1, - anon_sym_DQUOTE, + ACTIONS(8996), 1, + anon_sym_BQUOTE2, STATE(5208), 1, sym_comment, - [138653] = 3, + [138821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8984), 1, - anon_sym_SQUOTE2, + ACTIONS(8998), 1, + anon_sym_LBRACE, STATE(5209), 1, sym_comment, - [138663] = 3, + [138831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8986), 1, - anon_sym_BQUOTE2, + ACTIONS(9000), 1, + sym_raw_string_end, STATE(5210), 1, sym_comment, - [138673] = 3, - ACTIONS(103), 1, + [138841] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8988), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5462), 1, + anon_sym_EQ2, STATE(5211), 1, sym_comment, - [138683] = 3, + [138851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8990), 1, - sym_raw_string_content, + ACTIONS(9002), 1, + anon_sym_DQUOTE, STATE(5212), 1, sym_comment, - [138693] = 3, + [138861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_RBRACE, + ACTIONS(9004), 1, + anon_sym_SQUOTE2, STATE(5213), 1, sym_comment, - [138703] = 3, + [138871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8994), 1, - anon_sym_RBRACK, + ACTIONS(9006), 1, + anon_sym_BQUOTE2, STATE(5214), 1, sym_comment, - [138713] = 3, - ACTIONS(3), 1, + [138881] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8996), 1, - anon_sym_RPAREN, + ACTIONS(9008), 1, + aux_sym_cmd_identifier_token6, STATE(5215), 1, sym_comment, - [138723] = 3, + [138891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2344), 1, - anon_sym_LBRACK2, + ACTIONS(9010), 1, + sym_raw_string_content, STATE(5216), 1, sym_comment, - [138733] = 3, - ACTIONS(103), 1, + [138901] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8998), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9012), 1, + anon_sym_EQ, STATE(5217), 1, sym_comment, - [138743] = 3, - ACTIONS(103), 1, + [138911] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9000), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9014), 1, + anon_sym_RBRACK, STATE(5218), 1, sym_comment, - [138753] = 3, + [138921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9002), 1, - anon_sym_RBRACK, + ACTIONS(9016), 1, + anon_sym_RBRACE, STATE(5219), 1, sym_comment, - [138763] = 3, + [138931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9004), 1, - anon_sym_EQ, + ACTIONS(2379), 1, + anon_sym_LBRACK2, STATE(5220), 1, sym_comment, - [138773] = 3, - ACTIONS(3), 1, + [138941] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9006), 1, - anon_sym_RPAREN, + ACTIONS(9018), 1, + aux_sym__str_single_quotes_token1, STATE(5221), 1, sym_comment, - [138783] = 3, - ACTIONS(3), 1, + [138951] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_RPAREN, + ACTIONS(9020), 1, + aux_sym__str_back_ticks_token1, STATE(5222), 1, sym_comment, - [138793] = 3, + [138961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9010), 1, - anon_sym_RPAREN, + ACTIONS(5265), 1, + anon_sym_EQ2, STATE(5223), 1, sym_comment, - [138803] = 3, + [138971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9012), 1, - anon_sym_RPAREN, + ACTIONS(9022), 1, + anon_sym_RBRACE, STATE(5224), 1, sym_comment, - [138813] = 3, + [138981] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, - anon_sym_RBRACK, + ACTIONS(9024), 1, + anon_sym_RPAREN, STATE(5225), 1, sym_comment, - [138823] = 3, + [138991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_LBRACE, + ACTIONS(9026), 1, + anon_sym_RBRACE, STATE(5226), 1, sym_comment, - [138833] = 3, - ACTIONS(3), 1, + [139001] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9016), 1, - anon_sym_LBRACE, + ACTIONS(9028), 1, + aux_sym_cmd_identifier_token6, STATE(5227), 1, sym_comment, - [138843] = 3, + [139011] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9018), 1, - sym_raw_string_end, + ACTIONS(7303), 1, + sym__unquoted_pattern_in_record, STATE(5228), 1, sym_comment, - [138853] = 3, + [139021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9020), 1, - anon_sym_RBRACK, + ACTIONS(6535), 1, + anon_sym_EQ, STATE(5229), 1, sym_comment, - [138863] = 3, + [139031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - sym_raw_string_end, + ACTIONS(8355), 1, + anon_sym_LBRACE, STATE(5230), 1, sym_comment, - [138873] = 3, - ACTIONS(103), 1, + [139041] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9030), 1, + anon_sym_LBRACE, STATE(5231), 1, sym_comment, - [138883] = 3, + [139051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9024), 1, + ACTIONS(9032), 1, anon_sym_RBRACE, STATE(5232), 1, sym_comment, - [138893] = 3, + [139061] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9026), 1, - anon_sym_RPAREN, + ACTIONS(9034), 1, + anon_sym_RBRACK, STATE(5233), 1, sym_comment, - [138903] = 3, + [139071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9028), 1, - sym_identifier, + ACTIONS(9036), 1, + anon_sym_RPAREN, STATE(5234), 1, sym_comment, - [138913] = 3, + [139081] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9030), 1, - anon_sym_EQ_GT, + ACTIONS(9038), 1, + anon_sym_RBRACK, STATE(5235), 1, sym_comment, - [138923] = 3, + [139091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9032), 1, - anon_sym_RBRACE, + ACTIONS(9040), 1, + anon_sym_RPAREN, STATE(5236), 1, sym_comment, - [138933] = 3, - ACTIONS(103), 1, + [139101] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9034), 1, - aux_sym_shebang_token1, + ACTIONS(9042), 1, + anon_sym_RPAREN, STATE(5237), 1, sym_comment, - [138943] = 3, - ACTIONS(103), 1, + [139111] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9036), 1, - sym__space, + ACTIONS(9044), 1, + anon_sym_RBRACK, STATE(5238), 1, sym_comment, - [138953] = 3, + [139121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5132), 1, - sym__unquoted_pattern, + ACTIONS(409), 1, + ts_builtin_sym_end, STATE(5239), 1, sym_comment, - [138963] = 3, + [139131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9038), 1, + ACTIONS(9046), 1, anon_sym_RBRACE, STATE(5240), 1, sym_comment, - [138973] = 3, + [139141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9040), 1, - sym_raw_string_end, + ACTIONS(9048), 1, + sym_identifier, STATE(5241), 1, sym_comment, - [138983] = 3, - ACTIONS(3), 1, + [139151] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, + ACTIONS(9050), 1, + sym__space, STATE(5242), 1, sym_comment, - [138993] = 3, + [139161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9042), 1, - anon_sym_RBRACE, + ACTIONS(9052), 1, + sym_raw_string_end, STATE(5243), 1, sym_comment, - [139003] = 3, - ACTIONS(3), 1, + [139171] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9044), 1, - anon_sym_EQ, + ACTIONS(9054), 1, + aux_sym_cmd_identifier_token2, STATE(5244), 1, sym_comment, - [139013] = 3, + [139181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9046), 1, - anon_sym_GT2, + ACTIONS(9056), 1, + anon_sym_EQ, STATE(5245), 1, sym_comment, - [139023] = 3, + [139191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - anon_sym_COLON2, + ACTIONS(9058), 1, + anon_sym_RBRACK, STATE(5246), 1, sym_comment, - [139033] = 3, - ACTIONS(3), 1, + [139201] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9048), 1, - anon_sym_RBRACK, + ACTIONS(9060), 1, + aux_sym_cmd_identifier_token6, STATE(5247), 1, sym_comment, - [139043] = 3, - ACTIONS(3), 1, + [139211] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9050), 1, - anon_sym_EQ, + ACTIONS(2986), 1, + aux_sym_cmd_identifier_token2, STATE(5248), 1, sym_comment, - [139053] = 3, - ACTIONS(3), 1, + [139221] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9052), 1, - anon_sym_RPAREN, + ACTIONS(1935), 1, + aux_sym__unquoted_with_expr_token1, STATE(5249), 1, sym_comment, - [139063] = 3, + [139231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - anon_sym_RBRACE, + ACTIONS(9062), 1, + anon_sym_RBRACK, STATE(5250), 1, sym_comment, - [139073] = 3, + [139241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, + ACTIONS(9064), 1, anon_sym_RBRACK, STATE(5251), 1, sym_comment, - [139083] = 3, + [139251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9058), 1, - anon_sym_RBRACE, + ACTIONS(9066), 1, + anon_sym_EQ, STATE(5252), 1, sym_comment, - [139093] = 3, + [139261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2660), 1, - sym__table_head_separator, + ACTIONS(9068), 1, + anon_sym_EQ, STATE(5253), 1, sym_comment, - [139103] = 3, + [139271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7922), 1, + ACTIONS(4205), 1, sym__unquoted_pattern, STATE(5254), 1, sym_comment, - [139113] = 3, + [139281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9060), 1, - anon_sym_RBRACK, + ACTIONS(9070), 1, + sym_identifier, STATE(5255), 1, sym_comment, - [139123] = 3, + [139291] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9062), 1, - anon_sym_RBRACE, + ACTIONS(9072), 1, + sym_long_flag_identifier, STATE(5256), 1, sym_comment, - [139133] = 3, + [139301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9064), 1, - anon_sym_DASH_GT, + ACTIONS(6629), 1, + sym__unquoted_pattern_in_list, STATE(5257), 1, sym_comment, - [139143] = 3, + [139311] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9066), 1, - anon_sym_RPAREN, + ACTIONS(9074), 1, + sym_raw_string_end, STATE(5258), 1, sym_comment, - [139153] = 3, + [139321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9068), 1, - anon_sym_EQ, + ACTIONS(2664), 1, + sym__table_head_separator, STATE(5259), 1, sym_comment, - [139163] = 3, + [139331] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9070), 1, - anon_sym_RBRACK, + ACTIONS(9076), 1, + sym_param_short_flag_identifier, STATE(5260), 1, sym_comment, - [139173] = 3, + [139341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6788), 1, - anon_sym_EQ, + ACTIONS(9078), 1, + anon_sym_DASH_GT, STATE(5261), 1, sym_comment, - [139183] = 3, + [139351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7807), 1, - sym__unquoted_pattern, + ACTIONS(9080), 1, + anon_sym_RBRACE, STATE(5262), 1, sym_comment, - [139193] = 3, + [139361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(9082), 1, + anon_sym_EQ, STATE(5263), 1, sym_comment, - [139203] = 3, + [139371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9072), 1, - anon_sym_RBRACE, + ACTIONS(9084), 1, + anon_sym_GT2, STATE(5264), 1, sym_comment, - [139213] = 3, + [139381] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9074), 1, - sym_identifier, + ACTIONS(6819), 1, + anon_sym_EQ, STATE(5265), 1, sym_comment, - [139223] = 3, + [139391] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9076), 1, - anon_sym_RBRACE, + ACTIONS(5171), 1, + sym__unquoted_pattern, STATE(5266), 1, sym_comment, - [139233] = 3, - ACTIONS(3), 1, + [139401] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9078), 1, - anon_sym_RBRACK, + ACTIONS(9086), 1, + aux_sym_cmd_identifier_token6, STATE(5267), 1, sym_comment, - [139243] = 3, + [139411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9080), 1, - ts_builtin_sym_end, + ACTIONS(5308), 1, + anon_sym_EQ2, STATE(5268), 1, sym_comment, - [139253] = 3, + [139421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9082), 1, + ACTIONS(9088), 1, anon_sym_RBRACE, STATE(5269), 1, sym_comment, - [139263] = 3, - ACTIONS(103), 1, + [139431] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9084), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9090), 1, + anon_sym_RBRACE, STATE(5270), 1, sym_comment, - [139273] = 3, + [139441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9086), 1, - anon_sym_RPAREN, + ACTIONS(2124), 1, + sym__unquoted_pattern, STATE(5271), 1, sym_comment, - [139283] = 3, - ACTIONS(103), 1, + [139451] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9092), 1, + anon_sym_RPAREN, STATE(5272), 1, sym_comment, - [139293] = 3, + [139461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9088), 1, + ACTIONS(9094), 1, anon_sym_RBRACK, STATE(5273), 1, sym_comment, - [139303] = 3, + [139471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6604), 1, - sym__unquoted_pattern_in_list, + ACTIONS(9096), 1, + anon_sym_RBRACE, STATE(5274), 1, sym_comment, - [139313] = 3, + [139481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9090), 1, - anon_sym_DQUOTE, + ACTIONS(9098), 1, + anon_sym_LBRACE, STATE(5275), 1, sym_comment, - [139323] = 3, + [139491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9092), 1, - anon_sym_SQUOTE2, + ACTIONS(9100), 1, + anon_sym_RPAREN, STATE(5276), 1, sym_comment, - [139333] = 3, + [139501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7011), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9102), 1, + anon_sym_RBRACE, STATE(5277), 1, sym_comment, - [139343] = 3, - ACTIONS(3), 1, + [139511] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, - anon_sym_RBRACE, + ACTIONS(9104), 1, + aux_sym_cmd_identifier_token2, STATE(5278), 1, sym_comment, - [139353] = 3, + [139521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9094), 1, - anon_sym_BQUOTE2, + ACTIONS(9106), 1, + anon_sym_RBRACE, STATE(5279), 1, sym_comment, - [139363] = 3, - ACTIONS(103), 1, + [139531] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9108), 1, + anon_sym_RPAREN, STATE(5280), 1, sym_comment, - [139373] = 3, + [139541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9096), 1, - sym__table_head_separator, + ACTIONS(311), 1, + anon_sym_RBRACE, STATE(5281), 1, sym_comment, - [139383] = 3, + [139551] = 3, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9098), 1, - anon_sym_in, + anon_sym_POUND, + ACTIONS(9110), 1, + anon_sym_RBRACK, STATE(5282), 1, sym_comment, - [139393] = 3, - ACTIONS(3), 1, + [139561] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9100), 1, - anon_sym_RBRACE, + ACTIONS(9112), 1, + aux_sym__unquoted_with_expr_token1, STATE(5283), 1, sym_comment, - [139403] = 3, + [139571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9102), 1, - anon_sym_DQUOTE, + ACTIONS(9114), 1, + anon_sym_RBRACE, STATE(5284), 1, sym_comment, - [139413] = 3, - ACTIONS(103), 1, + [139581] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9104), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9116), 1, + aux_sym_shebang_token1, STATE(5285), 1, sym_comment, - [139423] = 3, + [139591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9106), 1, - anon_sym_GT2, + ACTIONS(9118), 1, + anon_sym_RPAREN, STATE(5286), 1, sym_comment, - [139433] = 3, + [139601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, + ACTIONS(9120), 1, + anon_sym_DQUOTE, STATE(5287), 1, sym_comment, - [139443] = 3, + [139611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9108), 1, - anon_sym_SQUOTE2, + ACTIONS(9122), 1, + anon_sym_RBRACK, STATE(5288), 1, sym_comment, - [139453] = 3, + [139621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9110), 1, - anon_sym_DQUOTE, + ACTIONS(9124), 1, + anon_sym_SQUOTE2, STATE(5289), 1, sym_comment, - [139463] = 3, - ACTIONS(3), 1, + [139631] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9112), 1, - anon_sym_SQUOTE2, + ACTIONS(9126), 1, + aux_sym_cmd_identifier_token6, STATE(5290), 1, sym_comment, - [139473] = 3, + [139641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9114), 1, - anon_sym_RBRACK, + ACTIONS(361), 1, + anon_sym_RPAREN2, STATE(5291), 1, sym_comment, - [139483] = 3, + [139651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, + ACTIONS(9128), 1, anon_sym_BQUOTE2, STATE(5292), 1, sym_comment, - [139493] = 3, + [139661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9118), 1, + ACTIONS(9130), 1, anon_sym_RBRACE, STATE(5293), 1, sym_comment, - [139503] = 3, + [139671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9120), 1, - anon_sym_RBRACE, + ACTIONS(5292), 1, + anon_sym_EQ2, STATE(5294), 1, sym_comment, - [139513] = 3, + [139681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9122), 1, - sym__table_head_separator, + ACTIONS(9132), 1, + sym_raw_string_end, STATE(5295), 1, sym_comment, - [139523] = 3, - ACTIONS(103), 1, + [139691] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9124), 1, + ACTIONS(9134), 1, aux_sym_cmd_identifier_token6, STATE(5296), 1, sym_comment, - [139533] = 3, + [139701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9126), 1, - anon_sym_EQ, + ACTIONS(9136), 1, + anon_sym_RBRACE, STATE(5297), 1, sym_comment, - [139543] = 3, + [139711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9128), 1, - sym_raw_string_content, + ACTIONS(9138), 1, + anon_sym_LPAREN2, STATE(5298), 1, sym_comment, - [139553] = 3, + [139721] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9130), 1, - anon_sym_BQUOTE2, + ACTIONS(9140), 1, + anon_sym_EQ, STATE(5299), 1, sym_comment, - [139563] = 3, + [139731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(417), 1, - ts_builtin_sym_end, + ACTIONS(315), 1, + anon_sym_RBRACE, STATE(5300), 1, sym_comment, - [139573] = 3, + [139741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9132), 1, - anon_sym_RBRACE, + ACTIONS(9142), 1, + anon_sym_RBRACK, STATE(5301), 1, sym_comment, - [139583] = 3, + [139751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9134), 1, - anon_sym_RPAREN, + ACTIONS(9144), 1, + anon_sym_RBRACE, STATE(5302), 1, sym_comment, - [139593] = 3, + [139761] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(5303), 1, sym_comment, - [139603] = 3, - ACTIONS(103), 1, + [139771] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9136), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9146), 1, + anon_sym_LBRACE, STATE(5304), 1, sym_comment, - [139613] = 3, + [139781] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6539), 1, - anon_sym_EQ, + ACTIONS(9148), 1, + anon_sym_RBRACE, STATE(5305), 1, sym_comment, - [139623] = 3, - ACTIONS(103), 1, + [139791] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1899), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8676), 1, + aux_sym__record_key_token1, STATE(5306), 1, sym_comment, - [139633] = 3, - ACTIONS(103), 1, + [139801] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9138), 1, - aux_sym_shebang_token1, + ACTIONS(9150), 1, + anon_sym_RPAREN, STATE(5307), 1, sym_comment, - [139643] = 3, + [139811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_RPAREN, + ACTIONS(9146), 1, + anon_sym_LBRACE, STATE(5308), 1, sym_comment, - [139653] = 3, + [139821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9142), 1, - anon_sym_RPAREN, + ACTIONS(9152), 1, + anon_sym_DQUOTE, STATE(5309), 1, sym_comment, - [139663] = 3, - ACTIONS(3), 1, + [139831] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9144), 1, - anon_sym_RBRACE, + ACTIONS(9154), 1, + aux_sym_cmd_identifier_token6, STATE(5310), 1, sym_comment, - [139673] = 3, + [139841] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_EQ2, + ACTIONS(9156), 1, + anon_sym_RPAREN, STATE(5311), 1, sym_comment, - [139683] = 3, + [139851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9146), 1, - anon_sym_RBRACK, + ACTIONS(9158), 1, + anon_sym_RBRACE, STATE(5312), 1, sym_comment, - [139693] = 3, + [139861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9148), 1, + ACTIONS(9160), 1, anon_sym_RBRACE, STATE(5313), 1, sym_comment, - [139703] = 3, + [139871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9150), 1, - anon_sym_GT2, + ACTIONS(9162), 1, + anon_sym_SQUOTE2, STATE(5314), 1, sym_comment, - [139713] = 3, - ACTIONS(103), 1, + [139881] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9152), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9164), 1, + anon_sym_GT2, STATE(5315), 1, sym_comment, - [139723] = 3, + [139891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9154), 1, - anon_sym_DQUOTE, + ACTIONS(8802), 1, + anon_sym_LBRACE, STATE(5316), 1, sym_comment, - [139733] = 3, + [139901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2939), 1, - anon_sym_LBRACK2, + ACTIONS(9166), 1, + anon_sym_DASH_GT, STATE(5317), 1, sym_comment, - [139743] = 3, + [139911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, - sym_attribute_identifier, + ACTIONS(9168), 1, + sym_identifier, STATE(5318), 1, sym_comment, - [139753] = 3, + [139921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9158), 1, - anon_sym_RBRACK, + ACTIONS(1776), 1, + sym__unquoted_pattern_in_record, STATE(5319), 1, sym_comment, - [139763] = 3, + [139931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9160), 1, - anon_sym_EQ, + ACTIONS(9170), 1, + anon_sym_RBRACK, STATE(5320), 1, sym_comment, - [139773] = 3, - ACTIONS(103), 1, + [139941] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9162), 1, + ACTIONS(9172), 1, aux_sym_cmd_identifier_token2, STATE(5321), 1, sym_comment, - [139783] = 3, + [139951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9164), 1, - anon_sym_RBRACE, + ACTIONS(9174), 1, + anon_sym_RPAREN, STATE(5322), 1, sym_comment, - [139793] = 3, + [139961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8904), 1, - anon_sym_LBRACE, + ACTIONS(9176), 1, + anon_sym_DQUOTE, STATE(5323), 1, sym_comment, - [139803] = 3, + [139971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6879), 1, - anon_sym_EQ, + ACTIONS(9178), 1, + anon_sym_SQUOTE2, STATE(5324), 1, sym_comment, - [139813] = 3, + [139981] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9166), 1, - anon_sym_LBRACE, + ACTIONS(9180), 1, + anon_sym_BQUOTE2, STATE(5325), 1, sym_comment, - [139823] = 3, + [139991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9168), 1, - anon_sym_LBRACE, + ACTIONS(9182), 1, + anon_sym_COLON2, STATE(5326), 1, sym_comment, - [139833] = 3, + [140001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9170), 1, - anon_sym_GT2, + ACTIONS(9184), 1, + anon_sym_EQ_GT, STATE(5327), 1, sym_comment, - [139843] = 3, + [140011] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8252), 1, - anon_sym_EQ_GT, + ACTIONS(9186), 1, + anon_sym_RBRACE, STATE(5328), 1, sym_comment, - [139853] = 3, - ACTIONS(103), 1, + [140021] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9172), 1, - sym__space, + ACTIONS(303), 1, + anon_sym_RBRACE, STATE(5329), 1, sym_comment, - [139863] = 3, + [140031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9174), 1, - anon_sym_GT2, + ACTIONS(8199), 1, + anon_sym_LBRACE, STATE(5330), 1, sym_comment, - [139873] = 3, + [140041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9176), 1, - sym_raw_string_end, + ACTIONS(1868), 1, + sym__unquoted_pattern_in_record, STATE(5331), 1, sym_comment, - [139883] = 3, + [140051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, + ACTIONS(9188), 1, + sym_raw_string_end, STATE(5332), 1, sym_comment, - [139893] = 3, + [140061] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9178), 1, - sym_identifier, + ACTIONS(9190), 1, + anon_sym_RBRACE, STATE(5333), 1, sym_comment, - [139903] = 3, + [140071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9180), 1, - anon_sym_GT2, + ACTIONS(9192), 1, + anon_sym_BQUOTE2, STATE(5334), 1, sym_comment, - [139913] = 3, - ACTIONS(3), 1, + [140081] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9182), 1, - anon_sym_LBRACE, + ACTIONS(9194), 1, + aux_sym_cmd_identifier_token6, STATE(5335), 1, sym_comment, - [139923] = 3, + [140091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9184), 1, - anon_sym_COLON2, + ACTIONS(9196), 1, + anon_sym_EQ, STATE(5336), 1, sym_comment, - [139933] = 3, + [140101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5046), 1, - sym__unquoted_pattern, + ACTIONS(9198), 1, + anon_sym_RPAREN, STATE(5337), 1, sym_comment, - [139943] = 3, + [140111] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9182), 1, - anon_sym_LBRACE, + ACTIONS(9200), 1, + anon_sym_DQUOTE, STATE(5338), 1, sym_comment, - [139953] = 3, + [140121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, - anon_sym_RBRACE, + ACTIONS(9202), 1, + anon_sym_SQUOTE2, STATE(5339), 1, sym_comment, - [139963] = 3, + [140131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9188), 1, - anon_sym_RBRACE, + ACTIONS(9204), 1, + anon_sym_BQUOTE2, STATE(5340), 1, sym_comment, - [139973] = 3, + [140141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9190), 1, - ts_builtin_sym_end, + ACTIONS(2610), 1, + sym__unquoted_pattern, STATE(5341), 1, sym_comment, - [139983] = 3, + [140151] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9192), 1, - sym_raw_string_end, + ACTIONS(1923), 1, + sym__unquoted_pattern_in_record, STATE(5342), 1, sym_comment, - [139993] = 3, + [140161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9194), 1, - anon_sym_RBRACK, + ACTIONS(9206), 1, + anon_sym_EQ, STATE(5343), 1, sym_comment, - [140003] = 3, + [140171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9196), 1, - anon_sym_RBRACE, + ACTIONS(9208), 1, + anon_sym_GT2, STATE(5344), 1, sym_comment, - [140013] = 3, + [140181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9198), 1, - anon_sym_RPAREN, + ACTIONS(9210), 1, + anon_sym_RBRACK, STATE(5345), 1, sym_comment, - [140023] = 3, + [140191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9200), 1, - anon_sym_LBRACE, + ACTIONS(6891), 1, + anon_sym_EQ, STATE(5346), 1, sym_comment, - [140033] = 3, + [140201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9202), 1, + ACTIONS(9212), 1, anon_sym_RPAREN, STATE(5347), 1, sym_comment, - [140043] = 3, + [140211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9204), 1, - anon_sym_RBRACK, + ACTIONS(7759), 1, + sym__unquoted_pattern, STATE(5348), 1, sym_comment, - [140053] = 3, - ACTIONS(103), 1, + [140221] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(319), 1, + anon_sym_RBRACE, STATE(5349), 1, sym_comment, - [140063] = 3, + [140231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9206), 1, - anon_sym_RBRACE, + ACTIONS(9214), 1, + anon_sym_GT2, STATE(5350), 1, sym_comment, - [140073] = 3, + [140241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern, + ACTIONS(9216), 1, + anon_sym_RBRACK, STATE(5351), 1, sym_comment, - [140083] = 3, + [140251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9208), 1, + ACTIONS(9218), 1, anon_sym_RBRACK, STATE(5352), 1, sym_comment, - [140093] = 3, + [140261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(315), 1, + ACTIONS(9220), 1, anon_sym_RBRACE, STATE(5353), 1, sym_comment, - [140103] = 3, + [140271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9210), 1, - anon_sym_RPAREN, + ACTIONS(9222), 1, + anon_sym_RBRACE, STATE(5354), 1, sym_comment, - [140113] = 3, + [140281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9212), 1, - anon_sym_RPAREN, + ACTIONS(9224), 1, + anon_sym_RBRACK, STATE(5355), 1, sym_comment, - [140123] = 3, + [140291] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8678), 1, - anon_sym_LBRACE, + ACTIONS(9226), 1, + anon_sym_RBRACK, STATE(5356), 1, sym_comment, - [140133] = 3, - ACTIONS(103), 1, + [140301] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9214), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9228), 1, + anon_sym_RBRACE, STATE(5357), 1, sym_comment, - [140143] = 3, - ACTIONS(3), 1, + [140311] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(363), 1, - anon_sym_RPAREN2, + ACTIONS(9230), 1, + aux_sym_shebang_token1, STATE(5358), 1, sym_comment, - [140153] = 3, + [140321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9216), 1, - sym_raw_string_content, + ACTIONS(9232), 1, + anon_sym_RPAREN, STATE(5359), 1, sym_comment, - [140163] = 3, + [140331] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7957), 1, - anon_sym_LBRACK2, + ACTIONS(9234), 1, + anon_sym_DQUOTE, STATE(5360), 1, sym_comment, - [140173] = 3, - ACTIONS(103), 1, + [140341] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9218), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9236), 1, + anon_sym_EQ, STATE(5361), 1, sym_comment, - [140183] = 3, - ACTIONS(103), 1, + [140351] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9220), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9238), 1, + anon_sym_SQUOTE2, STATE(5362), 1, sym_comment, - [140193] = 3, + [140361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9222), 1, - anon_sym_DASH_GT, + ACTIONS(9240), 1, + sym_raw_string_content, STATE(5363), 1, sym_comment, - [140203] = 3, - ACTIONS(103), 1, + [140371] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9224), 1, - aux_sym_comment_token1, + ACTIONS(8120), 1, + anon_sym_LBRACK2, STATE(5364), 1, sym_comment, - [140213] = 3, - ACTIONS(3), 1, + [140381] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_RBRACE, + ACTIONS(9242), 1, + aux_sym__str_single_quotes_token1, STATE(5365), 1, sym_comment, - [140223] = 3, - ACTIONS(103), 1, + [140391] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9228), 1, - sym__space, + ACTIONS(9244), 1, + aux_sym__str_back_ticks_token1, STATE(5366), 1, sym_comment, - [140233] = 3, + [140401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9230), 1, - anon_sym_RBRACE, + ACTIONS(9246), 1, + anon_sym_BQUOTE2, STATE(5367), 1, sym_comment, - [140243] = 3, + [140411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_RBRACK, + ACTIONS(9248), 1, + anon_sym_RBRACE, STATE(5368), 1, sym_comment, - [140253] = 3, - ACTIONS(3), 1, + [140421] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9234), 1, - anon_sym_RPAREN, + ACTIONS(9250), 1, + aux_sym_cmd_identifier_token6, STATE(5369), 1, sym_comment, - [140263] = 3, - ACTIONS(3), 1, + [140431] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9236), 1, - anon_sym_RBRACE, + ACTIONS(9252), 1, + sym__space, STATE(5370), 1, sym_comment, - [140273] = 3, + [140441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, + ACTIONS(9254), 1, + anon_sym_EQ, STATE(5371), 1, sym_comment, - [140283] = 3, + [140451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9256), 1, + anon_sym_RPAREN, STATE(5372), 1, sym_comment, - [140293] = 3, - ACTIONS(3), 1, + [140461] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9258), 1, + aux_sym_cmd_identifier_token6, STATE(5373), 1, sym_comment, - [140303] = 3, + [140471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9238), 1, - anon_sym_PIPE, + ACTIONS(301), 1, + anon_sym_RBRACE, STATE(5374), 1, sym_comment, - [140313] = 3, + [140481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1901), 1, + sym__table_head_separator, STATE(5375), 1, sym_comment, - [140323] = 3, + [140491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9240), 1, - anon_sym_DQUOTE, + ACTIONS(6531), 1, + anon_sym_EQ, STATE(5376), 1, sym_comment, - [140333] = 3, + [140501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9242), 1, - anon_sym_SQUOTE2, + ACTIONS(9260), 1, + ts_builtin_sym_end, STATE(5377), 1, sym_comment, - [140343] = 3, + [140511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9244), 1, - anon_sym_BQUOTE2, + ACTIONS(9262), 1, + anon_sym_RBRACK, STATE(5378), 1, sym_comment, - [140353] = 3, + [140521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9246), 1, - anon_sym_RBRACK, + ACTIONS(9264), 1, + anon_sym_RBRACE, STATE(5379), 1, sym_comment, - [140363] = 3, + [140531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9248), 1, - anon_sym_RBRACE, + ACTIONS(2834), 1, + anon_sym_COLON2, STATE(5380), 1, sym_comment, - [140373] = 3, + [140541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9250), 1, - anon_sym_EQ, + ACTIONS(2610), 1, + sym__unquoted_pattern_in_record, STATE(5381), 1, sym_comment, - [140383] = 3, - ACTIONS(103), 1, + [140551] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9252), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9266), 1, + anon_sym_RBRACE, STATE(5382), 1, sym_comment, - [140393] = 3, + [140561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9254), 1, + ACTIONS(9268), 1, anon_sym_RBRACE, STATE(5383), 1, sym_comment, - [140403] = 3, - ACTIONS(103), 1, + [140571] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9256), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9270), 1, + anon_sym_RBRACE, STATE(5384), 1, sym_comment, - [140413] = 3, + [140581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - anon_sym_RBRACK, + ACTIONS(9272), 1, + anon_sym_RPAREN, STATE(5385), 1, sym_comment, - [140423] = 3, + [140591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9260), 1, - anon_sym_RBRACE, + ACTIONS(9274), 1, + anon_sym_LBRACE, STATE(5386), 1, sym_comment, - [140433] = 3, + [140601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(355), 1, - anon_sym_RPAREN2, + ACTIONS(9274), 1, + anon_sym_LBRACE, STATE(5387), 1, sym_comment, - [140443] = 3, + [140611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9262), 1, - anon_sym_GT2, + ACTIONS(9276), 1, + anon_sym_RPAREN, STATE(5388), 1, sym_comment, - [140453] = 3, + [140621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9264), 1, - anon_sym_RBRACE, + ACTIONS(9278), 1, + anon_sym_RBRACK, STATE(5389), 1, sym_comment, - [140463] = 3, + [140631] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9266), 1, - anon_sym_RPAREN, + ACTIONS(9280), 1, + anon_sym_LBRACE, STATE(5390), 1, sym_comment, - [140473] = 3, + [140641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9268), 1, - anon_sym_RBRACK, + ACTIONS(2124), 1, + sym__unquoted_pattern_in_record, STATE(5391), 1, sym_comment, - [140483] = 3, - ACTIONS(103), 1, + [140651] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9270), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9282), 1, + anon_sym_RBRACE, STATE(5392), 1, sym_comment, - [140493] = 3, + [140661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9272), 1, - anon_sym_RBRACE, + ACTIONS(9284), 1, + anon_sym_RBRACK, STATE(5393), 1, sym_comment, - [140503] = 3, + [140671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9274), 1, - anon_sym_EQ, + ACTIONS(9286), 1, + anon_sym_RBRACK, STATE(5394), 1, sym_comment, - [140513] = 3, - ACTIONS(3), 1, + [140681] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9276), 1, - anon_sym_RBRACE, + ACTIONS(9288), 1, + aux_sym_cmd_identifier_token6, STATE(5395), 1, sym_comment, - [140523] = 3, - ACTIONS(3), 1, + [140691] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9278), 1, - anon_sym_GT2, + ACTIONS(9290), 1, + aux_sym_cmd_identifier_token6, STATE(5396), 1, sym_comment, - [140533] = 3, + [140701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_EQ2, + ACTIONS(9292), 1, + anon_sym_RBRACE, STATE(5397), 1, sym_comment, - [140543] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(5398), 1, - sym_comment, - [140553] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9280), 1, - anon_sym_RPAREN, - STATE(5399), 1, - sym_comment, - [140563] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - sym__unquoted_pattern_in_record, - STATE(5400), 1, - sym_comment, - [140573] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9282), 1, - aux_sym_cmd_identifier_token2, - STATE(5401), 1, - sym_comment, - [140583] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9284), 1, - sym_raw_string_content, - STATE(5402), 1, - sym_comment, - [140593] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6344), 1, - anon_sym_LBRACK2, - STATE(5403), 1, - sym_comment, - [140603] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9286), 1, - aux_sym__str_single_quotes_token1, - STATE(5404), 1, - sym_comment, - [140613] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9288), 1, - aux_sym__str_back_ticks_token1, - STATE(5405), 1, - sym_comment, - [140623] = 3, + [140711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9290), 1, - anon_sym_GT2, - STATE(5406), 1, - sym_comment, - [140633] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9292), 1, - sym__space, - STATE(5407), 1, + ACTIONS(365), 1, + anon_sym_RPAREN2, + STATE(5398), 1, sym_comment, - [140643] = 3, + [140721] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9294), 1, - anon_sym_RPAREN, - STATE(5408), 1, + anon_sym_EQ_GT, + STATE(5399), 1, sym_comment, - [140653] = 3, - ACTIONS(3), 1, + [140731] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9296), 1, - anon_sym_GT2, - STATE(5409), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5400), 1, sym_comment, - [140663] = 3, + [140741] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9298), 1, - anon_sym_RPAREN, - STATE(5410), 1, + sym_raw_string_content, + STATE(5401), 1, sym_comment, - [140673] = 3, + [140751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6553), 1, - anon_sym_EQ, - STATE(5411), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_record, + STATE(5402), 1, sym_comment, - [140683] = 3, - ACTIONS(3), 1, + [140761] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9300), 1, - sym_raw_string_content, - STATE(5412), 1, + aux_sym_cmd_identifier_token2, + STATE(5403), 1, sym_comment, - [140693] = 3, + [140771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4534), 1, - anon_sym_LBRACK2, - STATE(5413), 1, - sym_comment, - [140703] = 3, - ACTIONS(103), 1, - anon_sym_POUND, ACTIONS(9302), 1, - aux_sym__str_single_quotes_token1, - STATE(5414), 1, + anon_sym_RBRACE, + STATE(5404), 1, sym_comment, - [140713] = 3, - ACTIONS(103), 1, + [140781] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9304), 1, - aux_sym__str_back_ticks_token1, - STATE(5415), 1, + anon_sym_RPAREN, + STATE(5405), 1, sym_comment, - [140723] = 3, + [140791] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9306), 1, sym_raw_string_content, - STATE(5416), 1, + STATE(5406), 1, sym_comment, - [140733] = 3, + [140801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5944), 1, + ACTIONS(6340), 1, anon_sym_LBRACK2, - STATE(5417), 1, + STATE(5407), 1, sym_comment, - [140743] = 3, - ACTIONS(103), 1, + [140811] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9308), 1, aux_sym__str_single_quotes_token1, - STATE(5418), 1, + STATE(5408), 1, sym_comment, - [140753] = 3, - ACTIONS(103), 1, + [140821] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9310), 1, aux_sym__str_back_ticks_token1, - STATE(5419), 1, + STATE(5409), 1, sym_comment, - [140763] = 3, + [140831] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9312), 1, - sym_raw_string_content, - STATE(5420), 1, - sym_comment, - [140773] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_LBRACK2, - STATE(5421), 1, + anon_sym_RPAREN, + STATE(5410), 1, sym_comment, - [140783] = 3, - ACTIONS(103), 1, + [140841] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9314), 1, - aux_sym__str_single_quotes_token1, - STATE(5422), 1, + sym__space, + STATE(5411), 1, sym_comment, - [140793] = 3, - ACTIONS(103), 1, + [140851] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9316), 1, - aux_sym__str_back_ticks_token1, - STATE(5423), 1, + anon_sym_GT2, + STATE(5412), 1, sym_comment, - [140803] = 3, - ACTIONS(3), 1, + [140861] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9318), 1, - sym_raw_string_content, - STATE(5424), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5413), 1, sym_comment, - [140813] = 3, - ACTIONS(103), 1, + [140871] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9320), 1, - aux_sym__str_single_quotes_token1, - STATE(5425), 1, + anon_sym_RBRACK, + STATE(5414), 1, sym_comment, - [140823] = 3, - ACTIONS(103), 1, + [140881] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9322), 1, - aux_sym__str_back_ticks_token1, - STATE(5426), 1, + sym_raw_string_end, + STATE(5415), 1, sym_comment, - [140833] = 3, + [140891] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9324), 1, sym_raw_string_content, - STATE(5427), 1, + STATE(5416), 1, sym_comment, - [140843] = 3, - ACTIONS(103), 1, + [140901] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4546), 1, + anon_sym_LBRACK2, + STATE(5417), 1, + sym_comment, + [140911] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9326), 1, aux_sym__str_single_quotes_token1, - STATE(5428), 1, + STATE(5418), 1, sym_comment, - [140853] = 3, - ACTIONS(103), 1, + [140921] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9328), 1, aux_sym__str_back_ticks_token1, - STATE(5429), 1, + STATE(5419), 1, sym_comment, - [140863] = 3, + [140931] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9330), 1, sym_raw_string_content, - STATE(5430), 1, + STATE(5420), 1, + sym_comment, + [140941] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5916), 1, + anon_sym_LBRACK2, + STATE(5421), 1, sym_comment, - [140873] = 3, - ACTIONS(103), 1, + [140951] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9332), 1, aux_sym__str_single_quotes_token1, - STATE(5431), 1, + STATE(5422), 1, sym_comment, - [140883] = 3, - ACTIONS(103), 1, + [140961] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9334), 1, aux_sym__str_back_ticks_token1, - STATE(5432), 1, + STATE(5423), 1, sym_comment, - [140893] = 3, + [140971] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9336), 1, sym_raw_string_content, - STATE(5433), 1, + STATE(5424), 1, + sym_comment, + [140981] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5971), 1, + anon_sym_LBRACK2, + STATE(5425), 1, sym_comment, - [140903] = 3, - ACTIONS(103), 1, + [140991] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9338), 1, aux_sym__str_single_quotes_token1, - STATE(5434), 1, + STATE(5426), 1, sym_comment, - [140913] = 3, - ACTIONS(103), 1, + [141001] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9340), 1, aux_sym__str_back_ticks_token1, - STATE(5435), 1, + STATE(5427), 1, sym_comment, - [140923] = 3, + [141011] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9342), 1, sym_raw_string_content, - STATE(5436), 1, + STATE(5428), 1, sym_comment, - [140933] = 3, - ACTIONS(103), 1, + [141021] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9344), 1, aux_sym__str_single_quotes_token1, - STATE(5437), 1, + STATE(5429), 1, sym_comment, - [140943] = 3, - ACTIONS(103), 1, + [141031] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9346), 1, aux_sym__str_back_ticks_token1, - STATE(5438), 1, + STATE(5430), 1, sym_comment, - [140953] = 3, + [141041] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9348), 1, sym_raw_string_content, - STATE(5439), 1, + STATE(5431), 1, sym_comment, - [140963] = 3, - ACTIONS(103), 1, + [141051] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9350), 1, aux_sym__str_single_quotes_token1, - STATE(5440), 1, + STATE(5432), 1, sym_comment, - [140973] = 3, - ACTIONS(103), 1, + [141061] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9352), 1, aux_sym__str_back_ticks_token1, - STATE(5441), 1, + STATE(5433), 1, sym_comment, - [140983] = 3, + [141071] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9354), 1, sym_raw_string_content, - STATE(5442), 1, + STATE(5434), 1, sym_comment, - [140993] = 3, - ACTIONS(103), 1, + [141081] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9356), 1, aux_sym__str_single_quotes_token1, - STATE(5443), 1, + STATE(5435), 1, sym_comment, - [141003] = 3, - ACTIONS(103), 1, + [141091] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9358), 1, aux_sym__str_back_ticks_token1, - STATE(5444), 1, + STATE(5436), 1, sym_comment, - [141013] = 3, + [141101] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9360), 1, sym_raw_string_content, - STATE(5445), 1, + STATE(5437), 1, sym_comment, - [141023] = 3, - ACTIONS(103), 1, + [141111] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9362), 1, aux_sym__str_single_quotes_token1, - STATE(5446), 1, + STATE(5438), 1, sym_comment, - [141033] = 3, - ACTIONS(103), 1, + [141121] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9364), 1, aux_sym__str_back_ticks_token1, - STATE(5447), 1, + STATE(5439), 1, sym_comment, - [141043] = 3, + [141131] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9366), 1, sym_raw_string_content, - STATE(5448), 1, + STATE(5440), 1, sym_comment, - [141053] = 3, - ACTIONS(103), 1, + [141141] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9368), 1, aux_sym__str_single_quotes_token1, - STATE(5449), 1, + STATE(5441), 1, sym_comment, - [141063] = 3, - ACTIONS(103), 1, + [141151] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9370), 1, aux_sym__str_back_ticks_token1, - STATE(5450), 1, + STATE(5442), 1, sym_comment, - [141073] = 3, + [141161] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9372), 1, sym_raw_string_content, - STATE(5451), 1, + STATE(5443), 1, sym_comment, - [141083] = 3, - ACTIONS(103), 1, + [141171] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9374), 1, aux_sym__str_single_quotes_token1, - STATE(5452), 1, + STATE(5444), 1, sym_comment, - [141093] = 3, - ACTIONS(103), 1, + [141181] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9376), 1, aux_sym__str_back_ticks_token1, - STATE(5453), 1, + STATE(5445), 1, sym_comment, - [141103] = 3, + [141191] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9378), 1, sym_raw_string_content, - STATE(5454), 1, + STATE(5446), 1, sym_comment, - [141113] = 3, - ACTIONS(103), 1, + [141201] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9380), 1, aux_sym__str_single_quotes_token1, - STATE(5455), 1, + STATE(5447), 1, sym_comment, - [141123] = 3, - ACTIONS(103), 1, + [141211] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9382), 1, aux_sym__str_back_ticks_token1, - STATE(5456), 1, + STATE(5448), 1, sym_comment, - [141133] = 3, + [141221] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9384), 1, sym_raw_string_content, - STATE(5457), 1, + STATE(5449), 1, sym_comment, - [141143] = 3, - ACTIONS(103), 1, + [141231] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9386), 1, aux_sym__str_single_quotes_token1, - STATE(5458), 1, + STATE(5450), 1, sym_comment, - [141153] = 3, - ACTIONS(103), 1, + [141241] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9388), 1, aux_sym__str_back_ticks_token1, - STATE(5459), 1, + STATE(5451), 1, sym_comment, - [141163] = 3, + [141251] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9390), 1, sym_raw_string_content, - STATE(5460), 1, + STATE(5452), 1, sym_comment, - [141173] = 3, - ACTIONS(103), 1, + [141261] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9392), 1, aux_sym__str_single_quotes_token1, - STATE(5461), 1, + STATE(5453), 1, sym_comment, - [141183] = 3, - ACTIONS(103), 1, + [141271] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9394), 1, aux_sym__str_back_ticks_token1, - STATE(5462), 1, + STATE(5454), 1, sym_comment, - [141193] = 3, + [141281] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9396), 1, sym_raw_string_content, - STATE(5463), 1, + STATE(5455), 1, sym_comment, - [141203] = 3, - ACTIONS(103), 1, + [141291] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9398), 1, aux_sym__str_single_quotes_token1, - STATE(5464), 1, + STATE(5456), 1, sym_comment, - [141213] = 3, - ACTIONS(103), 1, + [141301] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9400), 1, aux_sym__str_back_ticks_token1, - STATE(5465), 1, + STATE(5457), 1, sym_comment, - [141223] = 3, + [141311] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9402), 1, - anon_sym_RBRACE, + sym_raw_string_content, + STATE(5458), 1, + sym_comment, + [141321] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9404), 1, + aux_sym__str_single_quotes_token1, + STATE(5459), 1, + sym_comment, + [141331] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9406), 1, + aux_sym__str_back_ticks_token1, + STATE(5460), 1, + sym_comment, + [141341] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9408), 1, + sym_raw_string_content, + STATE(5461), 1, + sym_comment, + [141351] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9410), 1, + aux_sym__str_single_quotes_token1, + STATE(5462), 1, + sym_comment, + [141361] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9412), 1, + aux_sym__str_back_ticks_token1, + STATE(5463), 1, + sym_comment, + [141371] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9414), 1, + sym_raw_string_content, + STATE(5464), 1, + sym_comment, + [141381] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9416), 1, + aux_sym__str_single_quotes_token1, + STATE(5465), 1, + sym_comment, + [141391] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9418), 1, + aux_sym__str_back_ticks_token1, STATE(5466), 1, sym_comment, - [141233] = 3, + [141401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9404), 1, - sym_raw_string_end, + ACTIONS(9420), 1, + sym_raw_string_content, STATE(5467), 1, sym_comment, - [141243] = 3, - ACTIONS(3), 1, + [141411] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8732), 1, - anon_sym_LPAREN2, + ACTIONS(9422), 1, + aux_sym__str_single_quotes_token1, STATE(5468), 1, sym_comment, - [141253] = 3, - ACTIONS(3), 1, + [141421] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__table_head_separator, + ACTIONS(9424), 1, + aux_sym__str_back_ticks_token1, STATE(5469), 1, sym_comment, - [141263] = 3, - ACTIONS(103), 1, + [141431] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9406), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9426), 1, + ts_builtin_sym_end, STATE(5470), 1, sym_comment, - [141273] = 3, - ACTIONS(3), 1, + [141441] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9408), 1, - anon_sym_GT2, + ACTIONS(9428), 1, + aux_sym_comment_token1, STATE(5471), 1, sym_comment, - [141283] = 3, + [141451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9410), 1, - anon_sym_in, + ACTIONS(8674), 1, + anon_sym_LPAREN2, STATE(5472), 1, sym_comment, - [141293] = 3, - ACTIONS(3), 1, + [141461] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9412), 1, - anon_sym_RBRACK, + ACTIONS(1935), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5473), 1, sym_comment, - [141303] = 3, + [141471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_RPAREN2, + ACTIONS(9430), 1, + anon_sym_RBRACK, STATE(5474), 1, sym_comment, - [141313] = 3, + [141481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9416), 1, - anon_sym_RBRACK, + ACTIONS(9432), 1, + anon_sym_RPAREN, STATE(5475), 1, sym_comment, - [141323] = 3, + [141491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1716), 1, - anon_sym_COLON2, + ACTIONS(9434), 1, + anon_sym_in, STATE(5476), 1, sym_comment, - [141333] = 3, + [141501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9436), 1, + anon_sym_RBRACE, STATE(5477), 1, sym_comment, - [141343] = 3, + [141511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9418), 1, + ACTIONS(9438), 1, anon_sym_GT2, STATE(5478), 1, sym_comment, - [141353] = 3, + [141521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9420), 1, - anon_sym_RPAREN, + ACTIONS(9440), 1, + anon_sym_RBRACE, STATE(5479), 1, sym_comment, - [141363] = 3, + [141531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9422), 1, - anon_sym_GT2, + ACTIONS(9442), 1, + anon_sym_RPAREN, STATE(5480), 1, sym_comment, - [141373] = 3, + [141541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9424), 1, - anon_sym_RBRACE, + ACTIONS(9444), 1, + sym__table_head_separator, STATE(5481), 1, sym_comment, - [141383] = 3, + [141551] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9426), 1, - sym_identifier, + ACTIONS(9446), 1, + anon_sym_RBRACE, STATE(5482), 1, sym_comment, - [141393] = 3, + [141561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9428), 1, - anon_sym_DQUOTE, + ACTIONS(9448), 1, + anon_sym_RBRACE, STATE(5483), 1, sym_comment, - [141403] = 3, + [141571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9430), 1, - anon_sym_SQUOTE2, + ACTIONS(9450), 1, + anon_sym_GT2, STATE(5484), 1, sym_comment, - [141413] = 3, + [141581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_BQUOTE2, + ACTIONS(9452), 1, + anon_sym_DQUOTE, STATE(5485), 1, sym_comment, - [141423] = 3, + [141591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9434), 1, - anon_sym_GT2, + ACTIONS(9454), 1, + anon_sym_SQUOTE2, STATE(5486), 1, sym_comment, - [141433] = 3, + [141601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9436), 1, - anon_sym_EQ, + ACTIONS(9456), 1, + anon_sym_BQUOTE2, STATE(5487), 1, sym_comment, - [141443] = 3, + [141611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_LT, + ACTIONS(1711), 1, + sym__unquoted_pattern, STATE(5488), 1, sym_comment, - [141453] = 3, + [141621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9440), 1, - anon_sym_RBRACE, + ACTIONS(9458), 1, + anon_sym_RBRACK, STATE(5489), 1, sym_comment, - [141463] = 3, - ACTIONS(103), 1, + [141631] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9442), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9460), 1, + anon_sym_GT2, STATE(5490), 1, sym_comment, - [141473] = 3, - ACTIONS(103), 1, + [141641] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9444), 1, + ACTIONS(9462), 1, aux_sym_cmd_identifier_token6, STATE(5491), 1, sym_comment, - [141483] = 3, + [141651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9446), 1, - sym_identifier, + ACTIONS(9464), 1, + anon_sym_LT, STATE(5492), 1, sym_comment, - [141493] = 3, + [141661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9448), 1, - anon_sym_RBRACK, + ACTIONS(9466), 1, + anon_sym_GT2, STATE(5493), 1, sym_comment, - [141503] = 3, + [141671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9450), 1, - anon_sym_RBRACE, + ACTIONS(9468), 1, + sym__table_head_separator, STATE(5494), 1, sym_comment, - [141513] = 3, + [141681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9452), 1, + ACTIONS(9470), 1, anon_sym_RPAREN, STATE(5495), 1, sym_comment, - [141523] = 3, + [141691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__unquoted_pattern, + ACTIONS(9472), 1, + anon_sym_RBRACE, STATE(5496), 1, sym_comment, - [141533] = 3, - ACTIONS(103), 1, + [141701] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9454), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9474), 1, + anon_sym_RBRACK, STATE(5497), 1, sym_comment, - [141543] = 3, + [141711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_EQ2, + ACTIONS(9476), 1, + anon_sym_RPAREN, STATE(5498), 1, sym_comment, - [141553] = 3, - ACTIONS(3), 1, + [141721] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9456), 1, - anon_sym_DQUOTE, + ACTIONS(9478), 1, + aux_sym_cmd_identifier_token6, STATE(5499), 1, sym_comment, - [141563] = 3, + [141731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9458), 1, - anon_sym_EQ, + ACTIONS(9480), 1, + anon_sym_GT2, STATE(5500), 1, sym_comment, - [141573] = 3, + [141741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_RBRACK, + ACTIONS(9482), 1, + anon_sym_GT2, STATE(5501), 1, sym_comment, - [141583] = 3, - ACTIONS(103), 1, + [141751] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2732), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9484), 1, + anon_sym_RBRACE, STATE(5502), 1, sym_comment, - [141593] = 3, - ACTIONS(103), 1, + [141761] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1740), 1, + anon_sym_COLON2, STATE(5503), 1, sym_comment, - [141603] = 3, - ACTIONS(103), 1, + [141771] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2933), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1659), 1, + sym__unquoted_pattern, STATE(5504), 1, sym_comment, - [141613] = 3, + [141781] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9462), 1, + ACTIONS(9486), 1, anon_sym_RBRACE, STATE(5505), 1, sym_comment, - [141623] = 3, + [141791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9464), 1, - anon_sym_SQUOTE2, + ACTIONS(6591), 1, + anon_sym_EQ, STATE(5506), 1, sym_comment, - [141633] = 3, + [141801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9466), 1, - anon_sym_BQUOTE2, + ACTIONS(9488), 1, + anon_sym_RBRACE, STATE(5507), 1, sym_comment, - [141643] = 3, + [141811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9468), 1, - sym_raw_string_end, + ACTIONS(2686), 1, + sym__unquoted_pattern, STATE(5508), 1, sym_comment, - [141653] = 3, + [141821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9470), 1, + ACTIONS(9490), 1, anon_sym_RBRACE, STATE(5509), 1, sym_comment, - [141663] = 3, + [141831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9472), 1, - anon_sym_LT, + ACTIONS(9492), 1, + sym_attribute_identifier, STATE(5510), 1, sym_comment, - [141673] = 3, - ACTIONS(103), 1, + [141841] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9474), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9494), 1, + aux_sym_cmd_identifier_token6, STATE(5511), 1, sym_comment, - [141683] = 3, + [141851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9476), 1, - anon_sym_LPAREN2, + ACTIONS(9496), 1, + anon_sym_RPAREN2, STATE(5512), 1, sym_comment, - [141693] = 3, - ACTIONS(3), 1, + [141861] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9478), 1, - anon_sym_BQUOTE2, + ACTIONS(2786), 1, + aux_sym_cmd_identifier_token2, STATE(5513), 1, sym_comment, - [141703] = 3, + [141871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9498), 1, + anon_sym_LT, STATE(5514), 1, sym_comment, - [141713] = 3, + [141881] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9480), 1, - anon_sym_GT2, + ACTIONS(9500), 1, + sym_raw_string_end, STATE(5515), 1, sym_comment, - [141723] = 3, + [141891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9482), 1, - anon_sym_RBRACK, + ACTIONS(9502), 1, + anon_sym_LT, STATE(5516), 1, sym_comment, - [141733] = 3, + [141901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9484), 1, - anon_sym_RBRACK, + ACTIONS(1659), 1, + sym__unquoted_pattern_in_record, STATE(5517), 1, sym_comment, - [141743] = 3, + [141911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9486), 1, - anon_sym_LT, + ACTIONS(9504), 1, + anon_sym_RBRACK, STATE(5518), 1, sym_comment, - [141753] = 3, - ACTIONS(103), 1, + [141921] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9488), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9506), 1, + anon_sym_LT, STATE(5519), 1, sym_comment, - [141763] = 3, + [141931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9508), 1, + anon_sym_RBRACE, STATE(5520), 1, sym_comment, - [141773] = 3, + [141941] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9490), 1, - anon_sym_RBRACE, + ACTIONS(2990), 1, + anon_sym_LBRACK2, STATE(5521), 1, sym_comment, - [141783] = 3, + [141951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9492), 1, - sym_raw_string_end, + ACTIONS(369), 1, + anon_sym_RPAREN2, STATE(5522), 1, sym_comment, - [141793] = 3, + [141961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9494), 1, - anon_sym_DQUOTE, + ACTIONS(9510), 1, + anon_sym_RBRACE, STATE(5523), 1, sym_comment, - [141803] = 3, + [141971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9496), 1, - anon_sym_SQUOTE2, + ACTIONS(9512), 1, + anon_sym_RBRACE, STATE(5524), 1, sym_comment, - [141813] = 3, - ACTIONS(3), 1, + [141981] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9498), 1, - anon_sym_BQUOTE2, + ACTIONS(1915), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5525), 1, sym_comment, - [141823] = 3, - ACTIONS(3), 1, + [141991] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6465), 1, - anon_sym_EQ, + ACTIONS(9514), 1, + aux_sym_cmd_identifier_token2, STATE(5526), 1, sym_comment, - [141833] = 3, + [142001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9500), 1, - anon_sym_RPAREN, + ACTIONS(9516), 1, + anon_sym_DQUOTE, STATE(5527), 1, sym_comment, - [141843] = 3, + [142011] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_RBRACK, + ACTIONS(9518), 1, + anon_sym_SQUOTE2, STATE(5528), 1, sym_comment, - [141853] = 1, - ACTIONS(9504), 1, + [142021] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_BQUOTE2, + STATE(5529), 1, + sym_comment, + [142031] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5350), 1, + anon_sym_EQ2, + STATE(5530), 1, + sym_comment, + [142041] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5076), 1, + sym__unquoted_pattern, + STATE(5531), 1, + sym_comment, + [142051] = 1, + ACTIONS(9522), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1289)] = 0, - [SMALL_STATE(1290)] = 73, - [SMALL_STATE(1291)] = 150, - [SMALL_STATE(1292)] = 223, - [SMALL_STATE(1293)] = 296, - [SMALL_STATE(1294)] = 439, - [SMALL_STATE(1295)] = 512, - [SMALL_STATE(1296)] = 585, - [SMALL_STATE(1297)] = 724, - [SMALL_STATE(1298)] = 797, - [SMALL_STATE(1299)] = 888, - [SMALL_STATE(1300)] = 961, - [SMALL_STATE(1301)] = 1034, - [SMALL_STATE(1302)] = 1107, - [SMALL_STATE(1303)] = 1180, - [SMALL_STATE(1304)] = 1253, - [SMALL_STATE(1305)] = 1326, - [SMALL_STATE(1306)] = 1399, - [SMALL_STATE(1307)] = 1472, - [SMALL_STATE(1308)] = 1545, - [SMALL_STATE(1309)] = 1618, - [SMALL_STATE(1310)] = 1701, - [SMALL_STATE(1311)] = 1776, - [SMALL_STATE(1312)] = 1849, - [SMALL_STATE(1313)] = 1942, - [SMALL_STATE(1314)] = 2015, - [SMALL_STATE(1315)] = 2154, - [SMALL_STATE(1316)] = 2227, - [SMALL_STATE(1317)] = 2300, - [SMALL_STATE(1318)] = 2373, - [SMALL_STATE(1319)] = 2446, - [SMALL_STATE(1320)] = 2519, - [SMALL_STATE(1321)] = 2592, - [SMALL_STATE(1322)] = 2665, - [SMALL_STATE(1323)] = 2750, + [SMALL_STATE(1290)] = 99, + [SMALL_STATE(1291)] = 172, + [SMALL_STATE(1292)] = 245, + [SMALL_STATE(1293)] = 384, + [SMALL_STATE(1294)] = 457, + [SMALL_STATE(1295)] = 530, + [SMALL_STATE(1296)] = 603, + [SMALL_STATE(1297)] = 676, + [SMALL_STATE(1298)] = 819, + [SMALL_STATE(1299)] = 892, + [SMALL_STATE(1300)] = 1035, + [SMALL_STATE(1301)] = 1108, + [SMALL_STATE(1302)] = 1181, + [SMALL_STATE(1303)] = 1254, + [SMALL_STATE(1304)] = 1331, + [SMALL_STATE(1305)] = 1404, + [SMALL_STATE(1306)] = 1477, + [SMALL_STATE(1307)] = 1550, + [SMALL_STATE(1308)] = 1623, + [SMALL_STATE(1309)] = 1696, + [SMALL_STATE(1310)] = 1769, + [SMALL_STATE(1311)] = 1842, + [SMALL_STATE(1312)] = 1937, + [SMALL_STATE(1313)] = 2010, + [SMALL_STATE(1314)] = 2107, + [SMALL_STATE(1315)] = 2180, + [SMALL_STATE(1316)] = 2253, + [SMALL_STATE(1317)] = 2328, + [SMALL_STATE(1318)] = 2401, + [SMALL_STATE(1319)] = 2486, + [SMALL_STATE(1320)] = 2559, + [SMALL_STATE(1321)] = 2632, + [SMALL_STATE(1322)] = 2705, + [SMALL_STATE(1323)] = 2778, [SMALL_STATE(1324)] = 2851, - [SMALL_STATE(1325)] = 2924, - [SMALL_STATE(1326)] = 2997, - [SMALL_STATE(1327)] = 3070, - [SMALL_STATE(1328)] = 3143, - [SMALL_STATE(1329)] = 3216, - [SMALL_STATE(1330)] = 3311, - [SMALL_STATE(1331)] = 3384, - [SMALL_STATE(1332)] = 3457, - [SMALL_STATE(1333)] = 3530, - [SMALL_STATE(1334)] = 3603, - [SMALL_STATE(1335)] = 3676, - [SMALL_STATE(1336)] = 3819, - [SMALL_STATE(1337)] = 3892, - [SMALL_STATE(1338)] = 3965, - [SMALL_STATE(1339)] = 4038, - [SMALL_STATE(1340)] = 4135, - [SMALL_STATE(1341)] = 4208, - [SMALL_STATE(1342)] = 4351, - [SMALL_STATE(1343)] = 4424, - [SMALL_STATE(1344)] = 4497, - [SMALL_STATE(1345)] = 4570, - [SMALL_STATE(1346)] = 4643, - [SMALL_STATE(1347)] = 4716, - [SMALL_STATE(1348)] = 4789, - [SMALL_STATE(1349)] = 4862, - [SMALL_STATE(1350)] = 4935, - [SMALL_STATE(1351)] = 5008, - [SMALL_STATE(1352)] = 5087, - [SMALL_STATE(1353)] = 5160, - [SMALL_STATE(1354)] = 5303, - [SMALL_STATE(1355)] = 5376, - [SMALL_STATE(1356)] = 5449, - [SMALL_STATE(1357)] = 5522, - [SMALL_STATE(1358)] = 5595, - [SMALL_STATE(1359)] = 5698, - [SMALL_STATE(1360)] = 5797, - [SMALL_STATE(1361)] = 5936, - [SMALL_STATE(1362)] = 6009, - [SMALL_STATE(1363)] = 6098, - [SMALL_STATE(1364)] = 6171, - [SMALL_STATE(1365)] = 6244, - [SMALL_STATE(1366)] = 6317, - [SMALL_STATE(1367)] = 6395, - [SMALL_STATE(1368)] = 6473, - [SMALL_STATE(1369)] = 6551, - [SMALL_STATE(1370)] = 6699, - [SMALL_STATE(1371)] = 6773, - [SMALL_STATE(1372)] = 6913, - [SMALL_STATE(1373)] = 6987, - [SMALL_STATE(1374)] = 7064, - [SMALL_STATE(1375)] = 7201, - [SMALL_STATE(1376)] = 7338, - [SMALL_STATE(1377)] = 7415, - [SMALL_STATE(1378)] = 7488, - [SMALL_STATE(1379)] = 7567, - [SMALL_STATE(1380)] = 7704, - [SMALL_STATE(1381)] = 7781, - [SMALL_STATE(1382)] = 7918, - [SMALL_STATE(1383)] = 7991, - [SMALL_STATE(1384)] = 8066, - [SMALL_STATE(1385)] = 8137, - [SMALL_STATE(1386)] = 8208, - [SMALL_STATE(1387)] = 8345, - [SMALL_STATE(1388)] = 8422, - [SMALL_STATE(1389)] = 8556, - [SMALL_STATE(1390)] = 8626, - [SMALL_STATE(1391)] = 8696, - [SMALL_STATE(1392)] = 8830, - [SMALL_STATE(1393)] = 8900, - [SMALL_STATE(1394)] = 9034, - [SMALL_STATE(1395)] = 9168, - [SMALL_STATE(1396)] = 9238, - [SMALL_STATE(1397)] = 9314, - [SMALL_STATE(1398)] = 9388, - [SMALL_STATE(1399)] = 9528, - [SMALL_STATE(1400)] = 9670, - [SMALL_STATE(1401)] = 9812, - [SMALL_STATE(1402)] = 9946, - [SMALL_STATE(1403)] = 10020, - [SMALL_STATE(1404)] = 10090, - [SMALL_STATE(1405)] = 10160, - [SMALL_STATE(1406)] = 10247, - [SMALL_STATE(1407)] = 10332, - [SMALL_STATE(1408)] = 10401, - [SMALL_STATE(1409)] = 10488, - [SMALL_STATE(1410)] = 10557, - [SMALL_STATE(1411)] = 10641, - [SMALL_STATE(1412)] = 10723, - [SMALL_STATE(1413)] = 10795, - [SMALL_STATE(1414)] = 10877, - [SMALL_STATE(1415)] = 10951, - [SMALL_STATE(1416)] = 11084, - [SMALL_STATE(1417)] = 11209, - [SMALL_STATE(1418)] = 11276, - [SMALL_STATE(1419)] = 11345, - [SMALL_STATE(1420)] = 11416, - [SMALL_STATE(1421)] = 11497, - [SMALL_STATE(1422)] = 11622, - [SMALL_STATE(1423)] = 11693, - [SMALL_STATE(1424)] = 11774, - [SMALL_STATE(1425)] = 11843, - [SMALL_STATE(1426)] = 11914, - [SMALL_STATE(1427)] = 11984, - [SMALL_STATE(1428)] = 12064, - [SMALL_STATE(1429)] = 12134, - [SMALL_STATE(1430)] = 12202, - [SMALL_STATE(1431)] = 12270, - [SMALL_STATE(1432)] = 12336, - [SMALL_STATE(1433)] = 12402, - [SMALL_STATE(1434)] = 12531, - [SMALL_STATE(1435)] = 12600, - [SMALL_STATE(1436)] = 12667, - [SMALL_STATE(1437)] = 12734, - [SMALL_STATE(1438)] = 12803, - [SMALL_STATE(1439)] = 12868, - [SMALL_STATE(1440)] = 12993, - [SMALL_STATE(1441)] = 13058, - [SMALL_STATE(1442)] = 13123, - [SMALL_STATE(1443)] = 13252, - [SMALL_STATE(1444)] = 13381, - [SMALL_STATE(1445)] = 13510, - [SMALL_STATE(1446)] = 13589, - [SMALL_STATE(1447)] = 13655, - [SMALL_STATE(1448)] = 13719, - [SMALL_STATE(1449)] = 13787, - [SMALL_STATE(1450)] = 13851, - [SMALL_STATE(1451)] = 13915, - [SMALL_STATE(1452)] = 13981, - [SMALL_STATE(1453)] = 14049, + [SMALL_STATE(1325)] = 2930, + [SMALL_STATE(1326)] = 3003, + [SMALL_STATE(1327)] = 3076, + [SMALL_STATE(1328)] = 3149, + [SMALL_STATE(1329)] = 3224, + [SMALL_STATE(1330)] = 3367, + [SMALL_STATE(1331)] = 3440, + [SMALL_STATE(1332)] = 3513, + [SMALL_STATE(1333)] = 3586, + [SMALL_STATE(1334)] = 3659, + [SMALL_STATE(1335)] = 3732, + [SMALL_STATE(1336)] = 3871, + [SMALL_STATE(1337)] = 3944, + [SMALL_STATE(1338)] = 4017, + [SMALL_STATE(1339)] = 4092, + [SMALL_STATE(1340)] = 4165, + [SMALL_STATE(1341)] = 4238, + [SMALL_STATE(1342)] = 4311, + [SMALL_STATE(1343)] = 4384, + [SMALL_STATE(1344)] = 4457, + [SMALL_STATE(1345)] = 4558, + [SMALL_STATE(1346)] = 4631, + [SMALL_STATE(1347)] = 4704, + [SMALL_STATE(1348)] = 4807, + [SMALL_STATE(1349)] = 4880, + [SMALL_STATE(1350)] = 4971, + [SMALL_STATE(1351)] = 5050, + [SMALL_STATE(1352)] = 5193, + [SMALL_STATE(1353)] = 5266, + [SMALL_STATE(1354)] = 5405, + [SMALL_STATE(1355)] = 5478, + [SMALL_STATE(1356)] = 5551, + [SMALL_STATE(1357)] = 5624, + [SMALL_STATE(1358)] = 5697, + [SMALL_STATE(1359)] = 5770, + [SMALL_STATE(1360)] = 5843, + [SMALL_STATE(1361)] = 5926, + [SMALL_STATE(1362)] = 5999, + [SMALL_STATE(1363)] = 6072, + [SMALL_STATE(1364)] = 6151, + [SMALL_STATE(1365)] = 6240, + [SMALL_STATE(1366)] = 6313, + [SMALL_STATE(1367)] = 6392, + [SMALL_STATE(1368)] = 6465, + [SMALL_STATE(1369)] = 6558, + [SMALL_STATE(1370)] = 6631, + [SMALL_STATE(1371)] = 6704, + [SMALL_STATE(1372)] = 6782, + [SMALL_STATE(1373)] = 6860, + [SMALL_STATE(1374)] = 7008, + [SMALL_STATE(1375)] = 7080, + [SMALL_STATE(1376)] = 7160, + [SMALL_STATE(1377)] = 7236, + [SMALL_STATE(1378)] = 7314, + [SMALL_STATE(1379)] = 7386, + [SMALL_STATE(1380)] = 7460, + [SMALL_STATE(1381)] = 7600, + [SMALL_STATE(1382)] = 7678, + [SMALL_STATE(1383)] = 7752, + [SMALL_STATE(1384)] = 7889, + [SMALL_STATE(1385)] = 7960, + [SMALL_STATE(1386)] = 8031, + [SMALL_STATE(1387)] = 8168, + [SMALL_STATE(1388)] = 8239, + [SMALL_STATE(1389)] = 8314, + [SMALL_STATE(1390)] = 8385, + [SMALL_STATE(1391)] = 8460, + [SMALL_STATE(1392)] = 8597, + [SMALL_STATE(1393)] = 8674, + [SMALL_STATE(1394)] = 8811, + [SMALL_STATE(1395)] = 8948, + [SMALL_STATE(1396)] = 9019, + [SMALL_STATE(1397)] = 9090, + [SMALL_STATE(1398)] = 9224, + [SMALL_STATE(1399)] = 9364, + [SMALL_STATE(1400)] = 9434, + [SMALL_STATE(1401)] = 9504, + [SMALL_STATE(1402)] = 9592, + [SMALL_STATE(1403)] = 9680, + [SMALL_STATE(1404)] = 9814, + [SMALL_STATE(1405)] = 9948, + [SMALL_STATE(1406)] = 10090, + [SMALL_STATE(1407)] = 10224, + [SMALL_STATE(1408)] = 10366, + [SMALL_STATE(1409)] = 10500, + [SMALL_STATE(1410)] = 10573, + [SMALL_STATE(1411)] = 10648, + [SMALL_STATE(1412)] = 10733, + [SMALL_STATE(1413)] = 10801, + [SMALL_STATE(1414)] = 10883, + [SMALL_STATE(1415)] = 10955, + [SMALL_STATE(1416)] = 11039, + [SMALL_STATE(1417)] = 11109, + [SMALL_STATE(1418)] = 11179, + [SMALL_STATE(1419)] = 11261, + [SMALL_STATE(1420)] = 11328, + [SMALL_STATE(1421)] = 11395, + [SMALL_STATE(1422)] = 11466, + [SMALL_STATE(1423)] = 11537, + [SMALL_STATE(1424)] = 11670, + [SMALL_STATE(1425)] = 11751, + [SMALL_STATE(1426)] = 11832, + [SMALL_STATE(1427)] = 11957, + [SMALL_STATE(1428)] = 12082, + [SMALL_STATE(1429)] = 12152, + [SMALL_STATE(1430)] = 12222, + [SMALL_STATE(1431)] = 12290, + [SMALL_STATE(1432)] = 12370, + [SMALL_STATE(1433)] = 12438, + [SMALL_STATE(1434)] = 12503, + [SMALL_STATE(1435)] = 12632, + [SMALL_STATE(1436)] = 12761, + [SMALL_STATE(1437)] = 12828, + [SMALL_STATE(1438)] = 12907, + [SMALL_STATE(1439)] = 12972, + [SMALL_STATE(1440)] = 13037, + [SMALL_STATE(1441)] = 13166, + [SMALL_STATE(1442)] = 13235, + [SMALL_STATE(1443)] = 13302, + [SMALL_STATE(1444)] = 13431, + [SMALL_STATE(1445)] = 13500, + [SMALL_STATE(1446)] = 13625, + [SMALL_STATE(1447)] = 13689, + [SMALL_STATE(1448)] = 13757, + [SMALL_STATE(1449)] = 13821, + [SMALL_STATE(1450)] = 13885, + [SMALL_STATE(1451)] = 13953, + [SMALL_STATE(1452)] = 14019, + [SMALL_STATE(1453)] = 14085, [SMALL_STATE(1454)] = 14148, - [SMALL_STATE(1455)] = 14211, - [SMALL_STATE(1456)] = 14274, - [SMALL_STATE(1457)] = 14345, - [SMALL_STATE(1458)] = 14408, - [SMALL_STATE(1459)] = 14479, - [SMALL_STATE(1460)] = 14544, - [SMALL_STATE(1461)] = 14643, - [SMALL_STATE(1462)] = 14708, - [SMALL_STATE(1463)] = 14806, - [SMALL_STATE(1464)] = 14900, - [SMALL_STATE(1465)] = 14972, - [SMALL_STATE(1466)] = 15066, - [SMALL_STATE(1467)] = 15136, - [SMALL_STATE(1468)] = 15202, - [SMALL_STATE(1469)] = 15264, - [SMALL_STATE(1470)] = 15358, - [SMALL_STATE(1471)] = 15420, - [SMALL_STATE(1472)] = 15486, - [SMALL_STATE(1473)] = 15556, - [SMALL_STATE(1474)] = 15654, - [SMALL_STATE(1475)] = 15716, - [SMALL_STATE(1476)] = 15783, - [SMALL_STATE(1477)] = 15850, - [SMALL_STATE(1478)] = 15921, - [SMALL_STATE(1479)] = 15988, - [SMALL_STATE(1480)] = 16055, - [SMALL_STATE(1481)] = 16120, - [SMALL_STATE(1482)] = 16187, - [SMALL_STATE(1483)] = 16252, - [SMALL_STATE(1484)] = 16319, - [SMALL_STATE(1485)] = 16382, - [SMALL_STATE(1486)] = 16445, - [SMALL_STATE(1487)] = 16512, - [SMALL_STATE(1488)] = 16579, - [SMALL_STATE(1489)] = 16646, - [SMALL_STATE(1490)] = 16709, - [SMALL_STATE(1491)] = 16776, - [SMALL_STATE(1492)] = 16843, - [SMALL_STATE(1493)] = 16910, - [SMALL_STATE(1494)] = 16974, - [SMALL_STATE(1495)] = 17038, - [SMALL_STATE(1496)] = 17102, - [SMALL_STATE(1497)] = 17166, - [SMALL_STATE(1498)] = 17228, - [SMALL_STATE(1499)] = 17290, - [SMALL_STATE(1500)] = 17354, - [SMALL_STATE(1501)] = 17418, - [SMALL_STATE(1502)] = 17480, - [SMALL_STATE(1503)] = 17544, - [SMALL_STATE(1504)] = 17604, - [SMALL_STATE(1505)] = 17668, - [SMALL_STATE(1506)] = 17728, - [SMALL_STATE(1507)] = 17792, - [SMALL_STATE(1508)] = 17856, - [SMALL_STATE(1509)] = 17916, - [SMALL_STATE(1510)] = 17976, - [SMALL_STATE(1511)] = 18040, - [SMALL_STATE(1512)] = 18100, - [SMALL_STATE(1513)] = 18161, - [SMALL_STATE(1514)] = 18220, - [SMALL_STATE(1515)] = 18283, - [SMALL_STATE(1516)] = 18346, - [SMALL_STATE(1517)] = 18433, - [SMALL_STATE(1518)] = 18526, - [SMALL_STATE(1519)] = 18613, - [SMALL_STATE(1520)] = 18700, - [SMALL_STATE(1521)] = 18787, - [SMALL_STATE(1522)] = 18846, - [SMALL_STATE(1523)] = 18907, - [SMALL_STATE(1524)] = 18968, - [SMALL_STATE(1525)] = 19031, - [SMALL_STATE(1526)] = 19094, - [SMALL_STATE(1527)] = 19181, - [SMALL_STATE(1528)] = 19268, - [SMALL_STATE(1529)] = 19327, - [SMALL_STATE(1530)] = 19390, - [SMALL_STATE(1531)] = 19451, - [SMALL_STATE(1532)] = 19544, - [SMALL_STATE(1533)] = 19603, - [SMALL_STATE(1534)] = 19690, - [SMALL_STATE(1535)] = 19753, - [SMALL_STATE(1536)] = 19840, - [SMALL_STATE(1537)] = 19901, - [SMALL_STATE(1538)] = 19960, - [SMALL_STATE(1539)] = 20023, - [SMALL_STATE(1540)] = 20086, - [SMALL_STATE(1541)] = 20149, - [SMALL_STATE(1542)] = 20240, - [SMALL_STATE(1543)] = 20308, - [SMALL_STATE(1544)] = 20388, - [SMALL_STATE(1545)] = 20448, - [SMALL_STATE(1546)] = 20528, - [SMALL_STATE(1547)] = 20608, - [SMALL_STATE(1548)] = 20688, - [SMALL_STATE(1549)] = 20748, - [SMALL_STATE(1550)] = 20808, - [SMALL_STATE(1551)] = 20868, - [SMALL_STATE(1552)] = 20948, - [SMALL_STATE(1553)] = 21028, - [SMALL_STATE(1554)] = 21088, - [SMALL_STATE(1555)] = 21168, - [SMALL_STATE(1556)] = 21248, - [SMALL_STATE(1557)] = 21328, - [SMALL_STATE(1558)] = 21408, - [SMALL_STATE(1559)] = 21496, - [SMALL_STATE(1560)] = 21584, - [SMALL_STATE(1561)] = 21664, - [SMALL_STATE(1562)] = 21744, - [SMALL_STATE(1563)] = 21818, - [SMALL_STATE(1564)] = 21898, - [SMALL_STATE(1565)] = 21978, - [SMALL_STATE(1566)] = 22058, - [SMALL_STATE(1567)] = 22138, - [SMALL_STATE(1568)] = 22218, - [SMALL_STATE(1569)] = 22298, - [SMALL_STATE(1570)] = 22378, - [SMALL_STATE(1571)] = 22458, - [SMALL_STATE(1572)] = 22538, - [SMALL_STATE(1573)] = 22618, - [SMALL_STATE(1574)] = 22698, - [SMALL_STATE(1575)] = 22778, - [SMALL_STATE(1576)] = 22858, - [SMALL_STATE(1577)] = 22938, - [SMALL_STATE(1578)] = 23018, - [SMALL_STATE(1579)] = 23098, - [SMALL_STATE(1580)] = 23178, - [SMALL_STATE(1581)] = 23258, - [SMALL_STATE(1582)] = 23338, - [SMALL_STATE(1583)] = 23418, - [SMALL_STATE(1584)] = 23498, - [SMALL_STATE(1585)] = 23578, - [SMALL_STATE(1586)] = 23658, - [SMALL_STATE(1587)] = 23738, - [SMALL_STATE(1588)] = 23818, - [SMALL_STATE(1589)] = 23898, - [SMALL_STATE(1590)] = 23978, - [SMALL_STATE(1591)] = 24058, - [SMALL_STATE(1592)] = 24134, - [SMALL_STATE(1593)] = 24208, - [SMALL_STATE(1594)] = 24276, - [SMALL_STATE(1595)] = 24340, - [SMALL_STATE(1596)] = 24426, - [SMALL_STATE(1597)] = 24514, - [SMALL_STATE(1598)] = 24604, - [SMALL_STATE(1599)] = 24682, - [SMALL_STATE(1600)] = 24754, - [SMALL_STATE(1601)] = 24834, - [SMALL_STATE(1602)] = 24916, - [SMALL_STATE(1603)] = 25000, - [SMALL_STATE(1604)] = 25076, - [SMALL_STATE(1605)] = 25150, - [SMALL_STATE(1606)] = 25224, - [SMALL_STATE(1607)] = 25296, - [SMALL_STATE(1608)] = 25364, - [SMALL_STATE(1609)] = 25430, - [SMALL_STATE(1610)] = 25494, - [SMALL_STATE(1611)] = 25556, - [SMALL_STATE(1612)] = 25642, - [SMALL_STATE(1613)] = 25726, - [SMALL_STATE(1614)] = 25814, - [SMALL_STATE(1615)] = 25900, - [SMALL_STATE(1616)] = 25990, - [SMALL_STATE(1617)] = 26078, - [SMALL_STATE(1618)] = 26156, - [SMALL_STATE(1619)] = 26232, - [SMALL_STATE(1620)] = 26304, - [SMALL_STATE(1621)] = 26374, - [SMALL_STATE(1622)] = 26454, - [SMALL_STATE(1623)] = 26532, - [SMALL_STATE(1624)] = 26614, - [SMALL_STATE(1625)] = 26694, - [SMALL_STATE(1626)] = 26778, - [SMALL_STATE(1627)] = 26860, - [SMALL_STATE(1628)] = 26936, - [SMALL_STATE(1629)] = 27010, - [SMALL_STATE(1630)] = 27074, - [SMALL_STATE(1631)] = 27154, - [SMALL_STATE(1632)] = 27242, - [SMALL_STATE(1633)] = 27332, - [SMALL_STATE(1634)] = 27410, - [SMALL_STATE(1635)] = 27482, - [SMALL_STATE(1636)] = 27562, - [SMALL_STATE(1637)] = 27642, - [SMALL_STATE(1638)] = 27724, - [SMALL_STATE(1639)] = 27808, - [SMALL_STATE(1640)] = 27888, - [SMALL_STATE(1641)] = 27962, - [SMALL_STATE(1642)] = 28034, - [SMALL_STATE(1643)] = 28100, - [SMALL_STATE(1644)] = 28162, - [SMALL_STATE(1645)] = 28246, - [SMALL_STATE(1646)] = 28332, - [SMALL_STATE(1647)] = 28420, - [SMALL_STATE(1648)] = 28496, - [SMALL_STATE(1649)] = 28566, - [SMALL_STATE(1650)] = 28644, - [SMALL_STATE(1651)] = 28724, - [SMALL_STATE(1652)] = 28806, - [SMALL_STATE(1653)] = 28882, - [SMALL_STATE(1654)] = 28956, - [SMALL_STATE(1655)] = 29030, - [SMALL_STATE(1656)] = 29102, - [SMALL_STATE(1657)] = 29170, - [SMALL_STATE(1658)] = 29236, - [SMALL_STATE(1659)] = 29300, - [SMALL_STATE(1660)] = 29362, - [SMALL_STATE(1661)] = 29448, - [SMALL_STATE(1662)] = 29532, - [SMALL_STATE(1663)] = 29620, - [SMALL_STATE(1664)] = 29706, - [SMALL_STATE(1665)] = 29796, - [SMALL_STATE(1666)] = 29884, - [SMALL_STATE(1667)] = 29962, - [SMALL_STATE(1668)] = 30038, - [SMALL_STATE(1669)] = 30110, - [SMALL_STATE(1670)] = 30180, - [SMALL_STATE(1671)] = 30260, - [SMALL_STATE(1672)] = 30338, - [SMALL_STATE(1673)] = 30420, - [SMALL_STATE(1674)] = 30500, - [SMALL_STATE(1675)] = 30584, - [SMALL_STATE(1676)] = 30666, - [SMALL_STATE(1677)] = 30740, - [SMALL_STATE(1678)] = 30812, - [SMALL_STATE(1679)] = 30878, - [SMALL_STATE(1680)] = 30940, - [SMALL_STATE(1681)] = 31024, - [SMALL_STATE(1682)] = 31110, - [SMALL_STATE(1683)] = 31198, - [SMALL_STATE(1684)] = 31274, - [SMALL_STATE(1685)] = 31344, - [SMALL_STATE(1686)] = 31422, - [SMALL_STATE(1687)] = 31502, - [SMALL_STATE(1688)] = 31584, - [SMALL_STATE(1689)] = 31664, - [SMALL_STATE(1690)] = 31744, - [SMALL_STATE(1691)] = 31824, - [SMALL_STATE(1692)] = 31904, - [SMALL_STATE(1693)] = 31976, - [SMALL_STATE(1694)] = 32046, - [SMALL_STATE(1695)] = 32110, - [SMALL_STATE(1696)] = 32170, - [SMALL_STATE(1697)] = 32252, - [SMALL_STATE(1698)] = 32336, - [SMALL_STATE(1699)] = 32422, - [SMALL_STATE(1700)] = 32496, - [SMALL_STATE(1701)] = 32564, - [SMALL_STATE(1702)] = 32640, - [SMALL_STATE(1703)] = 32718, - [SMALL_STATE(1704)] = 32798, - [SMALL_STATE(1705)] = 32878, - [SMALL_STATE(1706)] = 32964, - [SMALL_STATE(1707)] = 33051, - [SMALL_STATE(1708)] = 33138, - [SMALL_STATE(1709)] = 33225, - [SMALL_STATE(1710)] = 33302, - [SMALL_STATE(1711)] = 33389, - [SMALL_STATE(1712)] = 33476, - [SMALL_STATE(1713)] = 33563, - [SMALL_STATE(1714)] = 33634, - [SMALL_STATE(1715)] = 33703, - [SMALL_STATE(1716)] = 33766, - [SMALL_STATE(1717)] = 33825, - [SMALL_STATE(1718)] = 33906, - [SMALL_STATE(1719)] = 33989, - [SMALL_STATE(1720)] = 34074, - [SMALL_STATE(1721)] = 34147, - [SMALL_STATE(1722)] = 34214, - [SMALL_STATE(1723)] = 34289, - [SMALL_STATE(1724)] = 34366, - [SMALL_STATE(1725)] = 34445, - [SMALL_STATE(1726)] = 34518, - [SMALL_STATE(1727)] = 34589, - [SMALL_STATE(1728)] = 34676, - [SMALL_STATE(1729)] = 34747, - [SMALL_STATE(1730)] = 34834, - [SMALL_STATE(1731)] = 34921, - [SMALL_STATE(1732)] = 35008, - [SMALL_STATE(1733)] = 35095, - [SMALL_STATE(1734)] = 35165, - [SMALL_STATE(1735)] = 35247, - [SMALL_STATE(1736)] = 35317, - [SMALL_STATE(1737)] = 35387, - [SMALL_STATE(1738)] = 35447, - [SMALL_STATE(1739)] = 35529, - [SMALL_STATE(1740)] = 35593, - [SMALL_STATE(1741)] = 35663, - [SMALL_STATE(1742)] = 35727, - [SMALL_STATE(1743)] = 35791, - [SMALL_STATE(1744)] = 35873, - [SMALL_STATE(1745)] = 35933, - [SMALL_STATE(1746)] = 35995, - [SMALL_STATE(1747)] = 36054, - [SMALL_STATE(1748)] = 36111, - [SMALL_STATE(1749)] = 36182, - [SMALL_STATE(1750)] = 36249, - [SMALL_STATE(1751)] = 36308, - [SMALL_STATE(1752)] = 36371, - [SMALL_STATE(1753)] = 36426, - [SMALL_STATE(1754)] = 36505, - [SMALL_STATE(1755)] = 36562, - [SMALL_STATE(1756)] = 36623, - [SMALL_STATE(1757)] = 36682, - [SMALL_STATE(1758)] = 36737, - [SMALL_STATE(1759)] = 36800, - [SMALL_STATE(1760)] = 36855, - [SMALL_STATE(1761)] = 36910, - [SMALL_STATE(1762)] = 36969, - [SMALL_STATE(1763)] = 37024, - [SMALL_STATE(1764)] = 37091, - [SMALL_STATE(1765)] = 37150, - [SMALL_STATE(1766)] = 37231, - [SMALL_STATE(1767)] = 37312, - [SMALL_STATE(1768)] = 37391, - [SMALL_STATE(1769)] = 37470, - [SMALL_STATE(1770)] = 37539, - [SMALL_STATE(1771)] = 37618, - [SMALL_STATE(1772)] = 37685, - [SMALL_STATE(1773)] = 37764, - [SMALL_STATE(1774)] = 37835, - [SMALL_STATE(1775)] = 37914, - [SMALL_STATE(1776)] = 37977, - [SMALL_STATE(1777)] = 38044, - [SMALL_STATE(1778)] = 38111, - [SMALL_STATE(1779)] = 38178, - [SMALL_STATE(1780)] = 38257, - [SMALL_STATE(1781)] = 38328, - [SMALL_STATE(1782)] = 38407, - [SMALL_STATE(1783)] = 38478, - [SMALL_STATE(1784)] = 38539, - [SMALL_STATE(1785)] = 38618, - [SMALL_STATE(1786)] = 38689, - [SMALL_STATE(1787)] = 38768, - [SMALL_STATE(1788)] = 38847, - [SMALL_STATE(1789)] = 38902, - [SMALL_STATE(1790)] = 38980, - [SMALL_STATE(1791)] = 39048, - [SMALL_STATE(1792)] = 39106, - [SMALL_STATE(1793)] = 39166, - [SMALL_STATE(1794)] = 39224, - [SMALL_STATE(1795)] = 39302, - [SMALL_STATE(1796)] = 39370, - [SMALL_STATE(1797)] = 39426, - [SMALL_STATE(1798)] = 39504, - [SMALL_STATE(1799)] = 39572, - [SMALL_STATE(1800)] = 39640, - [SMALL_STATE(1801)] = 39696, - [SMALL_STATE(1802)] = 39750, - [SMALL_STATE(1803)] = 39804, - [SMALL_STATE(1804)] = 39882, - [SMALL_STATE(1805)] = 39936, - [SMALL_STATE(1806)] = 39994, - [SMALL_STATE(1807)] = 40072, - [SMALL_STATE(1808)] = 40150, - [SMALL_STATE(1809)] = 40206, - [SMALL_STATE(1810)] = 40274, - [SMALL_STATE(1811)] = 40330, - [SMALL_STATE(1812)] = 40384, - [SMALL_STATE(1813)] = 40438, - [SMALL_STATE(1814)] = 40492, - [SMALL_STATE(1815)] = 40570, - [SMALL_STATE(1816)] = 40638, - [SMALL_STATE(1817)] = 40716, - [SMALL_STATE(1818)] = 40770, - [SMALL_STATE(1819)] = 40848, - [SMALL_STATE(1820)] = 40904, - [SMALL_STATE(1821)] = 40960, - [SMALL_STATE(1822)] = 41028, - [SMALL_STATE(1823)] = 41106, - [SMALL_STATE(1824)] = 41184, - [SMALL_STATE(1825)] = 41262, - [SMALL_STATE(1826)] = 41316, - [SMALL_STATE(1827)] = 41370, - [SMALL_STATE(1828)] = 41435, - [SMALL_STATE(1829)] = 41500, - [SMALL_STATE(1830)] = 41551, - [SMALL_STATE(1831)] = 41604, - [SMALL_STATE(1832)] = 41669, - [SMALL_STATE(1833)] = 41734, - [SMALL_STATE(1834)] = 41799, - [SMALL_STATE(1835)] = 41862, - [SMALL_STATE(1836)] = 41915, - [SMALL_STATE(1837)] = 41980, - [SMALL_STATE(1838)] = 42045, - [SMALL_STATE(1839)] = 42100, - [SMALL_STATE(1840)] = 42151, - [SMALL_STATE(1841)] = 42206, - [SMALL_STATE(1842)] = 42263, - [SMALL_STATE(1843)] = 42328, - [SMALL_STATE(1844)] = 42393, - [SMALL_STATE(1845)] = 42446, - [SMALL_STATE(1846)] = 42497, - [SMALL_STATE(1847)] = 42548, - [SMALL_STATE(1848)] = 42605, - [SMALL_STATE(1849)] = 42670, - [SMALL_STATE(1850)] = 42735, - [SMALL_STATE(1851)] = 42800, - [SMALL_STATE(1852)] = 42865, - [SMALL_STATE(1853)] = 42928, - [SMALL_STATE(1854)] = 42981, - [SMALL_STATE(1855)] = 43046, - [SMALL_STATE(1856)] = 43099, - [SMALL_STATE(1857)] = 43164, - [SMALL_STATE(1858)] = 43229, - [SMALL_STATE(1859)] = 43282, - [SMALL_STATE(1860)] = 43347, - [SMALL_STATE(1861)] = 43400, - [SMALL_STATE(1862)] = 43451, - [SMALL_STATE(1863)] = 43516, - [SMALL_STATE(1864)] = 43581, - [SMALL_STATE(1865)] = 43634, - [SMALL_STATE(1866)] = 43689, - [SMALL_STATE(1867)] = 43742, - [SMALL_STATE(1868)] = 43797, - [SMALL_STATE(1869)] = 43848, - [SMALL_STATE(1870)] = 43913, - [SMALL_STATE(1871)] = 43978, - [SMALL_STATE(1872)] = 44043, - [SMALL_STATE(1873)] = 44108, - [SMALL_STATE(1874)] = 44173, - [SMALL_STATE(1875)] = 44238, - [SMALL_STATE(1876)] = 44303, - [SMALL_STATE(1877)] = 44355, - [SMALL_STATE(1878)] = 44407, - [SMALL_STATE(1879)] = 44459, - [SMALL_STATE(1880)] = 44511, - [SMALL_STATE(1881)] = 44563, - [SMALL_STATE(1882)] = 44623, - [SMALL_STATE(1883)] = 44675, - [SMALL_STATE(1884)] = 44727, - [SMALL_STATE(1885)] = 44779, - [SMALL_STATE(1886)] = 44839, - [SMALL_STATE(1887)] = 44891, - [SMALL_STATE(1888)] = 44945, - [SMALL_STATE(1889)] = 44997, - [SMALL_STATE(1890)] = 45057, - [SMALL_STATE(1891)] = 45109, - [SMALL_STATE(1892)] = 45163, - [SMALL_STATE(1893)] = 45215, - [SMALL_STATE(1894)] = 45267, - [SMALL_STATE(1895)] = 45319, - [SMALL_STATE(1896)] = 45371, - [SMALL_STATE(1897)] = 45433, - [SMALL_STATE(1898)] = 45485, - [SMALL_STATE(1899)] = 45537, - [SMALL_STATE(1900)] = 45589, - [SMALL_STATE(1901)] = 45641, - [SMALL_STATE(1902)] = 45693, - [SMALL_STATE(1903)] = 45755, - [SMALL_STATE(1904)] = 45807, - [SMALL_STATE(1905)] = 45867, - [SMALL_STATE(1906)] = 45919, - [SMALL_STATE(1907)] = 45971, - [SMALL_STATE(1908)] = 46028, - [SMALL_STATE(1909)] = 46083, - [SMALL_STATE(1910)] = 46134, - [SMALL_STATE(1911)] = 46193, - [SMALL_STATE(1912)] = 46244, - [SMALL_STATE(1913)] = 46295, - [SMALL_STATE(1914)] = 46346, - [SMALL_STATE(1915)] = 46397, - [SMALL_STATE(1916)] = 46456, - [SMALL_STATE(1917)] = 46507, - [SMALL_STATE(1918)] = 46558, - [SMALL_STATE(1919)] = 46609, - [SMALL_STATE(1920)] = 46660, - [SMALL_STATE(1921)] = 46711, - [SMALL_STATE(1922)] = 46762, - [SMALL_STATE(1923)] = 46813, - [SMALL_STATE(1924)] = 46864, - [SMALL_STATE(1925)] = 46963, - [SMALL_STATE(1926)] = 47014, - [SMALL_STATE(1927)] = 47065, - [SMALL_STATE(1928)] = 47116, - [SMALL_STATE(1929)] = 47175, - [SMALL_STATE(1930)] = 47226, - [SMALL_STATE(1931)] = 47277, - [SMALL_STATE(1932)] = 47332, - [SMALL_STATE(1933)] = 47383, - [SMALL_STATE(1934)] = 47442, - [SMALL_STATE(1935)] = 47497, - [SMALL_STATE(1936)] = 47556, - [SMALL_STATE(1937)] = 47615, - [SMALL_STATE(1938)] = 47674, - [SMALL_STATE(1939)] = 47725, - [SMALL_STATE(1940)] = 47784, - [SMALL_STATE(1941)] = 47843, - [SMALL_STATE(1942)] = 47902, - [SMALL_STATE(1943)] = 47957, - [SMALL_STATE(1944)] = 48016, - [SMALL_STATE(1945)] = 48075, - [SMALL_STATE(1946)] = 48126, - [SMALL_STATE(1947)] = 48185, - [SMALL_STATE(1948)] = 48244, - [SMALL_STATE(1949)] = 48340, - [SMALL_STATE(1950)] = 48390, - [SMALL_STATE(1951)] = 48440, - [SMALL_STATE(1952)] = 48490, - [SMALL_STATE(1953)] = 48542, - [SMALL_STATE(1954)] = 48592, - [SMALL_STATE(1955)] = 48648, - [SMALL_STATE(1956)] = 48702, - [SMALL_STATE(1957)] = 48798, - [SMALL_STATE(1958)] = 48852, - [SMALL_STATE(1959)] = 48906, - [SMALL_STATE(1960)] = 48956, - [SMALL_STATE(1961)] = 49006, + [SMALL_STATE(1455)] = 14247, + [SMALL_STATE(1456)] = 14318, + [SMALL_STATE(1457)] = 14389, + [SMALL_STATE(1458)] = 14454, + [SMALL_STATE(1459)] = 14517, + [SMALL_STATE(1460)] = 14580, + [SMALL_STATE(1461)] = 14645, + [SMALL_STATE(1462)] = 14744, + [SMALL_STATE(1463)] = 14842, + [SMALL_STATE(1464)] = 14912, + [SMALL_STATE(1465)] = 14974, + [SMALL_STATE(1466)] = 15040, + [SMALL_STATE(1467)] = 15106, + [SMALL_STATE(1468)] = 15204, + [SMALL_STATE(1469)] = 15274, + [SMALL_STATE(1470)] = 15346, + [SMALL_STATE(1471)] = 15440, + [SMALL_STATE(1472)] = 15502, + [SMALL_STATE(1473)] = 15564, + [SMALL_STATE(1474)] = 15658, + [SMALL_STATE(1475)] = 15752, + [SMALL_STATE(1476)] = 15819, + [SMALL_STATE(1477)] = 15884, + [SMALL_STATE(1478)] = 15951, + [SMALL_STATE(1479)] = 16018, + [SMALL_STATE(1480)] = 16085, + [SMALL_STATE(1481)] = 16152, + [SMALL_STATE(1482)] = 16219, + [SMALL_STATE(1483)] = 16286, + [SMALL_STATE(1484)] = 16349, + [SMALL_STATE(1485)] = 16416, + [SMALL_STATE(1486)] = 16483, + [SMALL_STATE(1487)] = 16550, + [SMALL_STATE(1488)] = 16613, + [SMALL_STATE(1489)] = 16676, + [SMALL_STATE(1490)] = 16747, + [SMALL_STATE(1491)] = 16812, + [SMALL_STATE(1492)] = 16879, + [SMALL_STATE(1493)] = 16946, + [SMALL_STATE(1494)] = 17006, + [SMALL_STATE(1495)] = 17070, + [SMALL_STATE(1496)] = 17134, + [SMALL_STATE(1497)] = 17194, + [SMALL_STATE(1498)] = 17258, + [SMALL_STATE(1499)] = 17322, + [SMALL_STATE(1500)] = 17386, + [SMALL_STATE(1501)] = 17450, + [SMALL_STATE(1502)] = 17514, + [SMALL_STATE(1503)] = 17578, + [SMALL_STATE(1504)] = 17638, + [SMALL_STATE(1505)] = 17698, + [SMALL_STATE(1506)] = 17760, + [SMALL_STATE(1507)] = 17822, + [SMALL_STATE(1508)] = 17886, + [SMALL_STATE(1509)] = 17950, + [SMALL_STATE(1510)] = 18014, + [SMALL_STATE(1511)] = 18074, + [SMALL_STATE(1512)] = 18136, + [SMALL_STATE(1513)] = 18223, + [SMALL_STATE(1514)] = 18286, + [SMALL_STATE(1515)] = 18345, + [SMALL_STATE(1516)] = 18404, + [SMALL_STATE(1517)] = 18467, + [SMALL_STATE(1518)] = 18530, + [SMALL_STATE(1519)] = 18593, + [SMALL_STATE(1520)] = 18684, + [SMALL_STATE(1521)] = 18743, + [SMALL_STATE(1522)] = 18830, + [SMALL_STATE(1523)] = 18891, + [SMALL_STATE(1524)] = 18984, + [SMALL_STATE(1525)] = 19047, + [SMALL_STATE(1526)] = 19106, + [SMALL_STATE(1527)] = 19193, + [SMALL_STATE(1528)] = 19286, + [SMALL_STATE(1529)] = 19347, + [SMALL_STATE(1530)] = 19408, + [SMALL_STATE(1531)] = 19469, + [SMALL_STATE(1532)] = 19532, + [SMALL_STATE(1533)] = 19619, + [SMALL_STATE(1534)] = 19680, + [SMALL_STATE(1535)] = 19743, + [SMALL_STATE(1536)] = 19830, + [SMALL_STATE(1537)] = 19889, + [SMALL_STATE(1538)] = 19952, + [SMALL_STATE(1539)] = 20015, + [SMALL_STATE(1540)] = 20102, + [SMALL_STATE(1541)] = 20189, + [SMALL_STATE(1542)] = 20276, + [SMALL_STATE(1543)] = 20350, + [SMALL_STATE(1544)] = 20430, + [SMALL_STATE(1545)] = 20510, + [SMALL_STATE(1546)] = 20590, + [SMALL_STATE(1547)] = 20670, + [SMALL_STATE(1548)] = 20758, + [SMALL_STATE(1549)] = 20838, + [SMALL_STATE(1550)] = 20918, + [SMALL_STATE(1551)] = 20978, + [SMALL_STATE(1552)] = 21038, + [SMALL_STATE(1553)] = 21118, + [SMALL_STATE(1554)] = 21198, + [SMALL_STATE(1555)] = 21278, + [SMALL_STATE(1556)] = 21358, + [SMALL_STATE(1557)] = 21438, + [SMALL_STATE(1558)] = 21518, + [SMALL_STATE(1559)] = 21598, + [SMALL_STATE(1560)] = 21678, + [SMALL_STATE(1561)] = 21758, + [SMALL_STATE(1562)] = 21838, + [SMALL_STATE(1563)] = 21918, + [SMALL_STATE(1564)] = 21998, + [SMALL_STATE(1565)] = 22078, + [SMALL_STATE(1566)] = 22158, + [SMALL_STATE(1567)] = 22238, + [SMALL_STATE(1568)] = 22318, + [SMALL_STATE(1569)] = 22398, + [SMALL_STATE(1570)] = 22478, + [SMALL_STATE(1571)] = 22558, + [SMALL_STATE(1572)] = 22638, + [SMALL_STATE(1573)] = 22718, + [SMALL_STATE(1574)] = 22798, + [SMALL_STATE(1575)] = 22878, + [SMALL_STATE(1576)] = 22958, + [SMALL_STATE(1577)] = 23038, + [SMALL_STATE(1578)] = 23118, + [SMALL_STATE(1579)] = 23198, + [SMALL_STATE(1580)] = 23278, + [SMALL_STATE(1581)] = 23358, + [SMALL_STATE(1582)] = 23438, + [SMALL_STATE(1583)] = 23518, + [SMALL_STATE(1584)] = 23598, + [SMALL_STATE(1585)] = 23658, + [SMALL_STATE(1586)] = 23738, + [SMALL_STATE(1587)] = 23818, + [SMALL_STATE(1588)] = 23898, + [SMALL_STATE(1589)] = 23978, + [SMALL_STATE(1590)] = 24058, + [SMALL_STATE(1591)] = 24138, + [SMALL_STATE(1592)] = 24218, + [SMALL_STATE(1593)] = 24278, + [SMALL_STATE(1594)] = 24358, + [SMALL_STATE(1595)] = 24434, + [SMALL_STATE(1596)] = 24508, + [SMALL_STATE(1597)] = 24576, + [SMALL_STATE(1598)] = 24640, + [SMALL_STATE(1599)] = 24726, + [SMALL_STATE(1600)] = 24814, + [SMALL_STATE(1601)] = 24904, + [SMALL_STATE(1602)] = 24982, + [SMALL_STATE(1603)] = 25056, + [SMALL_STATE(1604)] = 25128, + [SMALL_STATE(1605)] = 25208, + [SMALL_STATE(1606)] = 25290, + [SMALL_STATE(1607)] = 25374, + [SMALL_STATE(1608)] = 25450, + [SMALL_STATE(1609)] = 25524, + [SMALL_STATE(1610)] = 25596, + [SMALL_STATE(1611)] = 25664, + [SMALL_STATE(1612)] = 25730, + [SMALL_STATE(1613)] = 25794, + [SMALL_STATE(1614)] = 25856, + [SMALL_STATE(1615)] = 25942, + [SMALL_STATE(1616)] = 26026, + [SMALL_STATE(1617)] = 26114, + [SMALL_STATE(1618)] = 26200, + [SMALL_STATE(1619)] = 26290, + [SMALL_STATE(1620)] = 26378, + [SMALL_STATE(1621)] = 26456, + [SMALL_STATE(1622)] = 26532, + [SMALL_STATE(1623)] = 26604, + [SMALL_STATE(1624)] = 26674, + [SMALL_STATE(1625)] = 26754, + [SMALL_STATE(1626)] = 26832, + [SMALL_STATE(1627)] = 26914, + [SMALL_STATE(1628)] = 26994, + [SMALL_STATE(1629)] = 27078, + [SMALL_STATE(1630)] = 27160, + [SMALL_STATE(1631)] = 27248, + [SMALL_STATE(1632)] = 27322, + [SMALL_STATE(1633)] = 27390, + [SMALL_STATE(1634)] = 27454, + [SMALL_STATE(1635)] = 27540, + [SMALL_STATE(1636)] = 27628, + [SMALL_STATE(1637)] = 27718, + [SMALL_STATE(1638)] = 27796, + [SMALL_STATE(1639)] = 27868, + [SMALL_STATE(1640)] = 27948, + [SMALL_STATE(1641)] = 28030, + [SMALL_STATE(1642)] = 28114, + [SMALL_STATE(1643)] = 28188, + [SMALL_STATE(1644)] = 28260, + [SMALL_STATE(1645)] = 28326, + [SMALL_STATE(1646)] = 28388, + [SMALL_STATE(1647)] = 28472, + [SMALL_STATE(1648)] = 28558, + [SMALL_STATE(1649)] = 28646, + [SMALL_STATE(1650)] = 28722, + [SMALL_STATE(1651)] = 28792, + [SMALL_STATE(1652)] = 28870, + [SMALL_STATE(1653)] = 28950, + [SMALL_STATE(1654)] = 29032, + [SMALL_STATE(1655)] = 29108, + [SMALL_STATE(1656)] = 29182, + [SMALL_STATE(1657)] = 29256, + [SMALL_STATE(1658)] = 29328, + [SMALL_STATE(1659)] = 29396, + [SMALL_STATE(1660)] = 29462, + [SMALL_STATE(1661)] = 29526, + [SMALL_STATE(1662)] = 29588, + [SMALL_STATE(1663)] = 29674, + [SMALL_STATE(1664)] = 29758, + [SMALL_STATE(1665)] = 29846, + [SMALL_STATE(1666)] = 29932, + [SMALL_STATE(1667)] = 30022, + [SMALL_STATE(1668)] = 30110, + [SMALL_STATE(1669)] = 30188, + [SMALL_STATE(1670)] = 30264, + [SMALL_STATE(1671)] = 30336, + [SMALL_STATE(1672)] = 30406, + [SMALL_STATE(1673)] = 30486, + [SMALL_STATE(1674)] = 30564, + [SMALL_STATE(1675)] = 30646, + [SMALL_STATE(1676)] = 30726, + [SMALL_STATE(1677)] = 30810, + [SMALL_STATE(1678)] = 30892, + [SMALL_STATE(1679)] = 30972, + [SMALL_STATE(1680)] = 31052, + [SMALL_STATE(1681)] = 31126, + [SMALL_STATE(1682)] = 31198, + [SMALL_STATE(1683)] = 31264, + [SMALL_STATE(1684)] = 31326, + [SMALL_STATE(1685)] = 31410, + [SMALL_STATE(1686)] = 31496, + [SMALL_STATE(1687)] = 31584, + [SMALL_STATE(1688)] = 31660, + [SMALL_STATE(1689)] = 31730, + [SMALL_STATE(1690)] = 31808, + [SMALL_STATE(1691)] = 31888, + [SMALL_STATE(1692)] = 31970, + [SMALL_STATE(1693)] = 32042, + [SMALL_STATE(1694)] = 32112, + [SMALL_STATE(1695)] = 32176, + [SMALL_STATE(1696)] = 32236, + [SMALL_STATE(1697)] = 32318, + [SMALL_STATE(1698)] = 32402, + [SMALL_STATE(1699)] = 32488, + [SMALL_STATE(1700)] = 32562, + [SMALL_STATE(1701)] = 32630, + [SMALL_STATE(1702)] = 32706, + [SMALL_STATE(1703)] = 32784, + [SMALL_STATE(1704)] = 32864, + [SMALL_STATE(1705)] = 32924, + [SMALL_STATE(1706)] = 33000, + [SMALL_STATE(1707)] = 33081, + [SMALL_STATE(1708)] = 33168, + [SMALL_STATE(1709)] = 33239, + [SMALL_STATE(1710)] = 33310, + [SMALL_STATE(1711)] = 33397, + [SMALL_STATE(1712)] = 33466, + [SMALL_STATE(1713)] = 33529, + [SMALL_STATE(1714)] = 33606, + [SMALL_STATE(1715)] = 33665, + [SMALL_STATE(1716)] = 33736, + [SMALL_STATE(1717)] = 33819, + [SMALL_STATE(1718)] = 33904, + [SMALL_STATE(1719)] = 33991, + [SMALL_STATE(1720)] = 34078, + [SMALL_STATE(1721)] = 34151, + [SMALL_STATE(1722)] = 34218, + [SMALL_STATE(1723)] = 34293, + [SMALL_STATE(1724)] = 34370, + [SMALL_STATE(1725)] = 34449, + [SMALL_STATE(1726)] = 34536, + [SMALL_STATE(1727)] = 34623, + [SMALL_STATE(1728)] = 34710, + [SMALL_STATE(1729)] = 34783, + [SMALL_STATE(1730)] = 34870, + [SMALL_STATE(1731)] = 34957, + [SMALL_STATE(1732)] = 35044, + [SMALL_STATE(1733)] = 35131, + [SMALL_STATE(1734)] = 35191, + [SMALL_STATE(1735)] = 35255, + [SMALL_STATE(1736)] = 35337, + [SMALL_STATE(1737)] = 35401, + [SMALL_STATE(1738)] = 35471, + [SMALL_STATE(1739)] = 35533, + [SMALL_STATE(1740)] = 35615, + [SMALL_STATE(1741)] = 35675, + [SMALL_STATE(1742)] = 35745, + [SMALL_STATE(1743)] = 35815, + [SMALL_STATE(1744)] = 35897, + [SMALL_STATE(1745)] = 35961, + [SMALL_STATE(1746)] = 36031, + [SMALL_STATE(1747)] = 36094, + [SMALL_STATE(1748)] = 36173, + [SMALL_STATE(1749)] = 36236, + [SMALL_STATE(1750)] = 36315, + [SMALL_STATE(1751)] = 36386, + [SMALL_STATE(1752)] = 36445, + [SMALL_STATE(1753)] = 36514, + [SMALL_STATE(1754)] = 36581, + [SMALL_STATE(1755)] = 36638, + [SMALL_STATE(1756)] = 36719, + [SMALL_STATE(1757)] = 36778, + [SMALL_STATE(1758)] = 36845, + [SMALL_STATE(1759)] = 36916, + [SMALL_STATE(1760)] = 36971, + [SMALL_STATE(1761)] = 37050, + [SMALL_STATE(1762)] = 37111, + [SMALL_STATE(1763)] = 37178, + [SMALL_STATE(1764)] = 37233, + [SMALL_STATE(1765)] = 37312, + [SMALL_STATE(1766)] = 37367, + [SMALL_STATE(1767)] = 37422, + [SMALL_STATE(1768)] = 37477, + [SMALL_STATE(1769)] = 37556, + [SMALL_STATE(1770)] = 37619, + [SMALL_STATE(1771)] = 37686, + [SMALL_STATE(1772)] = 37753, + [SMALL_STATE(1773)] = 37820, + [SMALL_STATE(1774)] = 37899, + [SMALL_STATE(1775)] = 37958, + [SMALL_STATE(1776)] = 38039, + [SMALL_STATE(1777)] = 38118, + [SMALL_STATE(1778)] = 38175, + [SMALL_STATE(1779)] = 38246, + [SMALL_STATE(1780)] = 38305, + [SMALL_STATE(1781)] = 38384, + [SMALL_STATE(1782)] = 38455, + [SMALL_STATE(1783)] = 38514, + [SMALL_STATE(1784)] = 38593, + [SMALL_STATE(1785)] = 38664, + [SMALL_STATE(1786)] = 38743, + [SMALL_STATE(1787)] = 38804, + [SMALL_STATE(1788)] = 38883, + [SMALL_STATE(1789)] = 38938, + [SMALL_STATE(1790)] = 39006, + [SMALL_STATE(1791)] = 39074, + [SMALL_STATE(1792)] = 39128, + [SMALL_STATE(1793)] = 39206, + [SMALL_STATE(1794)] = 39264, + [SMALL_STATE(1795)] = 39332, + [SMALL_STATE(1796)] = 39386, + [SMALL_STATE(1797)] = 39446, + [SMALL_STATE(1798)] = 39502, + [SMALL_STATE(1799)] = 39556, + [SMALL_STATE(1800)] = 39634, + [SMALL_STATE(1801)] = 39692, + [SMALL_STATE(1802)] = 39770, + [SMALL_STATE(1803)] = 39848, + [SMALL_STATE(1804)] = 39926, + [SMALL_STATE(1805)] = 39982, + [SMALL_STATE(1806)] = 40036, + [SMALL_STATE(1807)] = 40114, + [SMALL_STATE(1808)] = 40168, + [SMALL_STATE(1809)] = 40236, + [SMALL_STATE(1810)] = 40292, + [SMALL_STATE(1811)] = 40348, + [SMALL_STATE(1812)] = 40426, + [SMALL_STATE(1813)] = 40480, + [SMALL_STATE(1814)] = 40548, + [SMALL_STATE(1815)] = 40602, + [SMALL_STATE(1816)] = 40680, + [SMALL_STATE(1817)] = 40734, + [SMALL_STATE(1818)] = 40790, + [SMALL_STATE(1819)] = 40868, + [SMALL_STATE(1820)] = 40922, + [SMALL_STATE(1821)] = 40978, + [SMALL_STATE(1822)] = 41036, + [SMALL_STATE(1823)] = 41104, + [SMALL_STATE(1824)] = 41182, + [SMALL_STATE(1825)] = 41250, + [SMALL_STATE(1826)] = 41328, + [SMALL_STATE(1827)] = 41406, + [SMALL_STATE(1828)] = 41459, + [SMALL_STATE(1829)] = 41516, + [SMALL_STATE(1830)] = 41581, + [SMALL_STATE(1831)] = 41646, + [SMALL_STATE(1832)] = 41699, + [SMALL_STATE(1833)] = 41764, + [SMALL_STATE(1834)] = 41829, + [SMALL_STATE(1835)] = 41894, + [SMALL_STATE(1836)] = 41947, + [SMALL_STATE(1837)] = 42012, + [SMALL_STATE(1838)] = 42077, + [SMALL_STATE(1839)] = 42142, + [SMALL_STATE(1840)] = 42207, + [SMALL_STATE(1841)] = 42260, + [SMALL_STATE(1842)] = 42313, + [SMALL_STATE(1843)] = 42378, + [SMALL_STATE(1844)] = 42429, + [SMALL_STATE(1845)] = 42482, + [SMALL_STATE(1846)] = 42533, + [SMALL_STATE(1847)] = 42598, + [SMALL_STATE(1848)] = 42663, + [SMALL_STATE(1849)] = 42728, + [SMALL_STATE(1850)] = 42793, + [SMALL_STATE(1851)] = 42846, + [SMALL_STATE(1852)] = 42899, + [SMALL_STATE(1853)] = 42964, + [SMALL_STATE(1854)] = 43015, + [SMALL_STATE(1855)] = 43066, + [SMALL_STATE(1856)] = 43131, + [SMALL_STATE(1857)] = 43194, + [SMALL_STATE(1858)] = 43249, + [SMALL_STATE(1859)] = 43304, + [SMALL_STATE(1860)] = 43369, + [SMALL_STATE(1861)] = 43434, + [SMALL_STATE(1862)] = 43499, + [SMALL_STATE(1863)] = 43564, + [SMALL_STATE(1864)] = 43627, + [SMALL_STATE(1865)] = 43692, + [SMALL_STATE(1866)] = 43749, + [SMALL_STATE(1867)] = 43800, + [SMALL_STATE(1868)] = 43851, + [SMALL_STATE(1869)] = 43904, + [SMALL_STATE(1870)] = 43969, + [SMALL_STATE(1871)] = 44034, + [SMALL_STATE(1872)] = 44099, + [SMALL_STATE(1873)] = 44154, + [SMALL_STATE(1874)] = 44219, + [SMALL_STATE(1875)] = 44284, + [SMALL_STATE(1876)] = 44339, + [SMALL_STATE(1877)] = 44399, + [SMALL_STATE(1878)] = 44451, + [SMALL_STATE(1879)] = 44511, + [SMALL_STATE(1880)] = 44563, + [SMALL_STATE(1881)] = 44615, + [SMALL_STATE(1882)] = 44667, + [SMALL_STATE(1883)] = 44721, + [SMALL_STATE(1884)] = 44773, + [SMALL_STATE(1885)] = 44825, + [SMALL_STATE(1886)] = 44877, + [SMALL_STATE(1887)] = 44929, + [SMALL_STATE(1888)] = 44981, + [SMALL_STATE(1889)] = 45033, + [SMALL_STATE(1890)] = 45095, + [SMALL_STATE(1891)] = 45157, + [SMALL_STATE(1892)] = 45209, + [SMALL_STATE(1893)] = 45261, + [SMALL_STATE(1894)] = 45321, + [SMALL_STATE(1895)] = 45373, + [SMALL_STATE(1896)] = 45425, + [SMALL_STATE(1897)] = 45477, + [SMALL_STATE(1898)] = 45531, + [SMALL_STATE(1899)] = 45583, + [SMALL_STATE(1900)] = 45635, + [SMALL_STATE(1901)] = 45687, + [SMALL_STATE(1902)] = 45739, + [SMALL_STATE(1903)] = 45791, + [SMALL_STATE(1904)] = 45843, + [SMALL_STATE(1905)] = 45895, + [SMALL_STATE(1906)] = 45955, + [SMALL_STATE(1907)] = 46007, + [SMALL_STATE(1908)] = 46066, + [SMALL_STATE(1909)] = 46117, + [SMALL_STATE(1910)] = 46176, + [SMALL_STATE(1911)] = 46235, + [SMALL_STATE(1912)] = 46294, + [SMALL_STATE(1913)] = 46349, + [SMALL_STATE(1914)] = 46400, + [SMALL_STATE(1915)] = 46451, + [SMALL_STATE(1916)] = 46502, + [SMALL_STATE(1917)] = 46553, + [SMALL_STATE(1918)] = 46604, + [SMALL_STATE(1919)] = 46655, + [SMALL_STATE(1920)] = 46714, + [SMALL_STATE(1921)] = 46765, + [SMALL_STATE(1922)] = 46824, + [SMALL_STATE(1923)] = 46923, + [SMALL_STATE(1924)] = 46974, + [SMALL_STATE(1925)] = 47033, + [SMALL_STATE(1926)] = 47084, + [SMALL_STATE(1927)] = 47143, + [SMALL_STATE(1928)] = 47202, + [SMALL_STATE(1929)] = 47253, + [SMALL_STATE(1930)] = 47304, + [SMALL_STATE(1931)] = 47355, + [SMALL_STATE(1932)] = 47410, + [SMALL_STATE(1933)] = 47469, + [SMALL_STATE(1934)] = 47526, + [SMALL_STATE(1935)] = 47577, + [SMALL_STATE(1936)] = 47628, + [SMALL_STATE(1937)] = 47679, + [SMALL_STATE(1938)] = 47730, + [SMALL_STATE(1939)] = 47789, + [SMALL_STATE(1940)] = 47848, + [SMALL_STATE(1941)] = 47907, + [SMALL_STATE(1942)] = 47966, + [SMALL_STATE(1943)] = 48021, + [SMALL_STATE(1944)] = 48072, + [SMALL_STATE(1945)] = 48123, + [SMALL_STATE(1946)] = 48174, + [SMALL_STATE(1947)] = 48229, + [SMALL_STATE(1948)] = 48280, + [SMALL_STATE(1949)] = 48376, + [SMALL_STATE(1950)] = 48430, + [SMALL_STATE(1951)] = 48482, + [SMALL_STATE(1952)] = 48532, + [SMALL_STATE(1953)] = 48584, + [SMALL_STATE(1954)] = 48636, + [SMALL_STATE(1955)] = 48690, + [SMALL_STATE(1956)] = 48744, + [SMALL_STATE(1957)] = 48800, + [SMALL_STATE(1958)] = 48850, + [SMALL_STATE(1959)] = 48900, + [SMALL_STATE(1960)] = 48954, + [SMALL_STATE(1961)] = 49008, [SMALL_STATE(1962)] = 49058, - [SMALL_STATE(1963)] = 49110, - [SMALL_STATE(1964)] = 49162, - [SMALL_STATE(1965)] = 49218, - [SMALL_STATE(1966)] = 49272, - [SMALL_STATE(1967)] = 49326, - [SMALL_STATE(1968)] = 49376, - [SMALL_STATE(1969)] = 49429, - [SMALL_STATE(1970)] = 49482, - [SMALL_STATE(1971)] = 49535, - [SMALL_STATE(1972)] = 49588, - [SMALL_STATE(1973)] = 49643, - [SMALL_STATE(1974)] = 49698, - [SMALL_STATE(1975)] = 49793, - [SMALL_STATE(1976)] = 49844, - [SMALL_STATE(1977)] = 49897, - [SMALL_STATE(1978)] = 49946, - [SMALL_STATE(1979)] = 49999, - [SMALL_STATE(1980)] = 50050, - [SMALL_STATE(1981)] = 50099, - [SMALL_STATE(1982)] = 50152, - [SMALL_STATE(1983)] = 50205, - [SMALL_STATE(1984)] = 50260, - [SMALL_STATE(1985)] = 50313, - [SMALL_STATE(1986)] = 50366, - [SMALL_STATE(1987)] = 50419, - [SMALL_STATE(1988)] = 50474, - [SMALL_STATE(1989)] = 50523, - [SMALL_STATE(1990)] = 50572, - [SMALL_STATE(1991)] = 50623, - [SMALL_STATE(1992)] = 50680, - [SMALL_STATE(1993)] = 50731, - [SMALL_STATE(1994)] = 50780, - [SMALL_STATE(1995)] = 50829, - [SMALL_STATE(1996)] = 50878, - [SMALL_STATE(1997)] = 50931, - [SMALL_STATE(1998)] = 50982, - [SMALL_STATE(1999)] = 51035, - [SMALL_STATE(2000)] = 51088, - [SMALL_STATE(2001)] = 51141, - [SMALL_STATE(2002)] = 51236, - [SMALL_STATE(2003)] = 51287, - [SMALL_STATE(2004)] = 51340, - [SMALL_STATE(2005)] = 51395, - [SMALL_STATE(2006)] = 51448, - [SMALL_STATE(2007)] = 51501, - [SMALL_STATE(2008)] = 51554, - [SMALL_STATE(2009)] = 51607, - [SMALL_STATE(2010)] = 51660, - [SMALL_STATE(2011)] = 51713, - [SMALL_STATE(2012)] = 51766, - [SMALL_STATE(2013)] = 51819, - [SMALL_STATE(2014)] = 51872, - [SMALL_STATE(2015)] = 51925, - [SMALL_STATE(2016)] = 51974, - [SMALL_STATE(2017)] = 52025, - [SMALL_STATE(2018)] = 52078, - [SMALL_STATE(2019)] = 52140, - [SMALL_STATE(2020)] = 52188, - [SMALL_STATE(2021)] = 52258, - [SMALL_STATE(2022)] = 52332, - [SMALL_STATE(2023)] = 52404, - [SMALL_STATE(2024)] = 52458, - [SMALL_STATE(2025)] = 52510, - [SMALL_STATE(2026)] = 52580, - [SMALL_STATE(2027)] = 52630, - [SMALL_STATE(2028)] = 52684, - [SMALL_STATE(2029)] = 52756, - [SMALL_STATE(2030)] = 52812, - [SMALL_STATE(2031)] = 52866, - [SMALL_STATE(2032)] = 52920, - [SMALL_STATE(2033)] = 52968, - [SMALL_STATE(2034)] = 53018, - [SMALL_STATE(2035)] = 53082, - [SMALL_STATE(2036)] = 53144, - [SMALL_STATE(2037)] = 53200, - [SMALL_STATE(2038)] = 53252, - [SMALL_STATE(2039)] = 53302, - [SMALL_STATE(2040)] = 53352, - [SMALL_STATE(2041)] = 53402, - [SMALL_STATE(2042)] = 53476, - [SMALL_STATE(2043)] = 53552, - [SMALL_STATE(2044)] = 53630, - [SMALL_STATE(2045)] = 53696, - [SMALL_STATE(2046)] = 53744, - [SMALL_STATE(2047)] = 53804, - [SMALL_STATE(2048)] = 53872, - [SMALL_STATE(2049)] = 53942, - [SMALL_STATE(2050)] = 54014, - [SMALL_STATE(2051)] = 54080, - [SMALL_STATE(2052)] = 54144, - [SMALL_STATE(2053)] = 54208, - [SMALL_STATE(2054)] = 54260, - [SMALL_STATE(2055)] = 54322, - [SMALL_STATE(2056)] = 54374, - [SMALL_STATE(2057)] = 54428, - [SMALL_STATE(2058)] = 54482, - [SMALL_STATE(2059)] = 54532, - [SMALL_STATE(2060)] = 54582, - [SMALL_STATE(2061)] = 54634, - [SMALL_STATE(2062)] = 54700, - [SMALL_STATE(2063)] = 54764, - [SMALL_STATE(2064)] = 54822, - [SMALL_STATE(2065)] = 54880, - [SMALL_STATE(2066)] = 54934, - [SMALL_STATE(2067)] = 54986, - [SMALL_STATE(2068)] = 55062, - [SMALL_STATE(2069)] = 55140, - [SMALL_STATE(2070)] = 55220, - [SMALL_STATE(2071)] = 55288, - [SMALL_STATE(2072)] = 55344, - [SMALL_STATE(2073)] = 55406, - [SMALL_STATE(2074)] = 55476, - [SMALL_STATE(2075)] = 55548, - [SMALL_STATE(2076)] = 55622, - [SMALL_STATE(2077)] = 55668, - [SMALL_STATE(2078)] = 55724, - [SMALL_STATE(2079)] = 55776, - [SMALL_STATE(2080)] = 55830, - [SMALL_STATE(2081)] = 55882, - [SMALL_STATE(2082)] = 55934, - [SMALL_STATE(2083)] = 55988, - [SMALL_STATE(2084)] = 56040, - [SMALL_STATE(2085)] = 56092, - [SMALL_STATE(2086)] = 56140, - [SMALL_STATE(2087)] = 56192, - [SMALL_STATE(2088)] = 56268, - [SMALL_STATE(2089)] = 56316, - [SMALL_STATE(2090)] = 56390, - [SMALL_STATE(2091)] = 56468, - [SMALL_STATE(2092)] = 56544, - [SMALL_STATE(2093)] = 56624, - [SMALL_STATE(2094)] = 56702, - [SMALL_STATE(2095)] = 56768, - [SMALL_STATE(2096)] = 56832, - [SMALL_STATE(2097)] = 56896, - [SMALL_STATE(2098)] = 56958, - [SMALL_STATE(2099)] = 57016, - [SMALL_STATE(2100)] = 57072, - [SMALL_STATE(2101)] = 57126, - [SMALL_STATE(2102)] = 57178, - [SMALL_STATE(2103)] = 57254, - [SMALL_STATE(2104)] = 57328, - [SMALL_STATE(2105)] = 57406, - [SMALL_STATE(2106)] = 57482, - [SMALL_STATE(2107)] = 57562, - [SMALL_STATE(2108)] = 57640, - [SMALL_STATE(2109)] = 57708, - [SMALL_STATE(2110)] = 57776, - [SMALL_STATE(2111)] = 57842, - [SMALL_STATE(2112)] = 57904, - [SMALL_STATE(2113)] = 57956, - [SMALL_STATE(2114)] = 58010, - [SMALL_STATE(2115)] = 58070, - [SMALL_STATE(2116)] = 58140, - [SMALL_STATE(2117)] = 58208, - [SMALL_STATE(2118)] = 58262, - [SMALL_STATE(2119)] = 58310, - [SMALL_STATE(2120)] = 58358, - [SMALL_STATE(2121)] = 58430, - [SMALL_STATE(2122)] = 58484, - [SMALL_STATE(2123)] = 58538, - [SMALL_STATE(2124)] = 58586, - [SMALL_STATE(2125)] = 58656, - [SMALL_STATE(2126)] = 58730, - [SMALL_STATE(2127)] = 58802, - [SMALL_STATE(2128)] = 58868, - [SMALL_STATE(2129)] = 58934, - [SMALL_STATE(2130)] = 58998, - [SMALL_STATE(2131)] = 59056, - [SMALL_STATE(2132)] = 59110, - [SMALL_STATE(2133)] = 59160, - [SMALL_STATE(2134)] = 59222, - [SMALL_STATE(2135)] = 59282, - [SMALL_STATE(2136)] = 59352, - [SMALL_STATE(2137)] = 59428, - [SMALL_STATE(2138)] = 59506, - [SMALL_STATE(2139)] = 59586, - [SMALL_STATE(2140)] = 59634, - [SMALL_STATE(2141)] = 59702, - [SMALL_STATE(2142)] = 59750, - [SMALL_STATE(2143)] = 59812, - [SMALL_STATE(2144)] = 59866, - [SMALL_STATE(2145)] = 59916, - [SMALL_STATE(2146)] = 59986, - [SMALL_STATE(2147)] = 60054, - [SMALL_STATE(2148)] = 60102, - [SMALL_STATE(2149)] = 60174, - [SMALL_STATE(2150)] = 60224, - [SMALL_STATE(2151)] = 60298, - [SMALL_STATE(2152)] = 60346, - [SMALL_STATE(2153)] = 60396, - [SMALL_STATE(2154)] = 60444, - [SMALL_STATE(2155)] = 60492, - [SMALL_STATE(2156)] = 60540, - [SMALL_STATE(2157)] = 60612, - [SMALL_STATE(2158)] = 60676, - [SMALL_STATE(2159)] = 60736, - [SMALL_STATE(2160)] = 60792, - [SMALL_STATE(2161)] = 60844, - [SMALL_STATE(2162)] = 60918, - [SMALL_STATE(2163)] = 60994, + [SMALL_STATE(1963)] = 49108, + [SMALL_STATE(1964)] = 49158, + [SMALL_STATE(1965)] = 49208, + [SMALL_STATE(1966)] = 49304, + [SMALL_STATE(1967)] = 49356, + [SMALL_STATE(1968)] = 49412, + [SMALL_STATE(1969)] = 49463, + [SMALL_STATE(1970)] = 49514, + [SMALL_STATE(1971)] = 49567, + [SMALL_STATE(1972)] = 49620, + [SMALL_STATE(1973)] = 49673, + [SMALL_STATE(1974)] = 49768, + [SMALL_STATE(1975)] = 49823, + [SMALL_STATE(1976)] = 49876, + [SMALL_STATE(1977)] = 49927, + [SMALL_STATE(1978)] = 49982, + [SMALL_STATE(1979)] = 50035, + [SMALL_STATE(1980)] = 50086, + [SMALL_STATE(1981)] = 50135, + [SMALL_STATE(1982)] = 50188, + [SMALL_STATE(1983)] = 50243, + [SMALL_STATE(1984)] = 50292, + [SMALL_STATE(1985)] = 50345, + [SMALL_STATE(1986)] = 50398, + [SMALL_STATE(1987)] = 50451, + [SMALL_STATE(1988)] = 50504, + [SMALL_STATE(1989)] = 50557, + [SMALL_STATE(1990)] = 50608, + [SMALL_STATE(1991)] = 50663, + [SMALL_STATE(1992)] = 50718, + [SMALL_STATE(1993)] = 50771, + [SMALL_STATE(1994)] = 50824, + [SMALL_STATE(1995)] = 50877, + [SMALL_STATE(1996)] = 50930, + [SMALL_STATE(1997)] = 50983, + [SMALL_STATE(1998)] = 51036, + [SMALL_STATE(1999)] = 51089, + [SMALL_STATE(2000)] = 51138, + [SMALL_STATE(2001)] = 51195, + [SMALL_STATE(2002)] = 51246, + [SMALL_STATE(2003)] = 51299, + [SMALL_STATE(2004)] = 51352, + [SMALL_STATE(2005)] = 51405, + [SMALL_STATE(2006)] = 51454, + [SMALL_STATE(2007)] = 51507, + [SMALL_STATE(2008)] = 51556, + [SMALL_STATE(2009)] = 51605, + [SMALL_STATE(2010)] = 51658, + [SMALL_STATE(2011)] = 51711, + [SMALL_STATE(2012)] = 51764, + [SMALL_STATE(2013)] = 51813, + [SMALL_STATE(2014)] = 51866, + [SMALL_STATE(2015)] = 51915, + [SMALL_STATE(2016)] = 52010, + [SMALL_STATE(2017)] = 52063, + [SMALL_STATE(2018)] = 52114, + [SMALL_STATE(2019)] = 52174, + [SMALL_STATE(2020)] = 52236, + [SMALL_STATE(2021)] = 52306, + [SMALL_STATE(2022)] = 52378, + [SMALL_STATE(2023)] = 52452, + [SMALL_STATE(2024)] = 52500, + [SMALL_STATE(2025)] = 52564, + [SMALL_STATE(2026)] = 52626, + [SMALL_STATE(2027)] = 52682, + [SMALL_STATE(2028)] = 52734, + [SMALL_STATE(2029)] = 52808, + [SMALL_STATE(2030)] = 52884, + [SMALL_STATE(2031)] = 52962, + [SMALL_STATE(2032)] = 53028, + [SMALL_STATE(2033)] = 53096, + [SMALL_STATE(2034)] = 53164, + [SMALL_STATE(2035)] = 53234, + [SMALL_STATE(2036)] = 53306, + [SMALL_STATE(2037)] = 53372, + [SMALL_STATE(2038)] = 53436, + [SMALL_STATE(2039)] = 53500, + [SMALL_STATE(2040)] = 53562, + [SMALL_STATE(2041)] = 53620, + [SMALL_STATE(2042)] = 53676, + [SMALL_STATE(2043)] = 53730, + [SMALL_STATE(2044)] = 53782, + [SMALL_STATE(2045)] = 53858, + [SMALL_STATE(2046)] = 53932, + [SMALL_STATE(2047)] = 54010, + [SMALL_STATE(2048)] = 54086, + [SMALL_STATE(2049)] = 54166, + [SMALL_STATE(2050)] = 54244, + [SMALL_STATE(2051)] = 54312, + [SMALL_STATE(2052)] = 54378, + [SMALL_STATE(2053)] = 54440, + [SMALL_STATE(2054)] = 54510, + [SMALL_STATE(2055)] = 54578, + [SMALL_STATE(2056)] = 54650, + [SMALL_STATE(2057)] = 54720, + [SMALL_STATE(2058)] = 54794, + [SMALL_STATE(2059)] = 54866, + [SMALL_STATE(2060)] = 54930, + [SMALL_STATE(2061)] = 54992, + [SMALL_STATE(2062)] = 55048, + [SMALL_STATE(2063)] = 55100, + [SMALL_STATE(2064)] = 55174, + [SMALL_STATE(2065)] = 55250, + [SMALL_STATE(2066)] = 55328, + [SMALL_STATE(2067)] = 55394, + [SMALL_STATE(2068)] = 55454, + [SMALL_STATE(2069)] = 55522, + [SMALL_STATE(2070)] = 55592, + [SMALL_STATE(2071)] = 55664, + [SMALL_STATE(2072)] = 55714, + [SMALL_STATE(2073)] = 55766, + [SMALL_STATE(2074)] = 55816, + [SMALL_STATE(2075)] = 55866, + [SMALL_STATE(2076)] = 55914, + [SMALL_STATE(2077)] = 55964, + [SMALL_STATE(2078)] = 56018, + [SMALL_STATE(2079)] = 56072, + [SMALL_STATE(2080)] = 56120, + [SMALL_STATE(2081)] = 56170, + [SMALL_STATE(2082)] = 56220, + [SMALL_STATE(2083)] = 56270, + [SMALL_STATE(2084)] = 56320, + [SMALL_STATE(2085)] = 56368, + [SMALL_STATE(2086)] = 56416, + [SMALL_STATE(2087)] = 56464, + [SMALL_STATE(2088)] = 56518, + [SMALL_STATE(2089)] = 56572, + [SMALL_STATE(2090)] = 56624, + [SMALL_STATE(2091)] = 56672, + [SMALL_STATE(2092)] = 56726, + [SMALL_STATE(2093)] = 56776, + [SMALL_STATE(2094)] = 56826, + [SMALL_STATE(2095)] = 56874, + [SMALL_STATE(2096)] = 56926, + [SMALL_STATE(2097)] = 56980, + [SMALL_STATE(2098)] = 57028, + [SMALL_STATE(2099)] = 57074, + [SMALL_STATE(2100)] = 57128, + [SMALL_STATE(2101)] = 57184, + [SMALL_STATE(2102)] = 57236, + [SMALL_STATE(2103)] = 57288, + [SMALL_STATE(2104)] = 57336, + [SMALL_STATE(2105)] = 57388, + [SMALL_STATE(2106)] = 57440, + [SMALL_STATE(2107)] = 57488, + [SMALL_STATE(2108)] = 57536, + [SMALL_STATE(2109)] = 57584, + [SMALL_STATE(2110)] = 57636, + [SMALL_STATE(2111)] = 57692, + [SMALL_STATE(2112)] = 57744, + [SMALL_STATE(2113)] = 57796, + [SMALL_STATE(2114)] = 57848, + [SMALL_STATE(2115)] = 57896, + [SMALL_STATE(2116)] = 57944, + [SMALL_STATE(2117)] = 58010, + [SMALL_STATE(2118)] = 58074, + [SMALL_STATE(2119)] = 58132, + [SMALL_STATE(2120)] = 58186, + [SMALL_STATE(2121)] = 58262, + [SMALL_STATE(2122)] = 58340, + [SMALL_STATE(2123)] = 58420, + [SMALL_STATE(2124)] = 58488, + [SMALL_STATE(2125)] = 58542, + [SMALL_STATE(2126)] = 58604, + [SMALL_STATE(2127)] = 58674, + [SMALL_STATE(2128)] = 58728, + [SMALL_STATE(2129)] = 58800, + [SMALL_STATE(2130)] = 58874, + [SMALL_STATE(2131)] = 58928, + [SMALL_STATE(2132)] = 58982, + [SMALL_STATE(2133)] = 59032, + [SMALL_STATE(2134)] = 59080, + [SMALL_STATE(2135)] = 59134, + [SMALL_STATE(2136)] = 59200, + [SMALL_STATE(2137)] = 59264, + [SMALL_STATE(2138)] = 59328, + [SMALL_STATE(2139)] = 59390, + [SMALL_STATE(2140)] = 59448, + [SMALL_STATE(2141)] = 59504, + [SMALL_STATE(2142)] = 59558, + [SMALL_STATE(2143)] = 59610, + [SMALL_STATE(2144)] = 59686, + [SMALL_STATE(2145)] = 59760, + [SMALL_STATE(2146)] = 59838, + [SMALL_STATE(2147)] = 59914, + [SMALL_STATE(2148)] = 59994, + [SMALL_STATE(2149)] = 60072, + [SMALL_STATE(2150)] = 60140, + [SMALL_STATE(2151)] = 60206, + [SMALL_STATE(2152)] = 60268, + [SMALL_STATE(2153)] = 60328, + [SMALL_STATE(2154)] = 60398, + [SMALL_STATE(2155)] = 60466, + [SMALL_STATE(2156)] = 60538, + [SMALL_STATE(2157)] = 60608, + [SMALL_STATE(2158)] = 60682, + [SMALL_STATE(2159)] = 60754, + [SMALL_STATE(2160)] = 60820, + [SMALL_STATE(2161)] = 60884, + [SMALL_STATE(2162)] = 60942, + [SMALL_STATE(2163)] = 60996, [SMALL_STATE(2164)] = 61072, - [SMALL_STATE(2165)] = 61138, - [SMALL_STATE(2166)] = 61186, - [SMALL_STATE(2167)] = 61254, - [SMALL_STATE(2168)] = 61333, - [SMALL_STATE(2169)] = 61380, - [SMALL_STATE(2170)] = 61427, - [SMALL_STATE(2171)] = 61474, - [SMALL_STATE(2172)] = 61521, - [SMALL_STATE(2173)] = 61568, - [SMALL_STATE(2174)] = 61615, - [SMALL_STATE(2175)] = 61662, - [SMALL_STATE(2176)] = 61709, - [SMALL_STATE(2177)] = 61756, - [SMALL_STATE(2178)] = 61803, - [SMALL_STATE(2179)] = 61850, - [SMALL_STATE(2180)] = 61897, - [SMALL_STATE(2181)] = 61944, - [SMALL_STATE(2182)] = 61991, - [SMALL_STATE(2183)] = 62038, + [SMALL_STATE(2165)] = 61150, + [SMALL_STATE(2166)] = 61230, + [SMALL_STATE(2167)] = 61290, + [SMALL_STATE(2168)] = 61337, + [SMALL_STATE(2169)] = 61384, + [SMALL_STATE(2170)] = 61431, + [SMALL_STATE(2171)] = 61478, + [SMALL_STATE(2172)] = 61525, + [SMALL_STATE(2173)] = 61572, + [SMALL_STATE(2174)] = 61619, + [SMALL_STATE(2175)] = 61666, + [SMALL_STATE(2176)] = 61713, + [SMALL_STATE(2177)] = 61760, + [SMALL_STATE(2178)] = 61807, + [SMALL_STATE(2179)] = 61854, + [SMALL_STATE(2180)] = 61901, + [SMALL_STATE(2181)] = 61948, + [SMALL_STATE(2182)] = 61995, + [SMALL_STATE(2183)] = 62042, [SMALL_STATE(2184)] = 62089, [SMALL_STATE(2185)] = 62136, - [SMALL_STATE(2186)] = 62183, - [SMALL_STATE(2187)] = 62230, - [SMALL_STATE(2188)] = 62277, - [SMALL_STATE(2189)] = 62324, + [SMALL_STATE(2186)] = 62185, + [SMALL_STATE(2187)] = 62232, + [SMALL_STATE(2188)] = 62279, + [SMALL_STATE(2189)] = 62326, [SMALL_STATE(2190)] = 62373, - [SMALL_STATE(2191)] = 62420, - [SMALL_STATE(2192)] = 62499, - [SMALL_STATE(2193)] = 62546, - [SMALL_STATE(2194)] = 62593, - [SMALL_STATE(2195)] = 62640, - [SMALL_STATE(2196)] = 62719, - [SMALL_STATE(2197)] = 62764, - [SMALL_STATE(2198)] = 62811, - [SMALL_STATE(2199)] = 62858, - [SMALL_STATE(2200)] = 62937, - [SMALL_STATE(2201)] = 62984, - [SMALL_STATE(2202)] = 63031, - [SMALL_STATE(2203)] = 63078, - [SMALL_STATE(2204)] = 63157, - [SMALL_STATE(2205)] = 63204, - [SMALL_STATE(2206)] = 63283, - [SMALL_STATE(2207)] = 63330, - [SMALL_STATE(2208)] = 63377, - [SMALL_STATE(2209)] = 63424, - [SMALL_STATE(2210)] = 63471, - [SMALL_STATE(2211)] = 63518, - [SMALL_STATE(2212)] = 63565, - [SMALL_STATE(2213)] = 63612, - [SMALL_STATE(2214)] = 63659, - [SMALL_STATE(2215)] = 63706, - [SMALL_STATE(2216)] = 63753, - [SMALL_STATE(2217)] = 63802, - [SMALL_STATE(2218)] = 63849, - [SMALL_STATE(2219)] = 63896, - [SMALL_STATE(2220)] = 63943, - [SMALL_STATE(2221)] = 64035, - [SMALL_STATE(2222)] = 64099, - [SMALL_STATE(2223)] = 64167, + [SMALL_STATE(2191)] = 62424, + [SMALL_STATE(2192)] = 62471, + [SMALL_STATE(2193)] = 62518, + [SMALL_STATE(2194)] = 62565, + [SMALL_STATE(2195)] = 62612, + [SMALL_STATE(2196)] = 62659, + [SMALL_STATE(2197)] = 62706, + [SMALL_STATE(2198)] = 62753, + [SMALL_STATE(2199)] = 62800, + [SMALL_STATE(2200)] = 62847, + [SMALL_STATE(2201)] = 62892, + [SMALL_STATE(2202)] = 62941, + [SMALL_STATE(2203)] = 62988, + [SMALL_STATE(2204)] = 63035, + [SMALL_STATE(2205)] = 63114, + [SMALL_STATE(2206)] = 63161, + [SMALL_STATE(2207)] = 63208, + [SMALL_STATE(2208)] = 63287, + [SMALL_STATE(2209)] = 63334, + [SMALL_STATE(2210)] = 63381, + [SMALL_STATE(2211)] = 63428, + [SMALL_STATE(2212)] = 63475, + [SMALL_STATE(2213)] = 63522, + [SMALL_STATE(2214)] = 63569, + [SMALL_STATE(2215)] = 63616, + [SMALL_STATE(2216)] = 63695, + [SMALL_STATE(2217)] = 63774, + [SMALL_STATE(2218)] = 63853, + [SMALL_STATE(2219)] = 63932, + [SMALL_STATE(2220)] = 63979, + [SMALL_STATE(2221)] = 64045, + [SMALL_STATE(2222)] = 64097, + [SMALL_STATE(2223)] = 64145, [SMALL_STATE(2224)] = 64215, - [SMALL_STATE(2225)] = 64281, - [SMALL_STATE(2226)] = 64329, - [SMALL_STATE(2227)] = 64381, - [SMALL_STATE(2228)] = 64439, - [SMALL_STATE(2229)] = 64531, - [SMALL_STATE(2230)] = 64587, - [SMALL_STATE(2231)] = 64655, - [SMALL_STATE(2232)] = 64703, - [SMALL_STATE(2233)] = 64763, - [SMALL_STATE(2234)] = 64811, - [SMALL_STATE(2235)] = 64869, - [SMALL_STATE(2236)] = 64931, - [SMALL_STATE(2237)] = 64979, - [SMALL_STATE(2238)] = 65027, - [SMALL_STATE(2239)] = 65097, - [SMALL_STATE(2240)] = 65167, - [SMALL_STATE(2241)] = 65215, - [SMALL_STATE(2242)] = 65287, - [SMALL_STATE(2243)] = 65361, - [SMALL_STATE(2244)] = 65433, - [SMALL_STATE(2245)] = 65495, - [SMALL_STATE(2246)] = 65543, - [SMALL_STATE(2247)] = 65599, - [SMALL_STATE(2248)] = 65691, - [SMALL_STATE(2249)] = 65737, - [SMALL_STATE(2250)] = 65785, - [SMALL_STATE(2251)] = 65849, - [SMALL_STATE(2252)] = 65941, - [SMALL_STATE(2253)] = 66007, - [SMALL_STATE(2254)] = 66055, - [SMALL_STATE(2255)] = 66115, - [SMALL_STATE(2256)] = 66189, - [SMALL_STATE(2257)] = 66237, - [SMALL_STATE(2258)] = 66289, - [SMALL_STATE(2259)] = 66340, - [SMALL_STATE(2260)] = 66413, - [SMALL_STATE(2261)] = 66486, - [SMALL_STATE(2262)] = 66559, - [SMALL_STATE(2263)] = 66632, - [SMALL_STATE(2264)] = 66705, - [SMALL_STATE(2265)] = 66750, - [SMALL_STATE(2266)] = 66823, - [SMALL_STATE(2267)] = 66873, - [SMALL_STATE(2268)] = 66923, - [SMALL_STATE(2269)] = 66973, - [SMALL_STATE(2270)] = 67019, - [SMALL_STATE(2271)] = 67105, - [SMALL_STATE(2272)] = 67155, - [SMALL_STATE(2273)] = 67201, - [SMALL_STATE(2274)] = 67250, - [SMALL_STATE(2275)] = 67293, - [SMALL_STATE(2276)] = 67342, - [SMALL_STATE(2277)] = 67385, - [SMALL_STATE(2278)] = 67428, - [SMALL_STATE(2279)] = 67479, - [SMALL_STATE(2280)] = 67524, - [SMALL_STATE(2281)] = 67573, - [SMALL_STATE(2282)] = 67620, - [SMALL_STATE(2283)] = 67669, - [SMALL_STATE(2284)] = 67718, - [SMALL_STATE(2285)] = 67761, - [SMALL_STATE(2286)] = 67810, - [SMALL_STATE(2287)] = 67853, - [SMALL_STATE(2288)] = 67898, - [SMALL_STATE(2289)] = 67941, - [SMALL_STATE(2290)] = 67984, - [SMALL_STATE(2291)] = 68027, - [SMALL_STATE(2292)] = 68073, - [SMALL_STATE(2293)] = 68153, - [SMALL_STATE(2294)] = 68231, - [SMALL_STATE(2295)] = 68275, - [SMALL_STATE(2296)] = 68317, - [SMALL_STATE(2297)] = 68397, - [SMALL_STATE(2298)] = 68439, - [SMALL_STATE(2299)] = 68484, - [SMALL_STATE(2300)] = 68525, - [SMALL_STATE(2301)] = 68570, - [SMALL_STATE(2302)] = 68652, - [SMALL_STATE(2303)] = 68692, - [SMALL_STATE(2304)] = 68736, - [SMALL_STATE(2305)] = 68780, - [SMALL_STATE(2306)] = 68824, - [SMALL_STATE(2307)] = 68868, - [SMALL_STATE(2308)] = 68950, - [SMALL_STATE(2309)] = 68995, - [SMALL_STATE(2310)] = 69071, - [SMALL_STATE(2311)] = 69147, - [SMALL_STATE(2312)] = 69223, - [SMALL_STATE(2313)] = 69299, - [SMALL_STATE(2314)] = 69345, - [SMALL_STATE(2315)] = 69421, - [SMALL_STATE(2316)] = 69497, - [SMALL_STATE(2317)] = 69573, - [SMALL_STATE(2318)] = 69649, - [SMALL_STATE(2319)] = 69725, - [SMALL_STATE(2320)] = 69801, - [SMALL_STATE(2321)] = 69877, - [SMALL_STATE(2322)] = 69953, - [SMALL_STATE(2323)] = 70029, - [SMALL_STATE(2324)] = 70105, - [SMALL_STATE(2325)] = 70181, - [SMALL_STATE(2326)] = 70257, - [SMALL_STATE(2327)] = 70333, - [SMALL_STATE(2328)] = 70409, - [SMALL_STATE(2329)] = 70453, - [SMALL_STATE(2330)] = 70495, - [SMALL_STATE(2331)] = 70541, - [SMALL_STATE(2332)] = 70587, - [SMALL_STATE(2333)] = 70663, - [SMALL_STATE(2334)] = 70739, - [SMALL_STATE(2335)] = 70815, - [SMALL_STATE(2336)] = 70891, - [SMALL_STATE(2337)] = 70967, - [SMALL_STATE(2338)] = 71043, - [SMALL_STATE(2339)] = 71119, - [SMALL_STATE(2340)] = 71171, - [SMALL_STATE(2341)] = 71247, - [SMALL_STATE(2342)] = 71286, - [SMALL_STATE(2343)] = 71335, - [SMALL_STATE(2344)] = 71384, - [SMALL_STATE(2345)] = 71435, - [SMALL_STATE(2346)] = 71484, - [SMALL_STATE(2347)] = 71532, - [SMALL_STATE(2348)] = 71572, - [SMALL_STATE(2349)] = 71642, - [SMALL_STATE(2350)] = 71696, - [SMALL_STATE(2351)] = 71766, - [SMALL_STATE(2352)] = 71812, - [SMALL_STATE(2353)] = 71882, - [SMALL_STATE(2354)] = 71928, - [SMALL_STATE(2355)] = 71974, - [SMALL_STATE(2356)] = 72020, - [SMALL_STATE(2357)] = 72090, - [SMALL_STATE(2358)] = 72138, + [SMALL_STATE(2225)] = 64287, + [SMALL_STATE(2226)] = 64343, + [SMALL_STATE(2227)] = 64435, + [SMALL_STATE(2228)] = 64509, + [SMALL_STATE(2229)] = 64581, + [SMALL_STATE(2230)] = 64643, + [SMALL_STATE(2231)] = 64699, + [SMALL_STATE(2232)] = 64763, + [SMALL_STATE(2233)] = 64827, + [SMALL_STATE(2234)] = 64895, + [SMALL_STATE(2235)] = 64961, + [SMALL_STATE(2236)] = 65035, + [SMALL_STATE(2237)] = 65083, + [SMALL_STATE(2238)] = 65143, + [SMALL_STATE(2239)] = 65235, + [SMALL_STATE(2240)] = 65305, + [SMALL_STATE(2241)] = 65373, + [SMALL_STATE(2242)] = 65421, + [SMALL_STATE(2243)] = 65513, + [SMALL_STATE(2244)] = 65561, + [SMALL_STATE(2245)] = 65653, + [SMALL_STATE(2246)] = 65701, + [SMALL_STATE(2247)] = 65749, + [SMALL_STATE(2248)] = 65797, + [SMALL_STATE(2249)] = 65845, + [SMALL_STATE(2250)] = 65893, + [SMALL_STATE(2251)] = 65939, + [SMALL_STATE(2252)] = 65987, + [SMALL_STATE(2253)] = 66045, + [SMALL_STATE(2254)] = 66107, + [SMALL_STATE(2255)] = 66167, + [SMALL_STATE(2256)] = 66215, + [SMALL_STATE(2257)] = 66267, + [SMALL_STATE(2258)] = 66325, + [SMALL_STATE(2259)] = 66398, + [SMALL_STATE(2260)] = 66449, + [SMALL_STATE(2261)] = 66522, + [SMALL_STATE(2262)] = 66595, + [SMALL_STATE(2263)] = 66668, + [SMALL_STATE(2264)] = 66713, + [SMALL_STATE(2265)] = 66786, + [SMALL_STATE(2266)] = 66859, + [SMALL_STATE(2267)] = 66913, + [SMALL_STATE(2268)] = 66959, + [SMALL_STATE(2269)] = 67013, + [SMALL_STATE(2270)] = 67063, + [SMALL_STATE(2271)] = 67113, + [SMALL_STATE(2272)] = 67199, + [SMALL_STATE(2273)] = 67253, + [SMALL_STATE(2274)] = 67299, + [SMALL_STATE(2275)] = 67349, + [SMALL_STATE(2276)] = 67399, + [SMALL_STATE(2277)] = 67442, + [SMALL_STATE(2278)] = 67491, + [SMALL_STATE(2279)] = 67536, + [SMALL_STATE(2280)] = 67583, + [SMALL_STATE(2281)] = 67634, + [SMALL_STATE(2282)] = 67677, + [SMALL_STATE(2283)] = 67720, + [SMALL_STATE(2284)] = 67765, + [SMALL_STATE(2285)] = 67808, + [SMALL_STATE(2286)] = 67851, + [SMALL_STATE(2287)] = 67900, + [SMALL_STATE(2288)] = 67949, + [SMALL_STATE(2289)] = 67992, + [SMALL_STATE(2290)] = 68041, + [SMALL_STATE(2291)] = 68090, + [SMALL_STATE(2292)] = 68133, + [SMALL_STATE(2293)] = 68176, + [SMALL_STATE(2294)] = 68225, + [SMALL_STATE(2295)] = 68303, + [SMALL_STATE(2296)] = 68347, + [SMALL_STATE(2297)] = 68427, + [SMALL_STATE(2298)] = 68507, + [SMALL_STATE(2299)] = 68553, + [SMALL_STATE(2300)] = 68595, + [SMALL_STATE(2301)] = 68637, + [SMALL_STATE(2302)] = 68682, + [SMALL_STATE(2303)] = 68727, + [SMALL_STATE(2304)] = 68768, + [SMALL_STATE(2305)] = 68812, + [SMALL_STATE(2306)] = 68894, + [SMALL_STATE(2307)] = 68938, + [SMALL_STATE(2308)] = 68982, + [SMALL_STATE(2309)] = 69026, + [SMALL_STATE(2310)] = 69066, + [SMALL_STATE(2311)] = 69148, + [SMALL_STATE(2312)] = 69193, + [SMALL_STATE(2313)] = 69239, + [SMALL_STATE(2314)] = 69315, + [SMALL_STATE(2315)] = 69361, + [SMALL_STATE(2316)] = 69407, + [SMALL_STATE(2317)] = 69483, + [SMALL_STATE(2318)] = 69559, + [SMALL_STATE(2319)] = 69635, + [SMALL_STATE(2320)] = 69687, + [SMALL_STATE(2321)] = 69763, + [SMALL_STATE(2322)] = 69839, + [SMALL_STATE(2323)] = 69915, + [SMALL_STATE(2324)] = 69991, + [SMALL_STATE(2325)] = 70067, + [SMALL_STATE(2326)] = 70143, + [SMALL_STATE(2327)] = 70219, + [SMALL_STATE(2328)] = 70295, + [SMALL_STATE(2329)] = 70371, + [SMALL_STATE(2330)] = 70447, + [SMALL_STATE(2331)] = 70523, + [SMALL_STATE(2332)] = 70599, + [SMALL_STATE(2333)] = 70675, + [SMALL_STATE(2334)] = 70751, + [SMALL_STATE(2335)] = 70827, + [SMALL_STATE(2336)] = 70871, + [SMALL_STATE(2337)] = 70947, + [SMALL_STATE(2338)] = 71023, + [SMALL_STATE(2339)] = 71099, + [SMALL_STATE(2340)] = 71175, + [SMALL_STATE(2341)] = 71217, + [SMALL_STATE(2342)] = 71293, + [SMALL_STATE(2343)] = 71369, + [SMALL_STATE(2344)] = 71445, + [SMALL_STATE(2345)] = 71484, + [SMALL_STATE(2346)] = 71533, + [SMALL_STATE(2347)] = 71584, + [SMALL_STATE(2348)] = 71633, + [SMALL_STATE(2349)] = 71682, + [SMALL_STATE(2350)] = 71752, + [SMALL_STATE(2351)] = 71822, + [SMALL_STATE(2352)] = 71870, + [SMALL_STATE(2353)] = 71940, + [SMALL_STATE(2354)] = 71980, + [SMALL_STATE(2355)] = 72020, + [SMALL_STATE(2356)] = 72068, + [SMALL_STATE(2357)] = 72116, + [SMALL_STATE(2358)] = 72162, [SMALL_STATE(2359)] = 72208, - [SMALL_STATE(2360)] = 72278, - [SMALL_STATE(2361)] = 72348, - [SMALL_STATE(2362)] = 72418, - [SMALL_STATE(2363)] = 72466, - [SMALL_STATE(2364)] = 72536, - [SMALL_STATE(2365)] = 72606, - [SMALL_STATE(2366)] = 72676, - [SMALL_STATE(2367)] = 72746, - [SMALL_STATE(2368)] = 72786, - [SMALL_STATE(2369)] = 72825, - [SMALL_STATE(2370)] = 72862, - [SMALL_STATE(2371)] = 72899, - [SMALL_STATE(2372)] = 72946, - [SMALL_STATE(2373)] = 72997, - [SMALL_STATE(2374)] = 73042, - [SMALL_STATE(2375)] = 73093, - [SMALL_STATE(2376)] = 73146, - [SMALL_STATE(2377)] = 73197, - [SMALL_STATE(2378)] = 73236, - [SMALL_STATE(2379)] = 73281, - [SMALL_STATE(2380)] = 73326, - [SMALL_STATE(2381)] = 73371, - [SMALL_STATE(2382)] = 73419, - [SMALL_STATE(2383)] = 73455, - [SMALL_STATE(2384)] = 73493, - [SMALL_STATE(2385)] = 73543, - [SMALL_STATE(2386)] = 73577, - [SMALL_STATE(2387)] = 73611, - [SMALL_STATE(2388)] = 73645, - [SMALL_STATE(2389)] = 73683, - [SMALL_STATE(2390)] = 73717, - [SMALL_STATE(2391)] = 73751, - [SMALL_STATE(2392)] = 73785, - [SMALL_STATE(2393)] = 73819, - [SMALL_STATE(2394)] = 73853, - [SMALL_STATE(2395)] = 73887, - [SMALL_STATE(2396)] = 73935, - [SMALL_STATE(2397)] = 73983, - [SMALL_STATE(2398)] = 74031, - [SMALL_STATE(2399)] = 74081, - [SMALL_STATE(2400)] = 74119, - [SMALL_STATE(2401)] = 74169, - [SMALL_STATE(2402)] = 74211, - [SMALL_STATE(2403)] = 74249, - [SMALL_STATE(2404)] = 74289, - [SMALL_STATE(2405)] = 74329, - [SMALL_STATE(2406)] = 74375, - [SMALL_STATE(2407)] = 74413, - [SMALL_STATE(2408)] = 74449, - [SMALL_STATE(2409)] = 74489, - [SMALL_STATE(2410)] = 74536, - [SMALL_STATE(2411)] = 74587, - [SMALL_STATE(2412)] = 74622, - [SMALL_STATE(2413)] = 74661, - [SMALL_STATE(2414)] = 74700, - [SMALL_STATE(2415)] = 74741, - [SMALL_STATE(2416)] = 74780, - [SMALL_STATE(2417)] = 74817, - [SMALL_STATE(2418)] = 74852, - [SMALL_STATE(2419)] = 74899, - [SMALL_STATE(2420)] = 74934, - [SMALL_STATE(2421)] = 74971, - [SMALL_STATE(2422)] = 75010, - [SMALL_STATE(2423)] = 75051, - [SMALL_STATE(2424)] = 75084, - [SMALL_STATE(2425)] = 75119, - [SMALL_STATE(2426)] = 75158, - [SMALL_STATE(2427)] = 75195, - [SMALL_STATE(2428)] = 75242, - [SMALL_STATE(2429)] = 75281, - [SMALL_STATE(2430)] = 75316, - [SMALL_STATE(2431)] = 75363, - [SMALL_STATE(2432)] = 75410, - [SMALL_STATE(2433)] = 75449, - [SMALL_STATE(2434)] = 75482, - [SMALL_STATE(2435)] = 75519, - [SMALL_STATE(2436)] = 75552, - [SMALL_STATE(2437)] = 75589, - [SMALL_STATE(2438)] = 75623, - [SMALL_STATE(2439)] = 75655, - [SMALL_STATE(2440)] = 75693, - [SMALL_STATE(2441)] = 75733, - [SMALL_STATE(2442)] = 75771, - [SMALL_STATE(2443)] = 75809, - [SMALL_STATE(2444)] = 75841, - [SMALL_STATE(2445)] = 75889, - [SMALL_STATE(2446)] = 75927, - [SMALL_STATE(2447)] = 75959, - [SMALL_STATE(2448)] = 75995, - [SMALL_STATE(2449)] = 76035, - [SMALL_STATE(2450)] = 76081, - [SMALL_STATE(2451)] = 76117, - [SMALL_STATE(2452)] = 76151, - [SMALL_STATE(2453)] = 76199, - [SMALL_STATE(2454)] = 76237, - [SMALL_STATE(2455)] = 76269, - [SMALL_STATE(2456)] = 76301, - [SMALL_STATE(2457)] = 76335, - [SMALL_STATE(2458)] = 76367, - [SMALL_STATE(2459)] = 76399, - [SMALL_STATE(2460)] = 76435, - [SMALL_STATE(2461)] = 76469, - [SMALL_STATE(2462)] = 76501, - [SMALL_STATE(2463)] = 76533, - [SMALL_STATE(2464)] = 76573, - [SMALL_STATE(2465)] = 76607, - [SMALL_STATE(2466)] = 76643, - [SMALL_STATE(2467)] = 76681, - [SMALL_STATE(2468)] = 76715, - [SMALL_STATE(2469)] = 76753, - [SMALL_STATE(2470)] = 76789, - [SMALL_STATE(2471)] = 76827, - [SMALL_STATE(2472)] = 76865, - [SMALL_STATE(2473)] = 76899, - [SMALL_STATE(2474)] = 76947, - [SMALL_STATE(2475)] = 76983, - [SMALL_STATE(2476)] = 77028, - [SMALL_STATE(2477)] = 77059, - [SMALL_STATE(2478)] = 77090, - [SMALL_STATE(2479)] = 77123, - [SMALL_STATE(2480)] = 77154, - [SMALL_STATE(2481)] = 77195, - [SMALL_STATE(2482)] = 77230, - [SMALL_STATE(2483)] = 77261, - [SMALL_STATE(2484)] = 77292, - [SMALL_STATE(2485)] = 77323, - [SMALL_STATE(2486)] = 77354, - [SMALL_STATE(2487)] = 77389, - [SMALL_STATE(2488)] = 77424, - [SMALL_STATE(2489)] = 77463, - [SMALL_STATE(2490)] = 77496, - [SMALL_STATE(2491)] = 77533, - [SMALL_STATE(2492)] = 77566, - [SMALL_STATE(2493)] = 77597, - [SMALL_STATE(2494)] = 77628, - [SMALL_STATE(2495)] = 77665, - [SMALL_STATE(2496)] = 77698, - [SMALL_STATE(2497)] = 77729, - [SMALL_STATE(2498)] = 77768, - [SMALL_STATE(2499)] = 77799, - [SMALL_STATE(2500)] = 77834, - [SMALL_STATE(2501)] = 77879, - [SMALL_STATE(2502)] = 77916, - [SMALL_STATE(2503)] = 77961, - [SMALL_STATE(2504)] = 77992, - [SMALL_STATE(2505)] = 78037, - [SMALL_STATE(2506)] = 78068, - [SMALL_STATE(2507)] = 78113, - [SMALL_STATE(2508)] = 78148, - [SMALL_STATE(2509)] = 78185, - [SMALL_STATE(2510)] = 78214, - [SMALL_STATE(2511)] = 78243, - [SMALL_STATE(2512)] = 78272, - [SMALL_STATE(2513)] = 78311, - [SMALL_STATE(2514)] = 78341, - [SMALL_STATE(2515)] = 78373, - [SMALL_STATE(2516)] = 78409, - [SMALL_STATE(2517)] = 78437, - [SMALL_STATE(2518)] = 78489, - [SMALL_STATE(2519)] = 78521, - [SMALL_STATE(2520)] = 78549, - [SMALL_STATE(2521)] = 78579, - [SMALL_STATE(2522)] = 78611, - [SMALL_STATE(2523)] = 78647, - [SMALL_STATE(2524)] = 78677, - [SMALL_STATE(2525)] = 78707, - [SMALL_STATE(2526)] = 78745, - [SMALL_STATE(2527)] = 78777, - [SMALL_STATE(2528)] = 78807, - [SMALL_STATE(2529)] = 78835, - [SMALL_STATE(2530)] = 78865, - [SMALL_STATE(2531)] = 78905, - [SMALL_STATE(2532)] = 78943, - [SMALL_STATE(2533)] = 78975, - [SMALL_STATE(2534)] = 79005, - [SMALL_STATE(2535)] = 79037, - [SMALL_STATE(2536)] = 79071, - [SMALL_STATE(2537)] = 79103, - [SMALL_STATE(2538)] = 79137, - [SMALL_STATE(2539)] = 79171, - [SMALL_STATE(2540)] = 79209, - [SMALL_STATE(2541)] = 79247, - [SMALL_STATE(2542)] = 79277, - [SMALL_STATE(2543)] = 79305, - [SMALL_STATE(2544)] = 79355, - [SMALL_STATE(2545)] = 79391, - [SMALL_STATE(2546)] = 79423, - [SMALL_STATE(2547)] = 79453, - [SMALL_STATE(2548)] = 79485, - [SMALL_STATE(2549)] = 79515, - [SMALL_STATE(2550)] = 79545, - [SMALL_STATE(2551)] = 79573, - [SMALL_STATE(2552)] = 79625, - [SMALL_STATE(2553)] = 79655, - [SMALL_STATE(2554)] = 79691, - [SMALL_STATE(2555)] = 79723, - [SMALL_STATE(2556)] = 79755, - [SMALL_STATE(2557)] = 79787, - [SMALL_STATE(2558)] = 79819, - [SMALL_STATE(2559)] = 79855, - [SMALL_STATE(2560)] = 79889, - [SMALL_STATE(2561)] = 79925, - [SMALL_STATE(2562)] = 79961, - [SMALL_STATE(2563)] = 79993, - [SMALL_STATE(2564)] = 80029, - [SMALL_STATE(2565)] = 80059, - [SMALL_STATE(2566)] = 80089, - [SMALL_STATE(2567)] = 80125, - [SMALL_STATE(2568)] = 80163, - [SMALL_STATE(2569)] = 80215, - [SMALL_STATE(2570)] = 80243, - [SMALL_STATE(2571)] = 80295, - [SMALL_STATE(2572)] = 80325, - [SMALL_STATE(2573)] = 80359, - [SMALL_STATE(2574)] = 80388, - [SMALL_STATE(2575)] = 80425, - [SMALL_STATE(2576)] = 80462, - [SMALL_STATE(2577)] = 80499, - [SMALL_STATE(2578)] = 80536, - [SMALL_STATE(2579)] = 80573, - [SMALL_STATE(2580)] = 80606, - [SMALL_STATE(2581)] = 80643, - [SMALL_STATE(2582)] = 80680, - [SMALL_STATE(2583)] = 80717, - [SMALL_STATE(2584)] = 80754, - [SMALL_STATE(2585)] = 80783, - [SMALL_STATE(2586)] = 80812, - [SMALL_STATE(2587)] = 80841, - [SMALL_STATE(2588)] = 80876, - [SMALL_STATE(2589)] = 80907, - [SMALL_STATE(2590)] = 80942, - [SMALL_STATE(2591)] = 80977, - [SMALL_STATE(2592)] = 81008, - [SMALL_STATE(2593)] = 81037, - [SMALL_STATE(2594)] = 81066, - [SMALL_STATE(2595)] = 81095, - [SMALL_STATE(2596)] = 81126, - [SMALL_STATE(2597)] = 81157, - [SMALL_STATE(2598)] = 81188, - [SMALL_STATE(2599)] = 81219, - [SMALL_STATE(2600)] = 81250, - [SMALL_STATE(2601)] = 81281, - [SMALL_STATE(2602)] = 81312, - [SMALL_STATE(2603)] = 81343, - [SMALL_STATE(2604)] = 81374, - [SMALL_STATE(2605)] = 81409, - [SMALL_STATE(2606)] = 81442, - [SMALL_STATE(2607)] = 81475, - [SMALL_STATE(2608)] = 81504, - [SMALL_STATE(2609)] = 81533, - [SMALL_STATE(2610)] = 81562, - [SMALL_STATE(2611)] = 81591, - [SMALL_STATE(2612)] = 81620, - [SMALL_STATE(2613)] = 81649, - [SMALL_STATE(2614)] = 81676, - [SMALL_STATE(2615)] = 81707, - [SMALL_STATE(2616)] = 81738, - [SMALL_STATE(2617)] = 81765, - [SMALL_STATE(2618)] = 81792, - [SMALL_STATE(2619)] = 81819, - [SMALL_STATE(2620)] = 81846, - [SMALL_STATE(2621)] = 81873, - [SMALL_STATE(2622)] = 81904, - [SMALL_STATE(2623)] = 81933, - [SMALL_STATE(2624)] = 81962, - [SMALL_STATE(2625)] = 81991, - [SMALL_STATE(2626)] = 82022, - [SMALL_STATE(2627)] = 82053, - [SMALL_STATE(2628)] = 82086, - [SMALL_STATE(2629)] = 82121, - [SMALL_STATE(2630)] = 82152, - [SMALL_STATE(2631)] = 82183, - [SMALL_STATE(2632)] = 82214, - [SMALL_STATE(2633)] = 82249, - [SMALL_STATE(2634)] = 82276, - [SMALL_STATE(2635)] = 82307, - [SMALL_STATE(2636)] = 82338, - [SMALL_STATE(2637)] = 82369, - [SMALL_STATE(2638)] = 82396, - [SMALL_STATE(2639)] = 82423, - [SMALL_STATE(2640)] = 82450, - [SMALL_STATE(2641)] = 82477, - [SMALL_STATE(2642)] = 82504, - [SMALL_STATE(2643)] = 82531, - [SMALL_STATE(2644)] = 82558, - [SMALL_STATE(2645)] = 82595, - [SMALL_STATE(2646)] = 82626, - [SMALL_STATE(2647)] = 82663, - [SMALL_STATE(2648)] = 82700, - [SMALL_STATE(2649)] = 82733, - [SMALL_STATE(2650)] = 82764, - [SMALL_STATE(2651)] = 82801, - [SMALL_STATE(2652)] = 82834, - [SMALL_STATE(2653)] = 82865, - [SMALL_STATE(2654)] = 82896, - [SMALL_STATE(2655)] = 82927, - [SMALL_STATE(2656)] = 82960, - [SMALL_STATE(2657)] = 83004, - [SMALL_STATE(2658)] = 83032, - [SMALL_STATE(2659)] = 83062, - [SMALL_STATE(2660)] = 83092, - [SMALL_STATE(2661)] = 83120, - [SMALL_STATE(2662)] = 83148, - [SMALL_STATE(2663)] = 83178, - [SMALL_STATE(2664)] = 83208, - [SMALL_STATE(2665)] = 83238, - [SMALL_STATE(2666)] = 83268, - [SMALL_STATE(2667)] = 83296, - [SMALL_STATE(2668)] = 83324, - [SMALL_STATE(2669)] = 83354, - [SMALL_STATE(2670)] = 83382, - [SMALL_STATE(2671)] = 83418, - [SMALL_STATE(2672)] = 83450, - [SMALL_STATE(2673)] = 83478, - [SMALL_STATE(2674)] = 83508, - [SMALL_STATE(2675)] = 83536, - [SMALL_STATE(2676)] = 83564, - [SMALL_STATE(2677)] = 83594, - [SMALL_STATE(2678)] = 83638, - [SMALL_STATE(2679)] = 83682, - [SMALL_STATE(2680)] = 83726, - [SMALL_STATE(2681)] = 83758, - [SMALL_STATE(2682)] = 83786, - [SMALL_STATE(2683)] = 83816, - [SMALL_STATE(2684)] = 83860, - [SMALL_STATE(2685)] = 83890, - [SMALL_STATE(2686)] = 83918, - [SMALL_STATE(2687)] = 83948, - [SMALL_STATE(2688)] = 83984, - [SMALL_STATE(2689)] = 84020, - [SMALL_STATE(2690)] = 84056, - [SMALL_STATE(2691)] = 84092, - [SMALL_STATE(2692)] = 84120, - [SMALL_STATE(2693)] = 84154, - [SMALL_STATE(2694)] = 84180, - [SMALL_STATE(2695)] = 84216, - [SMALL_STATE(2696)] = 84252, - [SMALL_STATE(2697)] = 84286, - [SMALL_STATE(2698)] = 84314, - [SMALL_STATE(2699)] = 84350, - [SMALL_STATE(2700)] = 84386, - [SMALL_STATE(2701)] = 84418, - [SMALL_STATE(2702)] = 84452, - [SMALL_STATE(2703)] = 84486, - [SMALL_STATE(2704)] = 84514, - [SMALL_STATE(2705)] = 84548, - [SMALL_STATE(2706)] = 84582, - [SMALL_STATE(2707)] = 84612, - [SMALL_STATE(2708)] = 84650, - [SMALL_STATE(2709)] = 84686, - [SMALL_STATE(2710)] = 84720, - [SMALL_STATE(2711)] = 84752, - [SMALL_STATE(2712)] = 84780, - [SMALL_STATE(2713)] = 84810, - [SMALL_STATE(2714)] = 84840, - [SMALL_STATE(2715)] = 84872, - [SMALL_STATE(2716)] = 84904, - [SMALL_STATE(2717)] = 84936, - [SMALL_STATE(2718)] = 84968, - [SMALL_STATE(2719)] = 85000, - [SMALL_STATE(2720)] = 85030, - [SMALL_STATE(2721)] = 85066, - [SMALL_STATE(2722)] = 85094, - [SMALL_STATE(2723)] = 85122, - [SMALL_STATE(2724)] = 85158, - [SMALL_STATE(2725)] = 85186, - [SMALL_STATE(2726)] = 85222, - [SMALL_STATE(2727)] = 85252, - [SMALL_STATE(2728)] = 85283, - [SMALL_STATE(2729)] = 85316, - [SMALL_STATE(2730)] = 85343, - [SMALL_STATE(2731)] = 85380, - [SMALL_STATE(2732)] = 85411, - [SMALL_STATE(2733)] = 85446, - [SMALL_STATE(2734)] = 85481, - [SMALL_STATE(2735)] = 85508, - [SMALL_STATE(2736)] = 85539, - [SMALL_STATE(2737)] = 85572, - [SMALL_STATE(2738)] = 85599, - [SMALL_STATE(2739)] = 85632, - [SMALL_STATE(2740)] = 85659, - [SMALL_STATE(2741)] = 85686, - [SMALL_STATE(2742)] = 85713, - [SMALL_STATE(2743)] = 85740, - [SMALL_STATE(2744)] = 85767, - [SMALL_STATE(2745)] = 85798, - [SMALL_STATE(2746)] = 85825, - [SMALL_STATE(2747)] = 85852, - [SMALL_STATE(2748)] = 85879, - [SMALL_STATE(2749)] = 85906, - [SMALL_STATE(2750)] = 85933, - [SMALL_STATE(2751)] = 85964, - [SMALL_STATE(2752)] = 85995, - [SMALL_STATE(2753)] = 86022, - [SMALL_STATE(2754)] = 86049, - [SMALL_STATE(2755)] = 86078, - [SMALL_STATE(2756)] = 86107, - [SMALL_STATE(2757)] = 86138, - [SMALL_STATE(2758)] = 86169, - [SMALL_STATE(2759)] = 86196, - [SMALL_STATE(2760)] = 86223, - [SMALL_STATE(2761)] = 86250, - [SMALL_STATE(2762)] = 86277, - [SMALL_STATE(2763)] = 86308, - [SMALL_STATE(2764)] = 86339, - [SMALL_STATE(2765)] = 86368, - [SMALL_STATE(2766)] = 86397, - [SMALL_STATE(2767)] = 86430, - [SMALL_STATE(2768)] = 86463, - [SMALL_STATE(2769)] = 86494, - [SMALL_STATE(2770)] = 86525, - [SMALL_STATE(2771)] = 86552, - [SMALL_STATE(2772)] = 86579, - [SMALL_STATE(2773)] = 86608, - [SMALL_STATE(2774)] = 86637, - [SMALL_STATE(2775)] = 86668, - [SMALL_STATE(2776)] = 86699, - [SMALL_STATE(2777)] = 86726, - [SMALL_STATE(2778)] = 86753, - [SMALL_STATE(2779)] = 86780, - [SMALL_STATE(2780)] = 86807, - [SMALL_STATE(2781)] = 86838, - [SMALL_STATE(2782)] = 86869, - [SMALL_STATE(2783)] = 86898, - [SMALL_STATE(2784)] = 86927, - [SMALL_STATE(2785)] = 86960, - [SMALL_STATE(2786)] = 86993, - [SMALL_STATE(2787)] = 87024, - [SMALL_STATE(2788)] = 87055, - [SMALL_STATE(2789)] = 87086, - [SMALL_STATE(2790)] = 87115, - [SMALL_STATE(2791)] = 87146, - [SMALL_STATE(2792)] = 87179, - [SMALL_STATE(2793)] = 87210, - [SMALL_STATE(2794)] = 87239, - [SMALL_STATE(2795)] = 87270, - [SMALL_STATE(2796)] = 87297, - [SMALL_STATE(2797)] = 87324, - [SMALL_STATE(2798)] = 87351, - [SMALL_STATE(2799)] = 87382, - [SMALL_STATE(2800)] = 87417, - [SMALL_STATE(2801)] = 87452, - [SMALL_STATE(2802)] = 87483, - [SMALL_STATE(2803)] = 87510, - [SMALL_STATE(2804)] = 87537, - [SMALL_STATE(2805)] = 87566, - [SMALL_STATE(2806)] = 87595, - [SMALL_STATE(2807)] = 87626, - [SMALL_STATE(2808)] = 87657, - [SMALL_STATE(2809)] = 87684, - [SMALL_STATE(2810)] = 87715, - [SMALL_STATE(2811)] = 87742, - [SMALL_STATE(2812)] = 87771, - [SMALL_STATE(2813)] = 87800, - [SMALL_STATE(2814)] = 87831, - [SMALL_STATE(2815)] = 87862, - [SMALL_STATE(2816)] = 87889, - [SMALL_STATE(2817)] = 87920, - [SMALL_STATE(2818)] = 87951, - [SMALL_STATE(2819)] = 87980, - [SMALL_STATE(2820)] = 88011, - [SMALL_STATE(2821)] = 88036, - [SMALL_STATE(2822)] = 88069, - [SMALL_STATE(2823)] = 88094, - [SMALL_STATE(2824)] = 88123, - [SMALL_STATE(2825)] = 88156, - [SMALL_STATE(2826)] = 88187, - [SMALL_STATE(2827)] = 88218, - [SMALL_STATE(2828)] = 88251, - [SMALL_STATE(2829)] = 88276, - [SMALL_STATE(2830)] = 88309, - [SMALL_STATE(2831)] = 88340, - [SMALL_STATE(2832)] = 88365, - [SMALL_STATE(2833)] = 88398, - [SMALL_STATE(2834)] = 88429, - [SMALL_STATE(2835)] = 88458, - [SMALL_STATE(2836)] = 88489, - [SMALL_STATE(2837)] = 88520, - [SMALL_STATE(2838)] = 88555, - [SMALL_STATE(2839)] = 88590, - [SMALL_STATE(2840)] = 88625, - [SMALL_STATE(2841)] = 88660, - [SMALL_STATE(2842)] = 88695, - [SMALL_STATE(2843)] = 88730, - [SMALL_STATE(2844)] = 88761, - [SMALL_STATE(2845)] = 88792, - [SMALL_STATE(2846)] = 88823, - [SMALL_STATE(2847)] = 88848, - [SMALL_STATE(2848)] = 88879, - [SMALL_STATE(2849)] = 88906, - [SMALL_STATE(2850)] = 88931, - [SMALL_STATE(2851)] = 88958, - [SMALL_STATE(2852)] = 88983, - [SMALL_STATE(2853)] = 89008, - [SMALL_STATE(2854)] = 89035, - [SMALL_STATE(2855)] = 89060, - [SMALL_STATE(2856)] = 89085, - [SMALL_STATE(2857)] = 89116, - [SMALL_STATE(2858)] = 89141, - [SMALL_STATE(2859)] = 89166, - [SMALL_STATE(2860)] = 89191, - [SMALL_STATE(2861)] = 89218, - [SMALL_STATE(2862)] = 89245, - [SMALL_STATE(2863)] = 89274, - [SMALL_STATE(2864)] = 89303, - [SMALL_STATE(2865)] = 89328, - [SMALL_STATE(2866)] = 89353, - [SMALL_STATE(2867)] = 89380, - [SMALL_STATE(2868)] = 89407, - [SMALL_STATE(2869)] = 89436, - [SMALL_STATE(2870)] = 89465, - [SMALL_STATE(2871)] = 89498, - [SMALL_STATE(2872)] = 89531, - [SMALL_STATE(2873)] = 89558, - [SMALL_STATE(2874)] = 89585, - [SMALL_STATE(2875)] = 89616, - [SMALL_STATE(2876)] = 89647, - [SMALL_STATE(2877)] = 89678, - [SMALL_STATE(2878)] = 89709, - [SMALL_STATE(2879)] = 89742, - [SMALL_STATE(2880)] = 89775, - [SMALL_STATE(2881)] = 89810, - [SMALL_STATE(2882)] = 89843, - [SMALL_STATE(2883)] = 89876, - [SMALL_STATE(2884)] = 89903, - [SMALL_STATE(2885)] = 89930, - [SMALL_STATE(2886)] = 89957, - [SMALL_STATE(2887)] = 89984, - [SMALL_STATE(2888)] = 90011, - [SMALL_STATE(2889)] = 90044, - [SMALL_STATE(2890)] = 90075, - [SMALL_STATE(2891)] = 90106, - [SMALL_STATE(2892)] = 90139, - [SMALL_STATE(2893)] = 90172, - [SMALL_STATE(2894)] = 90199, - [SMALL_STATE(2895)] = 90232, - [SMALL_STATE(2896)] = 90265, - [SMALL_STATE(2897)] = 90296, - [SMALL_STATE(2898)] = 90327, - [SMALL_STATE(2899)] = 90356, - [SMALL_STATE(2900)] = 90387, - [SMALL_STATE(2901)] = 90416, - [SMALL_STATE(2902)] = 90449, - [SMALL_STATE(2903)] = 90482, - [SMALL_STATE(2904)] = 90513, - [SMALL_STATE(2905)] = 90544, - [SMALL_STATE(2906)] = 90575, - [SMALL_STATE(2907)] = 90606, - [SMALL_STATE(2908)] = 90637, - [SMALL_STATE(2909)] = 90664, - [SMALL_STATE(2910)] = 90691, - [SMALL_STATE(2911)] = 90724, - [SMALL_STATE(2912)] = 90755, - [SMALL_STATE(2913)] = 90782, - [SMALL_STATE(2914)] = 90813, - [SMALL_STATE(2915)] = 90844, - [SMALL_STATE(2916)] = 90873, - [SMALL_STATE(2917)] = 90902, - [SMALL_STATE(2918)] = 90931, - [SMALL_STATE(2919)] = 90962, - [SMALL_STATE(2920)] = 90988, - [SMALL_STATE(2921)] = 91012, - [SMALL_STATE(2922)] = 91038, - [SMALL_STATE(2923)] = 91068, - [SMALL_STATE(2924)] = 91096, - [SMALL_STATE(2925)] = 91124, - [SMALL_STATE(2926)] = 91154, - [SMALL_STATE(2927)] = 91186, - [SMALL_STATE(2928)] = 91216, - [SMALL_STATE(2929)] = 91248, - [SMALL_STATE(2930)] = 91274, - [SMALL_STATE(2931)] = 91298, - [SMALL_STATE(2932)] = 91324, - [SMALL_STATE(2933)] = 91352, - [SMALL_STATE(2934)] = 91380, - [SMALL_STATE(2935)] = 91408, - [SMALL_STATE(2936)] = 91434, - [SMALL_STATE(2937)] = 91460, - [SMALL_STATE(2938)] = 91512, - [SMALL_STATE(2939)] = 91538, - [SMALL_STATE(2940)] = 91568, - [SMALL_STATE(2941)] = 91594, - [SMALL_STATE(2942)] = 91622, - [SMALL_STATE(2943)] = 91652, - [SMALL_STATE(2944)] = 91684, - [SMALL_STATE(2945)] = 91716, - [SMALL_STATE(2946)] = 91740, - [SMALL_STATE(2947)] = 91766, - [SMALL_STATE(2948)] = 91792, - [SMALL_STATE(2949)] = 91818, - [SMALL_STATE(2950)] = 91846, - [SMALL_STATE(2951)] = 91876, - [SMALL_STATE(2952)] = 91906, - [SMALL_STATE(2953)] = 91932, - [SMALL_STATE(2954)] = 91962, - [SMALL_STATE(2955)] = 91992, - [SMALL_STATE(2956)] = 92018, - [SMALL_STATE(2957)] = 92044, - [SMALL_STATE(2958)] = 92070, - [SMALL_STATE(2959)] = 92114, - [SMALL_STATE(2960)] = 92144, - [SMALL_STATE(2961)] = 92172, - [SMALL_STATE(2962)] = 92198, - [SMALL_STATE(2963)] = 92226, - [SMALL_STATE(2964)] = 92258, - [SMALL_STATE(2965)] = 92290, - [SMALL_STATE(2966)] = 92316, - [SMALL_STATE(2967)] = 92342, - [SMALL_STATE(2968)] = 92368, - [SMALL_STATE(2969)] = 92394, - [SMALL_STATE(2970)] = 92446, - [SMALL_STATE(2971)] = 92470, - [SMALL_STATE(2972)] = 92500, - [SMALL_STATE(2973)] = 92532, - [SMALL_STATE(2974)] = 92560, - [SMALL_STATE(2975)] = 92592, - [SMALL_STATE(2976)] = 92616, - [SMALL_STATE(2977)] = 92644, - [SMALL_STATE(2978)] = 92696, - [SMALL_STATE(2979)] = 92722, - [SMALL_STATE(2980)] = 92752, - [SMALL_STATE(2981)] = 92782, - [SMALL_STATE(2982)] = 92810, - [SMALL_STATE(2983)] = 92834, - [SMALL_STATE(2984)] = 92864, - [SMALL_STATE(2985)] = 92888, - [SMALL_STATE(2986)] = 92912, - [SMALL_STATE(2987)] = 92938, - [SMALL_STATE(2988)] = 92968, - [SMALL_STATE(2989)] = 93020, - [SMALL_STATE(2990)] = 93072, - [SMALL_STATE(2991)] = 93124, - [SMALL_STATE(2992)] = 93148, - [SMALL_STATE(2993)] = 93176, - [SMALL_STATE(2994)] = 93228, - [SMALL_STATE(2995)] = 93254, - [SMALL_STATE(2996)] = 93294, - [SMALL_STATE(2997)] = 93326, - [SMALL_STATE(2998)] = 93372, - [SMALL_STATE(2999)] = 93398, - [SMALL_STATE(3000)] = 93428, - [SMALL_STATE(3001)] = 93458, - [SMALL_STATE(3002)] = 93490, - [SMALL_STATE(3003)] = 93520, - [SMALL_STATE(3004)] = 93548, - [SMALL_STATE(3005)] = 93580, - [SMALL_STATE(3006)] = 93610, - [SMALL_STATE(3007)] = 93634, - [SMALL_STATE(3008)] = 93664, - [SMALL_STATE(3009)] = 93716, - [SMALL_STATE(3010)] = 93746, - [SMALL_STATE(3011)] = 93770, - [SMALL_STATE(3012)] = 93800, - [SMALL_STATE(3013)] = 93828, - [SMALL_STATE(3014)] = 93858, - [SMALL_STATE(3015)] = 93888, - [SMALL_STATE(3016)] = 93918, - [SMALL_STATE(3017)] = 93946, - [SMALL_STATE(3018)] = 93974, - [SMALL_STATE(3019)] = 94002, - [SMALL_STATE(3020)] = 94054, - [SMALL_STATE(3021)] = 94084, - [SMALL_STATE(3022)] = 94108, - [SMALL_STATE(3023)] = 94138, - [SMALL_STATE(3024)] = 94170, - [SMALL_STATE(3025)] = 94194, - [SMALL_STATE(3026)] = 94218, - [SMALL_STATE(3027)] = 94244, - [SMALL_STATE(3028)] = 94270, - [SMALL_STATE(3029)] = 94296, - [SMALL_STATE(3030)] = 94320, - [SMALL_STATE(3031)] = 94346, - [SMALL_STATE(3032)] = 94378, - [SMALL_STATE(3033)] = 94408, - [SMALL_STATE(3034)] = 94438, - [SMALL_STATE(3035)] = 94470, - [SMALL_STATE(3036)] = 94494, - [SMALL_STATE(3037)] = 94518, - [SMALL_STATE(3038)] = 94546, - [SMALL_STATE(3039)] = 94572, - [SMALL_STATE(3040)] = 94596, - [SMALL_STATE(3041)] = 94626, - [SMALL_STATE(3042)] = 94652, - [SMALL_STATE(3043)] = 94678, - [SMALL_STATE(3044)] = 94706, - [SMALL_STATE(3045)] = 94732, - [SMALL_STATE(3046)] = 94760, - [SMALL_STATE(3047)] = 94788, - [SMALL_STATE(3048)] = 94840, - [SMALL_STATE(3049)] = 94869, - [SMALL_STATE(3050)] = 94898, - [SMALL_STATE(3051)] = 94941, - [SMALL_STATE(3052)] = 94968, - [SMALL_STATE(3053)] = 94997, - [SMALL_STATE(3054)] = 95022, - [SMALL_STATE(3055)] = 95047, - [SMALL_STATE(3056)] = 95072, - [SMALL_STATE(3057)] = 95095, - [SMALL_STATE(3058)] = 95120, - [SMALL_STATE(3059)] = 95145, - [SMALL_STATE(3060)] = 95176, - [SMALL_STATE(3061)] = 95201, - [SMALL_STATE(3062)] = 95226, - [SMALL_STATE(3063)] = 95255, - [SMALL_STATE(3064)] = 95278, - [SMALL_STATE(3065)] = 95307, - [SMALL_STATE(3066)] = 95330, - [SMALL_STATE(3067)] = 95353, - [SMALL_STATE(3068)] = 95382, - [SMALL_STATE(3069)] = 95407, - [SMALL_STATE(3070)] = 95436, - [SMALL_STATE(3071)] = 95459, - [SMALL_STATE(3072)] = 95488, - [SMALL_STATE(3073)] = 95517, - [SMALL_STATE(3074)] = 95542, - [SMALL_STATE(3075)] = 95567, - [SMALL_STATE(3076)] = 95606, - [SMALL_STATE(3077)] = 95635, - [SMALL_STATE(3078)] = 95658, - [SMALL_STATE(3079)] = 95681, - [SMALL_STATE(3080)] = 95710, - [SMALL_STATE(3081)] = 95739, - [SMALL_STATE(3082)] = 95768, - [SMALL_STATE(3083)] = 95793, - [SMALL_STATE(3084)] = 95818, - [SMALL_STATE(3085)] = 95843, - [SMALL_STATE(3086)] = 95868, - [SMALL_STATE(3087)] = 95893, - [SMALL_STATE(3088)] = 95918, - [SMALL_STATE(3089)] = 95943, - [SMALL_STATE(3090)] = 95972, - [SMALL_STATE(3091)] = 96001, - [SMALL_STATE(3092)] = 96030, - [SMALL_STATE(3093)] = 96061, - [SMALL_STATE(3094)] = 96090, - [SMALL_STATE(3095)] = 96119, - [SMALL_STATE(3096)] = 96144, - [SMALL_STATE(3097)] = 96171, - [SMALL_STATE(3098)] = 96196, - [SMALL_STATE(3099)] = 96221, - [SMALL_STATE(3100)] = 96250, - [SMALL_STATE(3101)] = 96279, - [SMALL_STATE(3102)] = 96308, - [SMALL_STATE(3103)] = 96331, - [SMALL_STATE(3104)] = 96356, - [SMALL_STATE(3105)] = 96381, - [SMALL_STATE(3106)] = 96418, - [SMALL_STATE(3107)] = 96443, - [SMALL_STATE(3108)] = 96468, - [SMALL_STATE(3109)] = 96493, - [SMALL_STATE(3110)] = 96518, - [SMALL_STATE(3111)] = 96543, - [SMALL_STATE(3112)] = 96570, - [SMALL_STATE(3113)] = 96595, - [SMALL_STATE(3114)] = 96620, - [SMALL_STATE(3115)] = 96645, - [SMALL_STATE(3116)] = 96670, - [SMALL_STATE(3117)] = 96695, - [SMALL_STATE(3118)] = 96720, - [SMALL_STATE(3119)] = 96745, - [SMALL_STATE(3120)] = 96782, - [SMALL_STATE(3121)] = 96807, - [SMALL_STATE(3122)] = 96832, - [SMALL_STATE(3123)] = 96861, - [SMALL_STATE(3124)] = 96886, - [SMALL_STATE(3125)] = 96911, - [SMALL_STATE(3126)] = 96936, - [SMALL_STATE(3127)] = 96961, - [SMALL_STATE(3128)] = 96984, - [SMALL_STATE(3129)] = 97009, - [SMALL_STATE(3130)] = 97034, - [SMALL_STATE(3131)] = 97063, - [SMALL_STATE(3132)] = 97092, - [SMALL_STATE(3133)] = 97121, - [SMALL_STATE(3134)] = 97150, - [SMALL_STATE(3135)] = 97179, - [SMALL_STATE(3136)] = 97204, - [SMALL_STATE(3137)] = 97233, - [SMALL_STATE(3138)] = 97262, - [SMALL_STATE(3139)] = 97291, - [SMALL_STATE(3140)] = 97316, - [SMALL_STATE(3141)] = 97341, - [SMALL_STATE(3142)] = 97366, - [SMALL_STATE(3143)] = 97391, - [SMALL_STATE(3144)] = 97416, - [SMALL_STATE(3145)] = 97441, - [SMALL_STATE(3146)] = 97466, - [SMALL_STATE(3147)] = 97509, - [SMALL_STATE(3148)] = 97538, - [SMALL_STATE(3149)] = 97567, - [SMALL_STATE(3150)] = 97596, - [SMALL_STATE(3151)] = 97625, - [SMALL_STATE(3152)] = 97654, - [SMALL_STATE(3153)] = 97683, - [SMALL_STATE(3154)] = 97708, - [SMALL_STATE(3155)] = 97737, - [SMALL_STATE(3156)] = 97766, - [SMALL_STATE(3157)] = 97795, - [SMALL_STATE(3158)] = 97824, - [SMALL_STATE(3159)] = 97851, - [SMALL_STATE(3160)] = 97878, - [SMALL_STATE(3161)] = 97909, - [SMALL_STATE(3162)] = 97934, - [SMALL_STATE(3163)] = 97959, - [SMALL_STATE(3164)] = 97986, - [SMALL_STATE(3165)] = 98009, - [SMALL_STATE(3166)] = 98034, - [SMALL_STATE(3167)] = 98063, - [SMALL_STATE(3168)] = 98088, - [SMALL_STATE(3169)] = 98113, - [SMALL_STATE(3170)] = 98140, - [SMALL_STATE(3171)] = 98165, - [SMALL_STATE(3172)] = 98192, - [SMALL_STATE(3173)] = 98223, - [SMALL_STATE(3174)] = 98248, - [SMALL_STATE(3175)] = 98273, - [SMALL_STATE(3176)] = 98298, - [SMALL_STATE(3177)] = 98323, - [SMALL_STATE(3178)] = 98348, - [SMALL_STATE(3179)] = 98373, - [SMALL_STATE(3180)] = 98402, - [SMALL_STATE(3181)] = 98427, - [SMALL_STATE(3182)] = 98452, - [SMALL_STATE(3183)] = 98481, - [SMALL_STATE(3184)] = 98510, - [SMALL_STATE(3185)] = 98535, - [SMALL_STATE(3186)] = 98560, - [SMALL_STATE(3187)] = 98589, - [SMALL_STATE(3188)] = 98618, - [SMALL_STATE(3189)] = 98645, - [SMALL_STATE(3190)] = 98674, - [SMALL_STATE(3191)] = 98703, - [SMALL_STATE(3192)] = 98728, - [SMALL_STATE(3193)] = 98753, - [SMALL_STATE(3194)] = 98784, - [SMALL_STATE(3195)] = 98815, - [SMALL_STATE(3196)] = 98838, - [SMALL_STATE(3197)] = 98863, - [SMALL_STATE(3198)] = 98888, - [SMALL_STATE(3199)] = 98913, - [SMALL_STATE(3200)] = 98938, - [SMALL_STATE(3201)] = 98963, - [SMALL_STATE(3202)] = 98988, - [SMALL_STATE(3203)] = 99025, - [SMALL_STATE(3204)] = 99050, - [SMALL_STATE(3205)] = 99075, - [SMALL_STATE(3206)] = 99100, - [SMALL_STATE(3207)] = 99129, - [SMALL_STATE(3208)] = 99154, - [SMALL_STATE(3209)] = 99183, - [SMALL_STATE(3210)] = 99208, - [SMALL_STATE(3211)] = 99231, - [SMALL_STATE(3212)] = 99256, - [SMALL_STATE(3213)] = 99281, - [SMALL_STATE(3214)] = 99310, - [SMALL_STATE(3215)] = 99335, - [SMALL_STATE(3216)] = 99360, - [SMALL_STATE(3217)] = 99389, - [SMALL_STATE(3218)] = 99416, - [SMALL_STATE(3219)] = 99445, - [SMALL_STATE(3220)] = 99470, - [SMALL_STATE(3221)] = 99499, - [SMALL_STATE(3222)] = 99528, - [SMALL_STATE(3223)] = 99551, - [SMALL_STATE(3224)] = 99574, - [SMALL_STATE(3225)] = 99599, - [SMALL_STATE(3226)] = 99624, - [SMALL_STATE(3227)] = 99649, - [SMALL_STATE(3228)] = 99674, - [SMALL_STATE(3229)] = 99697, - [SMALL_STATE(3230)] = 99726, - [SMALL_STATE(3231)] = 99749, - [SMALL_STATE(3232)] = 99778, - [SMALL_STATE(3233)] = 99807, - [SMALL_STATE(3234)] = 99832, - [SMALL_STATE(3235)] = 99861, - [SMALL_STATE(3236)] = 99884, - [SMALL_STATE(3237)] = 99907, - [SMALL_STATE(3238)] = 99936, - [SMALL_STATE(3239)] = 99965, - [SMALL_STATE(3240)] = 99988, - [SMALL_STATE(3241)] = 100019, - [SMALL_STATE(3242)] = 100042, - [SMALL_STATE(3243)] = 100071, - [SMALL_STATE(3244)] = 100096, - [SMALL_STATE(3245)] = 100121, - [SMALL_STATE(3246)] = 100144, - [SMALL_STATE(3247)] = 100167, - [SMALL_STATE(3248)] = 100190, - [SMALL_STATE(3249)] = 100213, - [SMALL_STATE(3250)] = 100238, - [SMALL_STATE(3251)] = 100269, - [SMALL_STATE(3252)] = 100292, - [SMALL_STATE(3253)] = 100315, - [SMALL_STATE(3254)] = 100344, - [SMALL_STATE(3255)] = 100373, - [SMALL_STATE(3256)] = 100400, - [SMALL_STATE(3257)] = 100427, - [SMALL_STATE(3258)] = 100450, - [SMALL_STATE(3259)] = 100473, - [SMALL_STATE(3260)] = 100498, - [SMALL_STATE(3261)] = 100522, - [SMALL_STATE(3262)] = 100546, - [SMALL_STATE(3263)] = 100582, - [SMALL_STATE(3264)] = 100606, - [SMALL_STATE(3265)] = 100630, - [SMALL_STATE(3266)] = 100670, - [SMALL_STATE(3267)] = 100694, - [SMALL_STATE(3268)] = 100734, - [SMALL_STATE(3269)] = 100758, - [SMALL_STATE(3270)] = 100782, - [SMALL_STATE(3271)] = 100806, - [SMALL_STATE(3272)] = 100830, - [SMALL_STATE(3273)] = 100870, - [SMALL_STATE(3274)] = 100894, - [SMALL_STATE(3275)] = 100918, - [SMALL_STATE(3276)] = 100964, - [SMALL_STATE(3277)] = 101010, - [SMALL_STATE(3278)] = 101056, - [SMALL_STATE(3279)] = 101078, - [SMALL_STATE(3280)] = 101100, - [SMALL_STATE(3281)] = 101122, - [SMALL_STATE(3282)] = 101144, - [SMALL_STATE(3283)] = 101190, - [SMALL_STATE(3284)] = 101236, - [SMALL_STATE(3285)] = 101276, - [SMALL_STATE(3286)] = 101300, - [SMALL_STATE(3287)] = 101324, - [SMALL_STATE(3288)] = 101364, - [SMALL_STATE(3289)] = 101386, - [SMALL_STATE(3290)] = 101408, - [SMALL_STATE(3291)] = 101432, - [SMALL_STATE(3292)] = 101454, - [SMALL_STATE(3293)] = 101476, - [SMALL_STATE(3294)] = 101500, - [SMALL_STATE(3295)] = 101524, - [SMALL_STATE(3296)] = 101548, - [SMALL_STATE(3297)] = 101572, - [SMALL_STATE(3298)] = 101596, - [SMALL_STATE(3299)] = 101620, - [SMALL_STATE(3300)] = 101662, + [SMALL_STATE(2360)] = 72254, + [SMALL_STATE(2361)] = 72300, + [SMALL_STATE(2362)] = 72370, + [SMALL_STATE(2363)] = 72440, + [SMALL_STATE(2364)] = 72510, + [SMALL_STATE(2365)] = 72580, + [SMALL_STATE(2366)] = 72650, + [SMALL_STATE(2367)] = 72704, + [SMALL_STATE(2368)] = 72774, + [SMALL_STATE(2369)] = 72844, + [SMALL_STATE(2370)] = 72914, + [SMALL_STATE(2371)] = 72984, + [SMALL_STATE(2372)] = 73037, + [SMALL_STATE(2373)] = 73084, + [SMALL_STATE(2374)] = 73121, + [SMALL_STATE(2375)] = 73158, + [SMALL_STATE(2376)] = 73209, + [SMALL_STATE(2377)] = 73254, + [SMALL_STATE(2378)] = 73299, + [SMALL_STATE(2379)] = 73344, + [SMALL_STATE(2380)] = 73389, + [SMALL_STATE(2381)] = 73428, + [SMALL_STATE(2382)] = 73479, + [SMALL_STATE(2383)] = 73530, + [SMALL_STATE(2384)] = 73569, + [SMALL_STATE(2385)] = 73603, + [SMALL_STATE(2386)] = 73639, + [SMALL_STATE(2387)] = 73677, + [SMALL_STATE(2388)] = 73715, + [SMALL_STATE(2389)] = 73761, + [SMALL_STATE(2390)] = 73795, + [SMALL_STATE(2391)] = 73843, + [SMALL_STATE(2392)] = 73891, + [SMALL_STATE(2393)] = 73939, + [SMALL_STATE(2394)] = 73977, + [SMALL_STATE(2395)] = 74011, + [SMALL_STATE(2396)] = 74045, + [SMALL_STATE(2397)] = 74079, + [SMALL_STATE(2398)] = 74127, + [SMALL_STATE(2399)] = 74177, + [SMALL_STATE(2400)] = 74227, + [SMALL_STATE(2401)] = 74261, + [SMALL_STATE(2402)] = 74301, + [SMALL_STATE(2403)] = 74351, + [SMALL_STATE(2404)] = 74391, + [SMALL_STATE(2405)] = 74429, + [SMALL_STATE(2406)] = 74469, + [SMALL_STATE(2407)] = 74505, + [SMALL_STATE(2408)] = 74543, + [SMALL_STATE(2409)] = 74585, + [SMALL_STATE(2410)] = 74619, + [SMALL_STATE(2411)] = 74653, + [SMALL_STATE(2412)] = 74687, + [SMALL_STATE(2413)] = 74734, + [SMALL_STATE(2414)] = 74781, + [SMALL_STATE(2415)] = 74814, + [SMALL_STATE(2416)] = 74851, + [SMALL_STATE(2417)] = 74888, + [SMALL_STATE(2418)] = 74929, + [SMALL_STATE(2419)] = 74976, + [SMALL_STATE(2420)] = 75013, + [SMALL_STATE(2421)] = 75064, + [SMALL_STATE(2422)] = 75103, + [SMALL_STATE(2423)] = 75138, + [SMALL_STATE(2424)] = 75179, + [SMALL_STATE(2425)] = 75214, + [SMALL_STATE(2426)] = 75261, + [SMALL_STATE(2427)] = 75298, + [SMALL_STATE(2428)] = 75345, + [SMALL_STATE(2429)] = 75382, + [SMALL_STATE(2430)] = 75417, + [SMALL_STATE(2431)] = 75456, + [SMALL_STATE(2432)] = 75495, + [SMALL_STATE(2433)] = 75534, + [SMALL_STATE(2434)] = 75573, + [SMALL_STATE(2435)] = 75612, + [SMALL_STATE(2436)] = 75651, + [SMALL_STATE(2437)] = 75686, + [SMALL_STATE(2438)] = 75719, + [SMALL_STATE(2439)] = 75752, + [SMALL_STATE(2440)] = 75787, + [SMALL_STATE(2441)] = 75827, + [SMALL_STATE(2442)] = 75861, + [SMALL_STATE(2443)] = 75901, + [SMALL_STATE(2444)] = 75937, + [SMALL_STATE(2445)] = 75973, + [SMALL_STATE(2446)] = 76005, + [SMALL_STATE(2447)] = 76053, + [SMALL_STATE(2448)] = 76089, + [SMALL_STATE(2449)] = 76121, + [SMALL_STATE(2450)] = 76153, + [SMALL_STATE(2451)] = 76191, + [SMALL_STATE(2452)] = 76225, + [SMALL_STATE(2453)] = 76257, + [SMALL_STATE(2454)] = 76289, + [SMALL_STATE(2455)] = 76321, + [SMALL_STATE(2456)] = 76359, + [SMALL_STATE(2457)] = 76391, + [SMALL_STATE(2458)] = 76429, + [SMALL_STATE(2459)] = 76467, + [SMALL_STATE(2460)] = 76505, + [SMALL_STATE(2461)] = 76541, + [SMALL_STATE(2462)] = 76579, + [SMALL_STATE(2463)] = 76613, + [SMALL_STATE(2464)] = 76653, + [SMALL_STATE(2465)] = 76701, + [SMALL_STATE(2466)] = 76733, + [SMALL_STATE(2467)] = 76779, + [SMALL_STATE(2468)] = 76827, + [SMALL_STATE(2469)] = 76861, + [SMALL_STATE(2470)] = 76897, + [SMALL_STATE(2471)] = 76931, + [SMALL_STATE(2472)] = 76965, + [SMALL_STATE(2473)] = 76999, + [SMALL_STATE(2474)] = 77037, + [SMALL_STATE(2475)] = 77073, + [SMALL_STATE(2476)] = 77105, + [SMALL_STATE(2477)] = 77143, + [SMALL_STATE(2478)] = 77181, + [SMALL_STATE(2479)] = 77218, + [SMALL_STATE(2480)] = 77249, + [SMALL_STATE(2481)] = 77284, + [SMALL_STATE(2482)] = 77321, + [SMALL_STATE(2483)] = 77360, + [SMALL_STATE(2484)] = 77395, + [SMALL_STATE(2485)] = 77426, + [SMALL_STATE(2486)] = 77455, + [SMALL_STATE(2487)] = 77484, + [SMALL_STATE(2488)] = 77513, + [SMALL_STATE(2489)] = 77546, + [SMALL_STATE(2490)] = 77581, + [SMALL_STATE(2491)] = 77616, + [SMALL_STATE(2492)] = 77649, + [SMALL_STATE(2493)] = 77680, + [SMALL_STATE(2494)] = 77711, + [SMALL_STATE(2495)] = 77742, + [SMALL_STATE(2496)] = 77781, + [SMALL_STATE(2497)] = 77814, + [SMALL_STATE(2498)] = 77859, + [SMALL_STATE(2499)] = 77904, + [SMALL_STATE(2500)] = 77941, + [SMALL_STATE(2501)] = 77972, + [SMALL_STATE(2502)] = 78017, + [SMALL_STATE(2503)] = 78048, + [SMALL_STATE(2504)] = 78079, + [SMALL_STATE(2505)] = 78110, + [SMALL_STATE(2506)] = 78155, + [SMALL_STATE(2507)] = 78190, + [SMALL_STATE(2508)] = 78235, + [SMALL_STATE(2509)] = 78266, + [SMALL_STATE(2510)] = 78303, + [SMALL_STATE(2511)] = 78342, + [SMALL_STATE(2512)] = 78383, + [SMALL_STATE(2513)] = 78414, + [SMALL_STATE(2514)] = 78445, + [SMALL_STATE(2515)] = 78476, + [SMALL_STATE(2516)] = 78509, + [SMALL_STATE(2517)] = 78545, + [SMALL_STATE(2518)] = 78573, + [SMALL_STATE(2519)] = 78603, + [SMALL_STATE(2520)] = 78633, + [SMALL_STATE(2521)] = 78665, + [SMALL_STATE(2522)] = 78697, + [SMALL_STATE(2523)] = 78735, + [SMALL_STATE(2524)] = 78773, + [SMALL_STATE(2525)] = 78825, + [SMALL_STATE(2526)] = 78855, + [SMALL_STATE(2527)] = 78885, + [SMALL_STATE(2528)] = 78913, + [SMALL_STATE(2529)] = 78949, + [SMALL_STATE(2530)] = 78981, + [SMALL_STATE(2531)] = 79015, + [SMALL_STATE(2532)] = 79045, + [SMALL_STATE(2533)] = 79081, + [SMALL_STATE(2534)] = 79117, + [SMALL_STATE(2535)] = 79149, + [SMALL_STATE(2536)] = 79183, + [SMALL_STATE(2537)] = 79219, + [SMALL_STATE(2538)] = 79249, + [SMALL_STATE(2539)] = 79287, + [SMALL_STATE(2540)] = 79317, + [SMALL_STATE(2541)] = 79347, + [SMALL_STATE(2542)] = 79383, + [SMALL_STATE(2543)] = 79417, + [SMALL_STATE(2544)] = 79447, + [SMALL_STATE(2545)] = 79477, + [SMALL_STATE(2546)] = 79505, + [SMALL_STATE(2547)] = 79543, + [SMALL_STATE(2548)] = 79579, + [SMALL_STATE(2549)] = 79611, + [SMALL_STATE(2550)] = 79663, + [SMALL_STATE(2551)] = 79695, + [SMALL_STATE(2552)] = 79723, + [SMALL_STATE(2553)] = 79775, + [SMALL_STATE(2554)] = 79807, + [SMALL_STATE(2555)] = 79839, + [SMALL_STATE(2556)] = 79873, + [SMALL_STATE(2557)] = 79901, + [SMALL_STATE(2558)] = 79935, + [SMALL_STATE(2559)] = 79967, + [SMALL_STATE(2560)] = 79999, + [SMALL_STATE(2561)] = 80031, + [SMALL_STATE(2562)] = 80063, + [SMALL_STATE(2563)] = 80095, + [SMALL_STATE(2564)] = 80135, + [SMALL_STATE(2565)] = 80185, + [SMALL_STATE(2566)] = 80215, + [SMALL_STATE(2567)] = 80245, + [SMALL_STATE(2568)] = 80297, + [SMALL_STATE(2569)] = 80333, + [SMALL_STATE(2570)] = 80371, + [SMALL_STATE(2571)] = 80401, + [SMALL_STATE(2572)] = 80429, + [SMALL_STATE(2573)] = 80459, + [SMALL_STATE(2574)] = 80489, + [SMALL_STATE(2575)] = 80525, + [SMALL_STATE(2576)] = 80557, + [SMALL_STATE(2577)] = 80588, + [SMALL_STATE(2578)] = 80623, + [SMALL_STATE(2579)] = 80654, + [SMALL_STATE(2580)] = 80689, + [SMALL_STATE(2581)] = 80718, + [SMALL_STATE(2582)] = 80747, + [SMALL_STATE(2583)] = 80778, + [SMALL_STATE(2584)] = 80809, + [SMALL_STATE(2585)] = 80838, + [SMALL_STATE(2586)] = 80869, + [SMALL_STATE(2587)] = 80898, + [SMALL_STATE(2588)] = 80929, + [SMALL_STATE(2589)] = 80960, + [SMALL_STATE(2590)] = 80991, + [SMALL_STATE(2591)] = 81022, + [SMALL_STATE(2592)] = 81053, + [SMALL_STATE(2593)] = 81084, + [SMALL_STATE(2594)] = 81115, + [SMALL_STATE(2595)] = 81146, + [SMALL_STATE(2596)] = 81177, + [SMALL_STATE(2597)] = 81212, + [SMALL_STATE(2598)] = 81245, + [SMALL_STATE(2599)] = 81278, + [SMALL_STATE(2600)] = 81307, + [SMALL_STATE(2601)] = 81336, + [SMALL_STATE(2602)] = 81365, + [SMALL_STATE(2603)] = 81394, + [SMALL_STATE(2604)] = 81423, + [SMALL_STATE(2605)] = 81452, + [SMALL_STATE(2606)] = 81479, + [SMALL_STATE(2607)] = 81506, + [SMALL_STATE(2608)] = 81539, + [SMALL_STATE(2609)] = 81570, + [SMALL_STATE(2610)] = 81597, + [SMALL_STATE(2611)] = 81624, + [SMALL_STATE(2612)] = 81651, + [SMALL_STATE(2613)] = 81678, + [SMALL_STATE(2614)] = 81705, + [SMALL_STATE(2615)] = 81736, + [SMALL_STATE(2616)] = 81765, + [SMALL_STATE(2617)] = 81794, + [SMALL_STATE(2618)] = 81823, + [SMALL_STATE(2619)] = 81854, + [SMALL_STATE(2620)] = 81885, + [SMALL_STATE(2621)] = 81920, + [SMALL_STATE(2622)] = 81951, + [SMALL_STATE(2623)] = 81982, + [SMALL_STATE(2624)] = 82009, + [SMALL_STATE(2625)] = 82036, + [SMALL_STATE(2626)] = 82063, + [SMALL_STATE(2627)] = 82090, + [SMALL_STATE(2628)] = 82117, + [SMALL_STATE(2629)] = 82144, + [SMALL_STATE(2630)] = 82171, + [SMALL_STATE(2631)] = 82204, + [SMALL_STATE(2632)] = 82237, + [SMALL_STATE(2633)] = 82274, + [SMALL_STATE(2634)] = 82311, + [SMALL_STATE(2635)] = 82348, + [SMALL_STATE(2636)] = 82385, + [SMALL_STATE(2637)] = 82422, + [SMALL_STATE(2638)] = 82459, + [SMALL_STATE(2639)] = 82496, + [SMALL_STATE(2640)] = 82531, + [SMALL_STATE(2641)] = 82568, + [SMALL_STATE(2642)] = 82605, + [SMALL_STATE(2643)] = 82638, + [SMALL_STATE(2644)] = 82675, + [SMALL_STATE(2645)] = 82712, + [SMALL_STATE(2646)] = 82749, + [SMALL_STATE(2647)] = 82786, + [SMALL_STATE(2648)] = 82815, + [SMALL_STATE(2649)] = 82844, + [SMALL_STATE(2650)] = 82873, + [SMALL_STATE(2651)] = 82904, + [SMALL_STATE(2652)] = 82937, + [SMALL_STATE(2653)] = 82968, + [SMALL_STATE(2654)] = 83003, + [SMALL_STATE(2655)] = 83034, + [SMALL_STATE(2656)] = 83065, + [SMALL_STATE(2657)] = 83096, + [SMALL_STATE(2658)] = 83127, + [SMALL_STATE(2659)] = 83158, + [SMALL_STATE(2660)] = 83186, + [SMALL_STATE(2661)] = 83214, + [SMALL_STATE(2662)] = 83242, + [SMALL_STATE(2663)] = 83270, + [SMALL_STATE(2664)] = 83298, + [SMALL_STATE(2665)] = 83328, + [SMALL_STATE(2666)] = 83360, + [SMALL_STATE(2667)] = 83398, + [SMALL_STATE(2668)] = 83428, + [SMALL_STATE(2669)] = 83458, + [SMALL_STATE(2670)] = 83488, + [SMALL_STATE(2671)] = 83518, + [SMALL_STATE(2672)] = 83548, + [SMALL_STATE(2673)] = 83578, + [SMALL_STATE(2674)] = 83608, + [SMALL_STATE(2675)] = 83638, + [SMALL_STATE(2676)] = 83682, + [SMALL_STATE(2677)] = 83726, + [SMALL_STATE(2678)] = 83760, + [SMALL_STATE(2679)] = 83788, + [SMALL_STATE(2680)] = 83814, + [SMALL_STATE(2681)] = 83844, + [SMALL_STATE(2682)] = 83880, + [SMALL_STATE(2683)] = 83916, + [SMALL_STATE(2684)] = 83952, + [SMALL_STATE(2685)] = 83988, + [SMALL_STATE(2686)] = 84022, + [SMALL_STATE(2687)] = 84058, + [SMALL_STATE(2688)] = 84090, + [SMALL_STATE(2689)] = 84120, + [SMALL_STATE(2690)] = 84156, + [SMALL_STATE(2691)] = 84186, + [SMALL_STATE(2692)] = 84214, + [SMALL_STATE(2693)] = 84244, + [SMALL_STATE(2694)] = 84274, + [SMALL_STATE(2695)] = 84302, + [SMALL_STATE(2696)] = 84346, + [SMALL_STATE(2697)] = 84376, + [SMALL_STATE(2698)] = 84406, + [SMALL_STATE(2699)] = 84434, + [SMALL_STATE(2700)] = 84468, + [SMALL_STATE(2701)] = 84504, + [SMALL_STATE(2702)] = 84532, + [SMALL_STATE(2703)] = 84560, + [SMALL_STATE(2704)] = 84596, + [SMALL_STATE(2705)] = 84630, + [SMALL_STATE(2706)] = 84658, + [SMALL_STATE(2707)] = 84690, + [SMALL_STATE(2708)] = 84718, + [SMALL_STATE(2709)] = 84752, + [SMALL_STATE(2710)] = 84784, + [SMALL_STATE(2711)] = 84812, + [SMALL_STATE(2712)] = 84846, + [SMALL_STATE(2713)] = 84878, + [SMALL_STATE(2714)] = 84910, + [SMALL_STATE(2715)] = 84942, + [SMALL_STATE(2716)] = 84974, + [SMALL_STATE(2717)] = 85006, + [SMALL_STATE(2718)] = 85042, + [SMALL_STATE(2719)] = 85078, + [SMALL_STATE(2720)] = 85112, + [SMALL_STATE(2721)] = 85148, + [SMALL_STATE(2722)] = 85176, + [SMALL_STATE(2723)] = 85212, + [SMALL_STATE(2724)] = 85248, + [SMALL_STATE(2725)] = 85292, + [SMALL_STATE(2726)] = 85320, + [SMALL_STATE(2727)] = 85348, + [SMALL_STATE(2728)] = 85376, + [SMALL_STATE(2729)] = 85406, + [SMALL_STATE(2730)] = 85450, + [SMALL_STATE(2731)] = 85479, + [SMALL_STATE(2732)] = 85506, + [SMALL_STATE(2733)] = 85533, + [SMALL_STATE(2734)] = 85560, + [SMALL_STATE(2735)] = 85591, + [SMALL_STATE(2736)] = 85618, + [SMALL_STATE(2737)] = 85645, + [SMALL_STATE(2738)] = 85672, + [SMALL_STATE(2739)] = 85699, + [SMALL_STATE(2740)] = 85726, + [SMALL_STATE(2741)] = 85757, + [SMALL_STATE(2742)] = 85788, + [SMALL_STATE(2743)] = 85817, + [SMALL_STATE(2744)] = 85846, + [SMALL_STATE(2745)] = 85879, + [SMALL_STATE(2746)] = 85912, + [SMALL_STATE(2747)] = 85943, + [SMALL_STATE(2748)] = 85974, + [SMALL_STATE(2749)] = 86001, + [SMALL_STATE(2750)] = 86028, + [SMALL_STATE(2751)] = 86059, + [SMALL_STATE(2752)] = 86090, + [SMALL_STATE(2753)] = 86123, + [SMALL_STATE(2754)] = 86156, + [SMALL_STATE(2755)] = 86183, + [SMALL_STATE(2756)] = 86210, + [SMALL_STATE(2757)] = 86237, + [SMALL_STATE(2758)] = 86264, + [SMALL_STATE(2759)] = 86295, + [SMALL_STATE(2760)] = 86326, + [SMALL_STATE(2761)] = 86355, + [SMALL_STATE(2762)] = 86384, + [SMALL_STATE(2763)] = 86417, + [SMALL_STATE(2764)] = 86450, + [SMALL_STATE(2765)] = 86481, + [SMALL_STATE(2766)] = 86512, + [SMALL_STATE(2767)] = 86539, + [SMALL_STATE(2768)] = 86566, + [SMALL_STATE(2769)] = 86597, + [SMALL_STATE(2770)] = 86628, + [SMALL_STATE(2771)] = 86659, + [SMALL_STATE(2772)] = 86692, + [SMALL_STATE(2773)] = 86725, + [SMALL_STATE(2774)] = 86750, + [SMALL_STATE(2775)] = 86787, + [SMALL_STATE(2776)] = 86818, + [SMALL_STATE(2777)] = 86849, + [SMALL_STATE(2778)] = 86874, + [SMALL_STATE(2779)] = 86899, + [SMALL_STATE(2780)] = 86924, + [SMALL_STATE(2781)] = 86949, + [SMALL_STATE(2782)] = 86974, + [SMALL_STATE(2783)] = 87005, + [SMALL_STATE(2784)] = 87030, + [SMALL_STATE(2785)] = 87055, + [SMALL_STATE(2786)] = 87080, + [SMALL_STATE(2787)] = 87105, + [SMALL_STATE(2788)] = 87130, + [SMALL_STATE(2789)] = 87157, + [SMALL_STATE(2790)] = 87184, + [SMALL_STATE(2791)] = 87213, + [SMALL_STATE(2792)] = 87242, + [SMALL_STATE(2793)] = 87267, + [SMALL_STATE(2794)] = 87292, + [SMALL_STATE(2795)] = 87319, + [SMALL_STATE(2796)] = 87346, + [SMALL_STATE(2797)] = 87375, + [SMALL_STATE(2798)] = 87404, + [SMALL_STATE(2799)] = 87437, + [SMALL_STATE(2800)] = 87468, + [SMALL_STATE(2801)] = 87493, + [SMALL_STATE(2802)] = 87524, + [SMALL_STATE(2803)] = 87557, + [SMALL_STATE(2804)] = 87590, + [SMALL_STATE(2805)] = 87623, + [SMALL_STATE(2806)] = 87650, + [SMALL_STATE(2807)] = 87677, + [SMALL_STATE(2808)] = 87708, + [SMALL_STATE(2809)] = 87739, + [SMALL_STATE(2810)] = 87772, + [SMALL_STATE(2811)] = 87805, + [SMALL_STATE(2812)] = 87832, + [SMALL_STATE(2813)] = 87859, + [SMALL_STATE(2814)] = 87890, + [SMALL_STATE(2815)] = 87921, + [SMALL_STATE(2816)] = 87954, + [SMALL_STATE(2817)] = 87987, + [SMALL_STATE(2818)] = 88022, + [SMALL_STATE(2819)] = 88057, + [SMALL_STATE(2820)] = 88090, + [SMALL_STATE(2821)] = 88123, + [SMALL_STATE(2822)] = 88156, + [SMALL_STATE(2823)] = 88189, + [SMALL_STATE(2824)] = 88220, + [SMALL_STATE(2825)] = 88251, + [SMALL_STATE(2826)] = 88282, + [SMALL_STATE(2827)] = 88313, + [SMALL_STATE(2828)] = 88344, + [SMALL_STATE(2829)] = 88375, + [SMALL_STATE(2830)] = 88402, + [SMALL_STATE(2831)] = 88429, + [SMALL_STATE(2832)] = 88458, + [SMALL_STATE(2833)] = 88487, + [SMALL_STATE(2834)] = 88518, + [SMALL_STATE(2835)] = 88549, + [SMALL_STATE(2836)] = 88576, + [SMALL_STATE(2837)] = 88603, + [SMALL_STATE(2838)] = 88630, + [SMALL_STATE(2839)] = 88663, + [SMALL_STATE(2840)] = 88690, + [SMALL_STATE(2841)] = 88721, + [SMALL_STATE(2842)] = 88752, + [SMALL_STATE(2843)] = 88783, + [SMALL_STATE(2844)] = 88814, + [SMALL_STATE(2845)] = 88843, + [SMALL_STATE(2846)] = 88874, + [SMALL_STATE(2847)] = 88905, + [SMALL_STATE(2848)] = 88940, + [SMALL_STATE(2849)] = 88969, + [SMALL_STATE(2850)] = 89002, + [SMALL_STATE(2851)] = 89035, + [SMALL_STATE(2852)] = 89066, + [SMALL_STATE(2853)] = 89097, + [SMALL_STATE(2854)] = 89124, + [SMALL_STATE(2855)] = 89151, + [SMALL_STATE(2856)] = 89180, + [SMALL_STATE(2857)] = 89209, + [SMALL_STATE(2858)] = 89240, + [SMALL_STATE(2859)] = 89271, + [SMALL_STATE(2860)] = 89298, + [SMALL_STATE(2861)] = 89325, + [SMALL_STATE(2862)] = 89352, + [SMALL_STATE(2863)] = 89379, + [SMALL_STATE(2864)] = 89410, + [SMALL_STATE(2865)] = 89441, + [SMALL_STATE(2866)] = 89470, + [SMALL_STATE(2867)] = 89499, + [SMALL_STATE(2868)] = 89532, + [SMALL_STATE(2869)] = 89557, + [SMALL_STATE(2870)] = 89590, + [SMALL_STATE(2871)] = 89621, + [SMALL_STATE(2872)] = 89652, + [SMALL_STATE(2873)] = 89687, + [SMALL_STATE(2874)] = 89722, + [SMALL_STATE(2875)] = 89757, + [SMALL_STATE(2876)] = 89792, + [SMALL_STATE(2877)] = 89827, + [SMALL_STATE(2878)] = 89862, + [SMALL_STATE(2879)] = 89889, + [SMALL_STATE(2880)] = 89916, + [SMALL_STATE(2881)] = 89949, + [SMALL_STATE(2882)] = 89984, + [SMALL_STATE(2883)] = 90011, + [SMALL_STATE(2884)] = 90046, + [SMALL_STATE(2885)] = 90073, + [SMALL_STATE(2886)] = 90100, + [SMALL_STATE(2887)] = 90127, + [SMALL_STATE(2888)] = 90154, + [SMALL_STATE(2889)] = 90183, + [SMALL_STATE(2890)] = 90212, + [SMALL_STATE(2891)] = 90239, + [SMALL_STATE(2892)] = 90270, + [SMALL_STATE(2893)] = 90301, + [SMALL_STATE(2894)] = 90328, + [SMALL_STATE(2895)] = 90355, + [SMALL_STATE(2896)] = 90384, + [SMALL_STATE(2897)] = 90413, + [SMALL_STATE(2898)] = 90444, + [SMALL_STATE(2899)] = 90475, + [SMALL_STATE(2900)] = 90506, + [SMALL_STATE(2901)] = 90535, + [SMALL_STATE(2902)] = 90566, + [SMALL_STATE(2903)] = 90597, + [SMALL_STATE(2904)] = 90628, + [SMALL_STATE(2905)] = 90657, + [SMALL_STATE(2906)] = 90690, + [SMALL_STATE(2907)] = 90721, + [SMALL_STATE(2908)] = 90752, + [SMALL_STATE(2909)] = 90783, + [SMALL_STATE(2910)] = 90810, + [SMALL_STATE(2911)] = 90841, + [SMALL_STATE(2912)] = 90872, + [SMALL_STATE(2913)] = 90899, + [SMALL_STATE(2914)] = 90930, + [SMALL_STATE(2915)] = 90961, + [SMALL_STATE(2916)] = 90988, + [SMALL_STATE(2917)] = 91015, + [SMALL_STATE(2918)] = 91044, + [SMALL_STATE(2919)] = 91073, + [SMALL_STATE(2920)] = 91102, + [SMALL_STATE(2921)] = 91133, + [SMALL_STATE(2922)] = 91160, + [SMALL_STATE(2923)] = 91188, + [SMALL_STATE(2924)] = 91214, + [SMALL_STATE(2925)] = 91242, + [SMALL_STATE(2926)] = 91272, + [SMALL_STATE(2927)] = 91302, + [SMALL_STATE(2928)] = 91354, + [SMALL_STATE(2929)] = 91382, + [SMALL_STATE(2930)] = 91412, + [SMALL_STATE(2931)] = 91438, + [SMALL_STATE(2932)] = 91464, + [SMALL_STATE(2933)] = 91516, + [SMALL_STATE(2934)] = 91568, + [SMALL_STATE(2935)] = 91598, + [SMALL_STATE(2936)] = 91626, + [SMALL_STATE(2937)] = 91656, + [SMALL_STATE(2938)] = 91688, + [SMALL_STATE(2939)] = 91718, + [SMALL_STATE(2940)] = 91750, + [SMALL_STATE(2941)] = 91774, + [SMALL_STATE(2942)] = 91804, + [SMALL_STATE(2943)] = 91834, + [SMALL_STATE(2944)] = 91864, + [SMALL_STATE(2945)] = 91896, + [SMALL_STATE(2946)] = 91922, + [SMALL_STATE(2947)] = 91950, + [SMALL_STATE(2948)] = 91974, + [SMALL_STATE(2949)] = 92000, + [SMALL_STATE(2950)] = 92024, + [SMALL_STATE(2951)] = 92048, + [SMALL_STATE(2952)] = 92078, + [SMALL_STATE(2953)] = 92102, + [SMALL_STATE(2954)] = 92132, + [SMALL_STATE(2955)] = 92184, + [SMALL_STATE(2956)] = 92236, + [SMALL_STATE(2957)] = 92266, + [SMALL_STATE(2958)] = 92290, + [SMALL_STATE(2959)] = 92320, + [SMALL_STATE(2960)] = 92350, + [SMALL_STATE(2961)] = 92376, + [SMALL_STATE(2962)] = 92400, + [SMALL_STATE(2963)] = 92426, + [SMALL_STATE(2964)] = 92452, + [SMALL_STATE(2965)] = 92476, + [SMALL_STATE(2966)] = 92520, + [SMALL_STATE(2967)] = 92552, + [SMALL_STATE(2968)] = 92576, + [SMALL_STATE(2969)] = 92606, + [SMALL_STATE(2970)] = 92630, + [SMALL_STATE(2971)] = 92660, + [SMALL_STATE(2972)] = 92690, + [SMALL_STATE(2973)] = 92714, + [SMALL_STATE(2974)] = 92746, + [SMALL_STATE(2975)] = 92772, + [SMALL_STATE(2976)] = 92800, + [SMALL_STATE(2977)] = 92830, + [SMALL_STATE(2978)] = 92860, + [SMALL_STATE(2979)] = 92900, + [SMALL_STATE(2980)] = 92928, + [SMALL_STATE(2981)] = 92956, + [SMALL_STATE(2982)] = 92982, + [SMALL_STATE(2983)] = 93014, + [SMALL_STATE(2984)] = 93044, + [SMALL_STATE(2985)] = 93074, + [SMALL_STATE(2986)] = 93104, + [SMALL_STATE(2987)] = 93136, + [SMALL_STATE(2988)] = 93166, + [SMALL_STATE(2989)] = 93194, + [SMALL_STATE(2990)] = 93220, + [SMALL_STATE(2991)] = 93248, + [SMALL_STATE(2992)] = 93300, + [SMALL_STATE(2993)] = 93352, + [SMALL_STATE(2994)] = 93382, + [SMALL_STATE(2995)] = 93434, + [SMALL_STATE(2996)] = 93466, + [SMALL_STATE(2997)] = 93494, + [SMALL_STATE(2998)] = 93524, + [SMALL_STATE(2999)] = 93550, + [SMALL_STATE(3000)] = 93576, + [SMALL_STATE(3001)] = 93600, + [SMALL_STATE(3002)] = 93624, + [SMALL_STATE(3003)] = 93650, + [SMALL_STATE(3004)] = 93676, + [SMALL_STATE(3005)] = 93706, + [SMALL_STATE(3006)] = 93732, + [SMALL_STATE(3007)] = 93758, + [SMALL_STATE(3008)] = 93810, + [SMALL_STATE(3009)] = 93838, + [SMALL_STATE(3010)] = 93864, + [SMALL_STATE(3011)] = 93888, + [SMALL_STATE(3012)] = 93914, + [SMALL_STATE(3013)] = 93940, + [SMALL_STATE(3014)] = 93966, + [SMALL_STATE(3015)] = 93992, + [SMALL_STATE(3016)] = 94018, + [SMALL_STATE(3017)] = 94050, + [SMALL_STATE(3018)] = 94080, + [SMALL_STATE(3019)] = 94110, + [SMALL_STATE(3020)] = 94136, + [SMALL_STATE(3021)] = 94162, + [SMALL_STATE(3022)] = 94190, + [SMALL_STATE(3023)] = 94216, + [SMALL_STATE(3024)] = 94268, + [SMALL_STATE(3025)] = 94294, + [SMALL_STATE(3026)] = 94320, + [SMALL_STATE(3027)] = 94344, + [SMALL_STATE(3028)] = 94372, + [SMALL_STATE(3029)] = 94402, + [SMALL_STATE(3030)] = 94434, + [SMALL_STATE(3031)] = 94464, + [SMALL_STATE(3032)] = 94492, + [SMALL_STATE(3033)] = 94520, + [SMALL_STATE(3034)] = 94548, + [SMALL_STATE(3035)] = 94576, + [SMALL_STATE(3036)] = 94608, + [SMALL_STATE(3037)] = 94634, + [SMALL_STATE(3038)] = 94662, + [SMALL_STATE(3039)] = 94690, + [SMALL_STATE(3040)] = 94722, + [SMALL_STATE(3041)] = 94748, + [SMALL_STATE(3042)] = 94772, + [SMALL_STATE(3043)] = 94818, + [SMALL_STATE(3044)] = 94846, + [SMALL_STATE(3045)] = 94878, + [SMALL_STATE(3046)] = 94906, + [SMALL_STATE(3047)] = 94932, + [SMALL_STATE(3048)] = 94956, + [SMALL_STATE(3049)] = 94980, + [SMALL_STATE(3050)] = 95012, + [SMALL_STATE(3051)] = 95038, + [SMALL_STATE(3052)] = 95067, + [SMALL_STATE(3053)] = 95096, + [SMALL_STATE(3054)] = 95125, + [SMALL_STATE(3055)] = 95154, + [SMALL_STATE(3056)] = 95183, + [SMALL_STATE(3057)] = 95210, + [SMALL_STATE(3058)] = 95237, + [SMALL_STATE(3059)] = 95262, + [SMALL_STATE(3060)] = 95287, + [SMALL_STATE(3061)] = 95312, + [SMALL_STATE(3062)] = 95335, + [SMALL_STATE(3063)] = 95364, + [SMALL_STATE(3064)] = 95393, + [SMALL_STATE(3065)] = 95416, + [SMALL_STATE(3066)] = 95447, + [SMALL_STATE(3067)] = 95476, + [SMALL_STATE(3068)] = 95505, + [SMALL_STATE(3069)] = 95530, + [SMALL_STATE(3070)] = 95553, + [SMALL_STATE(3071)] = 95582, + [SMALL_STATE(3072)] = 95611, + [SMALL_STATE(3073)] = 95634, + [SMALL_STATE(3074)] = 95663, + [SMALL_STATE(3075)] = 95692, + [SMALL_STATE(3076)] = 95721, + [SMALL_STATE(3077)] = 95764, + [SMALL_STATE(3078)] = 95793, + [SMALL_STATE(3079)] = 95816, + [SMALL_STATE(3080)] = 95841, + [SMALL_STATE(3081)] = 95866, + [SMALL_STATE(3082)] = 95889, + [SMALL_STATE(3083)] = 95914, + [SMALL_STATE(3084)] = 95945, + [SMALL_STATE(3085)] = 95968, + [SMALL_STATE(3086)] = 95991, + [SMALL_STATE(3087)] = 96014, + [SMALL_STATE(3088)] = 96039, + [SMALL_STATE(3089)] = 96076, + [SMALL_STATE(3090)] = 96107, + [SMALL_STATE(3091)] = 96136, + [SMALL_STATE(3092)] = 96165, + [SMALL_STATE(3093)] = 96190, + [SMALL_STATE(3094)] = 96215, + [SMALL_STATE(3095)] = 96246, + [SMALL_STATE(3096)] = 96271, + [SMALL_STATE(3097)] = 96296, + [SMALL_STATE(3098)] = 96327, + [SMALL_STATE(3099)] = 96356, + [SMALL_STATE(3100)] = 96385, + [SMALL_STATE(3101)] = 96410, + [SMALL_STATE(3102)] = 96439, + [SMALL_STATE(3103)] = 96464, + [SMALL_STATE(3104)] = 96493, + [SMALL_STATE(3105)] = 96522, + [SMALL_STATE(3106)] = 96549, + [SMALL_STATE(3107)] = 96580, + [SMALL_STATE(3108)] = 96603, + [SMALL_STATE(3109)] = 96632, + [SMALL_STATE(3110)] = 96657, + [SMALL_STATE(3111)] = 96682, + [SMALL_STATE(3112)] = 96707, + [SMALL_STATE(3113)] = 96730, + [SMALL_STATE(3114)] = 96755, + [SMALL_STATE(3115)] = 96784, + [SMALL_STATE(3116)] = 96807, + [SMALL_STATE(3117)] = 96832, + [SMALL_STATE(3118)] = 96861, + [SMALL_STATE(3119)] = 96884, + [SMALL_STATE(3120)] = 96907, + [SMALL_STATE(3121)] = 96930, + [SMALL_STATE(3122)] = 96959, + [SMALL_STATE(3123)] = 96984, + [SMALL_STATE(3124)] = 97009, + [SMALL_STATE(3125)] = 97034, + [SMALL_STATE(3126)] = 97063, + [SMALL_STATE(3127)] = 97086, + [SMALL_STATE(3128)] = 97109, + [SMALL_STATE(3129)] = 97132, + [SMALL_STATE(3130)] = 97161, + [SMALL_STATE(3131)] = 97186, + [SMALL_STATE(3132)] = 97211, + [SMALL_STATE(3133)] = 97236, + [SMALL_STATE(3134)] = 97261, + [SMALL_STATE(3135)] = 97286, + [SMALL_STATE(3136)] = 97311, + [SMALL_STATE(3137)] = 97336, + [SMALL_STATE(3138)] = 97361, + [SMALL_STATE(3139)] = 97386, + [SMALL_STATE(3140)] = 97411, + [SMALL_STATE(3141)] = 97442, + [SMALL_STATE(3142)] = 97469, + [SMALL_STATE(3143)] = 97498, + [SMALL_STATE(3144)] = 97527, + [SMALL_STATE(3145)] = 97552, + [SMALL_STATE(3146)] = 97577, + [SMALL_STATE(3147)] = 97606, + [SMALL_STATE(3148)] = 97633, + [SMALL_STATE(3149)] = 97662, + [SMALL_STATE(3150)] = 97699, + [SMALL_STATE(3151)] = 97728, + [SMALL_STATE(3152)] = 97757, + [SMALL_STATE(3153)] = 97786, + [SMALL_STATE(3154)] = 97811, + [SMALL_STATE(3155)] = 97836, + [SMALL_STATE(3156)] = 97861, + [SMALL_STATE(3157)] = 97884, + [SMALL_STATE(3158)] = 97913, + [SMALL_STATE(3159)] = 97938, + [SMALL_STATE(3160)] = 97967, + [SMALL_STATE(3161)] = 97996, + [SMALL_STATE(3162)] = 98021, + [SMALL_STATE(3163)] = 98046, + [SMALL_STATE(3164)] = 98071, + [SMALL_STATE(3165)] = 98096, + [SMALL_STATE(3166)] = 98121, + [SMALL_STATE(3167)] = 98146, + [SMALL_STATE(3168)] = 98171, + [SMALL_STATE(3169)] = 98196, + [SMALL_STATE(3170)] = 98219, + [SMALL_STATE(3171)] = 98244, + [SMALL_STATE(3172)] = 98281, + [SMALL_STATE(3173)] = 98306, + [SMALL_STATE(3174)] = 98331, + [SMALL_STATE(3175)] = 98356, + [SMALL_STATE(3176)] = 98385, + [SMALL_STATE(3177)] = 98410, + [SMALL_STATE(3178)] = 98435, + [SMALL_STATE(3179)] = 98458, + [SMALL_STATE(3180)] = 98483, + [SMALL_STATE(3181)] = 98508, + [SMALL_STATE(3182)] = 98537, + [SMALL_STATE(3183)] = 98560, + [SMALL_STATE(3184)] = 98585, + [SMALL_STATE(3185)] = 98612, + [SMALL_STATE(3186)] = 98637, + [SMALL_STATE(3187)] = 98662, + [SMALL_STATE(3188)] = 98687, + [SMALL_STATE(3189)] = 98712, + [SMALL_STATE(3190)] = 98743, + [SMALL_STATE(3191)] = 98786, + [SMALL_STATE(3192)] = 98811, + [SMALL_STATE(3193)] = 98836, + [SMALL_STATE(3194)] = 98861, + [SMALL_STATE(3195)] = 98888, + [SMALL_STATE(3196)] = 98913, + [SMALL_STATE(3197)] = 98938, + [SMALL_STATE(3198)] = 98977, + [SMALL_STATE(3199)] = 99006, + [SMALL_STATE(3200)] = 99031, + [SMALL_STATE(3201)] = 99060, + [SMALL_STATE(3202)] = 99089, + [SMALL_STATE(3203)] = 99114, + [SMALL_STATE(3204)] = 99139, + [SMALL_STATE(3205)] = 99164, + [SMALL_STATE(3206)] = 99189, + [SMALL_STATE(3207)] = 99214, + [SMALL_STATE(3208)] = 99239, + [SMALL_STATE(3209)] = 99264, + [SMALL_STATE(3210)] = 99289, + [SMALL_STATE(3211)] = 99314, + [SMALL_STATE(3212)] = 99339, + [SMALL_STATE(3213)] = 99368, + [SMALL_STATE(3214)] = 99397, + [SMALL_STATE(3215)] = 99424, + [SMALL_STATE(3216)] = 99449, + [SMALL_STATE(3217)] = 99478, + [SMALL_STATE(3218)] = 99507, + [SMALL_STATE(3219)] = 99534, + [SMALL_STATE(3220)] = 99563, + [SMALL_STATE(3221)] = 99592, + [SMALL_STATE(3222)] = 99619, + [SMALL_STATE(3223)] = 99644, + [SMALL_STATE(3224)] = 99669, + [SMALL_STATE(3225)] = 99698, + [SMALL_STATE(3226)] = 99727, + [SMALL_STATE(3227)] = 99752, + [SMALL_STATE(3228)] = 99781, + [SMALL_STATE(3229)] = 99810, + [SMALL_STATE(3230)] = 99839, + [SMALL_STATE(3231)] = 99864, + [SMALL_STATE(3232)] = 99889, + [SMALL_STATE(3233)] = 99912, + [SMALL_STATE(3234)] = 99941, + [SMALL_STATE(3235)] = 99970, + [SMALL_STATE(3236)] = 99997, + [SMALL_STATE(3237)] = 100020, + [SMALL_STATE(3238)] = 100043, + [SMALL_STATE(3239)] = 100072, + [SMALL_STATE(3240)] = 100097, + [SMALL_STATE(3241)] = 100122, + [SMALL_STATE(3242)] = 100151, + [SMALL_STATE(3243)] = 100176, + [SMALL_STATE(3244)] = 100201, + [SMALL_STATE(3245)] = 100224, + [SMALL_STATE(3246)] = 100253, + [SMALL_STATE(3247)] = 100282, + [SMALL_STATE(3248)] = 100307, + [SMALL_STATE(3249)] = 100330, + [SMALL_STATE(3250)] = 100359, + [SMALL_STATE(3251)] = 100384, + [SMALL_STATE(3252)] = 100409, + [SMALL_STATE(3253)] = 100434, + [SMALL_STATE(3254)] = 100459, + [SMALL_STATE(3255)] = 100484, + [SMALL_STATE(3256)] = 100513, + [SMALL_STATE(3257)] = 100540, + [SMALL_STATE(3258)] = 100563, + [SMALL_STATE(3259)] = 100592, + [SMALL_STATE(3260)] = 100617, + [SMALL_STATE(3261)] = 100642, + [SMALL_STATE(3262)] = 100671, + [SMALL_STATE(3263)] = 100696, + [SMALL_STATE(3264)] = 100720, + [SMALL_STATE(3265)] = 100744, + [SMALL_STATE(3266)] = 100768, + [SMALL_STATE(3267)] = 100792, + [SMALL_STATE(3268)] = 100814, + [SMALL_STATE(3269)] = 100838, + [SMALL_STATE(3270)] = 100860, + [SMALL_STATE(3271)] = 100884, + [SMALL_STATE(3272)] = 100908, + [SMALL_STATE(3273)] = 100954, + [SMALL_STATE(3274)] = 100978, + [SMALL_STATE(3275)] = 101002, + [SMALL_STATE(3276)] = 101026, + [SMALL_STATE(3277)] = 101072, + [SMALL_STATE(3278)] = 101096, + [SMALL_STATE(3279)] = 101120, + [SMALL_STATE(3280)] = 101144, + [SMALL_STATE(3281)] = 101166, + [SMALL_STATE(3282)] = 101190, + [SMALL_STATE(3283)] = 101214, + [SMALL_STATE(3284)] = 101238, + [SMALL_STATE(3285)] = 101262, + [SMALL_STATE(3286)] = 101286, + [SMALL_STATE(3287)] = 101310, + [SMALL_STATE(3288)] = 101334, + [SMALL_STATE(3289)] = 101358, + [SMALL_STATE(3290)] = 101398, + [SMALL_STATE(3291)] = 101420, + [SMALL_STATE(3292)] = 101442, + [SMALL_STATE(3293)] = 101482, + [SMALL_STATE(3294)] = 101506, + [SMALL_STATE(3295)] = 101530, + [SMALL_STATE(3296)] = 101554, + [SMALL_STATE(3297)] = 101578, + [SMALL_STATE(3298)] = 101602, + [SMALL_STATE(3299)] = 101626, + [SMALL_STATE(3300)] = 101650, [SMALL_STATE(3301)] = 101686, - [SMALL_STATE(3302)] = 101710, + [SMALL_STATE(3302)] = 101708, [SMALL_STATE(3303)] = 101732, [SMALL_STATE(3304)] = 101754, - [SMALL_STATE(3305)] = 101778, + [SMALL_STATE(3305)] = 101776, [SMALL_STATE(3306)] = 101800, - [SMALL_STATE(3307)] = 101840, - [SMALL_STATE(3308)] = 101864, - [SMALL_STATE(3309)] = 101886, - [SMALL_STATE(3310)] = 101908, - [SMALL_STATE(3311)] = 101932, - [SMALL_STATE(3312)] = 101978, - [SMALL_STATE(3313)] = 102024, - [SMALL_STATE(3314)] = 102048, - [SMALL_STATE(3315)] = 102072, - [SMALL_STATE(3316)] = 102118, - [SMALL_STATE(3317)] = 102152, - [SMALL_STATE(3318)] = 102178, - [SMALL_STATE(3319)] = 102212, - [SMALL_STATE(3320)] = 102246, - [SMALL_STATE(3321)] = 102280, - [SMALL_STATE(3322)] = 102304, - [SMALL_STATE(3323)] = 102328, - [SMALL_STATE(3324)] = 102350, - [SMALL_STATE(3325)] = 102372, - [SMALL_STATE(3326)] = 102394, - [SMALL_STATE(3327)] = 102440, - [SMALL_STATE(3328)] = 102462, - [SMALL_STATE(3329)] = 102486, - [SMALL_STATE(3330)] = 102510, - [SMALL_STATE(3331)] = 102534, - [SMALL_STATE(3332)] = 102556, - [SMALL_STATE(3333)] = 102578, - [SMALL_STATE(3334)] = 102600, - [SMALL_STATE(3335)] = 102624, - [SMALL_STATE(3336)] = 102648, - [SMALL_STATE(3337)] = 102672, - [SMALL_STATE(3338)] = 102696, - [SMALL_STATE(3339)] = 102722, - [SMALL_STATE(3340)] = 102746, - [SMALL_STATE(3341)] = 102768, - [SMALL_STATE(3342)] = 102792, - [SMALL_STATE(3343)] = 102816, - [SMALL_STATE(3344)] = 102840, - [SMALL_STATE(3345)] = 102864, - [SMALL_STATE(3346)] = 102888, - [SMALL_STATE(3347)] = 102912, - [SMALL_STATE(3348)] = 102936, - [SMALL_STATE(3349)] = 102960, - [SMALL_STATE(3350)] = 102984, - [SMALL_STATE(3351)] = 103008, - [SMALL_STATE(3352)] = 103032, - [SMALL_STATE(3353)] = 103078, - [SMALL_STATE(3354)] = 103100, - [SMALL_STATE(3355)] = 103124, - [SMALL_STATE(3356)] = 103146, - [SMALL_STATE(3357)] = 103170, - [SMALL_STATE(3358)] = 103192, - [SMALL_STATE(3359)] = 103214, - [SMALL_STATE(3360)] = 103236, - [SMALL_STATE(3361)] = 103258, - [SMALL_STATE(3362)] = 103282, - [SMALL_STATE(3363)] = 103306, - [SMALL_STATE(3364)] = 103330, - [SMALL_STATE(3365)] = 103354, - [SMALL_STATE(3366)] = 103378, - [SMALL_STATE(3367)] = 103402, - [SMALL_STATE(3368)] = 103426, - [SMALL_STATE(3369)] = 103450, - [SMALL_STATE(3370)] = 103474, - [SMALL_STATE(3371)] = 103496, - [SMALL_STATE(3372)] = 103520, - [SMALL_STATE(3373)] = 103544, - [SMALL_STATE(3374)] = 103566, - [SMALL_STATE(3375)] = 103590, - [SMALL_STATE(3376)] = 103626, - [SMALL_STATE(3377)] = 103650, - [SMALL_STATE(3378)] = 103674, - [SMALL_STATE(3379)] = 103698, - [SMALL_STATE(3380)] = 103720, - [SMALL_STATE(3381)] = 103744, - [SMALL_STATE(3382)] = 103768, - [SMALL_STATE(3383)] = 103792, - [SMALL_STATE(3384)] = 103814, - [SMALL_STATE(3385)] = 103838, - [SMALL_STATE(3386)] = 103862, - [SMALL_STATE(3387)] = 103904, - [SMALL_STATE(3388)] = 103928, - [SMALL_STATE(3389)] = 103952, - [SMALL_STATE(3390)] = 103976, - [SMALL_STATE(3391)] = 104000, - [SMALL_STATE(3392)] = 104028, - [SMALL_STATE(3393)] = 104056, - [SMALL_STATE(3394)] = 104084, - [SMALL_STATE(3395)] = 104112, - [SMALL_STATE(3396)] = 104140, - [SMALL_STATE(3397)] = 104168, - [SMALL_STATE(3398)] = 104196, - [SMALL_STATE(3399)] = 104224, - [SMALL_STATE(3400)] = 104252, - [SMALL_STATE(3401)] = 104280, - [SMALL_STATE(3402)] = 104308, - [SMALL_STATE(3403)] = 104336, - [SMALL_STATE(3404)] = 104360, - [SMALL_STATE(3405)] = 104384, - [SMALL_STATE(3406)] = 104408, - [SMALL_STATE(3407)] = 104432, - [SMALL_STATE(3408)] = 104456, - [SMALL_STATE(3409)] = 104480, - [SMALL_STATE(3410)] = 104504, - [SMALL_STATE(3411)] = 104528, - [SMALL_STATE(3412)] = 104552, - [SMALL_STATE(3413)] = 104576, - [SMALL_STATE(3414)] = 104616, - [SMALL_STATE(3415)] = 104640, - [SMALL_STATE(3416)] = 104664, - [SMALL_STATE(3417)] = 104685, - [SMALL_STATE(3418)] = 104706, - [SMALL_STATE(3419)] = 104727, - [SMALL_STATE(3420)] = 104750, - [SMALL_STATE(3421)] = 104771, - [SMALL_STATE(3422)] = 104798, - [SMALL_STATE(3423)] = 104821, - [SMALL_STATE(3424)] = 104844, - [SMALL_STATE(3425)] = 104867, - [SMALL_STATE(3426)] = 104888, - [SMALL_STATE(3427)] = 104911, - [SMALL_STATE(3428)] = 104934, - [SMALL_STATE(3429)] = 104973, - [SMALL_STATE(3430)] = 104994, - [SMALL_STATE(3431)] = 105015, - [SMALL_STATE(3432)] = 105038, - [SMALL_STATE(3433)] = 105061, - [SMALL_STATE(3434)] = 105082, - [SMALL_STATE(3435)] = 105105, - [SMALL_STATE(3436)] = 105128, - [SMALL_STATE(3437)] = 105149, - [SMALL_STATE(3438)] = 105172, - [SMALL_STATE(3439)] = 105195, - [SMALL_STATE(3440)] = 105216, - [SMALL_STATE(3441)] = 105239, - [SMALL_STATE(3442)] = 105266, - [SMALL_STATE(3443)] = 105297, - [SMALL_STATE(3444)] = 105318, - [SMALL_STATE(3445)] = 105355, - [SMALL_STATE(3446)] = 105376, - [SMALL_STATE(3447)] = 105405, - [SMALL_STATE(3448)] = 105428, - [SMALL_STATE(3449)] = 105449, - [SMALL_STATE(3450)] = 105476, - [SMALL_STATE(3451)] = 105497, - [SMALL_STATE(3452)] = 105518, - [SMALL_STATE(3453)] = 105541, - [SMALL_STATE(3454)] = 105562, - [SMALL_STATE(3455)] = 105583, - [SMALL_STATE(3456)] = 105604, - [SMALL_STATE(3457)] = 105643, - [SMALL_STATE(3458)] = 105664, - [SMALL_STATE(3459)] = 105701, - [SMALL_STATE(3460)] = 105728, - [SMALL_STATE(3461)] = 105749, - [SMALL_STATE(3462)] = 105770, - [SMALL_STATE(3463)] = 105791, - [SMALL_STATE(3464)] = 105812, - [SMALL_STATE(3465)] = 105833, - [SMALL_STATE(3466)] = 105854, - [SMALL_STATE(3467)] = 105891, - [SMALL_STATE(3468)] = 105912, - [SMALL_STATE(3469)] = 105933, - [SMALL_STATE(3470)] = 105956, - [SMALL_STATE(3471)] = 105977, - [SMALL_STATE(3472)] = 106000, - [SMALL_STATE(3473)] = 106021, - [SMALL_STATE(3474)] = 106042, - [SMALL_STATE(3475)] = 106063, - [SMALL_STATE(3476)] = 106090, - [SMALL_STATE(3477)] = 106127, - [SMALL_STATE(3478)] = 106164, - [SMALL_STATE(3479)] = 106201, - [SMALL_STATE(3480)] = 106238, - [SMALL_STATE(3481)] = 106259, - [SMALL_STATE(3482)] = 106280, - [SMALL_STATE(3483)] = 106317, - [SMALL_STATE(3484)] = 106354, - [SMALL_STATE(3485)] = 106391, - [SMALL_STATE(3486)] = 106412, - [SMALL_STATE(3487)] = 106451, - [SMALL_STATE(3488)] = 106474, - [SMALL_STATE(3489)] = 106497, - [SMALL_STATE(3490)] = 106520, - [SMALL_STATE(3491)] = 106541, - [SMALL_STATE(3492)] = 106564, - [SMALL_STATE(3493)] = 106585, - [SMALL_STATE(3494)] = 106608, - [SMALL_STATE(3495)] = 106629, - [SMALL_STATE(3496)] = 106652, - [SMALL_STATE(3497)] = 106673, - [SMALL_STATE(3498)] = 106694, - [SMALL_STATE(3499)] = 106715, - [SMALL_STATE(3500)] = 106736, - [SMALL_STATE(3501)] = 106773, - [SMALL_STATE(3502)] = 106810, - [SMALL_STATE(3503)] = 106831, - [SMALL_STATE(3504)] = 106854, - [SMALL_STATE(3505)] = 106877, - [SMALL_STATE(3506)] = 106914, - [SMALL_STATE(3507)] = 106937, - [SMALL_STATE(3508)] = 106960, - [SMALL_STATE(3509)] = 106981, - [SMALL_STATE(3510)] = 107002, - [SMALL_STATE(3511)] = 107029, - [SMALL_STATE(3512)] = 107050, - [SMALL_STATE(3513)] = 107073, - [SMALL_STATE(3514)] = 107096, - [SMALL_STATE(3515)] = 107117, - [SMALL_STATE(3516)] = 107138, - [SMALL_STATE(3517)] = 107159, - [SMALL_STATE(3518)] = 107180, - [SMALL_STATE(3519)] = 107201, - [SMALL_STATE(3520)] = 107222, - [SMALL_STATE(3521)] = 107243, - [SMALL_STATE(3522)] = 107264, - [SMALL_STATE(3523)] = 107285, - [SMALL_STATE(3524)] = 107324, - [SMALL_STATE(3525)] = 107345, - [SMALL_STATE(3526)] = 107366, - [SMALL_STATE(3527)] = 107389, - [SMALL_STATE(3528)] = 107416, - [SMALL_STATE(3529)] = 107439, - [SMALL_STATE(3530)] = 107460, - [SMALL_STATE(3531)] = 107481, - [SMALL_STATE(3532)] = 107504, - [SMALL_STATE(3533)] = 107527, - [SMALL_STATE(3534)] = 107548, - [SMALL_STATE(3535)] = 107569, - [SMALL_STATE(3536)] = 107592, - [SMALL_STATE(3537)] = 107615, - [SMALL_STATE(3538)] = 107636, - [SMALL_STATE(3539)] = 107657, - [SMALL_STATE(3540)] = 107678, - [SMALL_STATE(3541)] = 107699, - [SMALL_STATE(3542)] = 107720, - [SMALL_STATE(3543)] = 107743, - [SMALL_STATE(3544)] = 107766, - [SMALL_STATE(3545)] = 107787, - [SMALL_STATE(3546)] = 107810, - [SMALL_STATE(3547)] = 107831, - [SMALL_STATE(3548)] = 107858, - [SMALL_STATE(3549)] = 107881, - [SMALL_STATE(3550)] = 107908, - [SMALL_STATE(3551)] = 107935, - [SMALL_STATE(3552)] = 107962, - [SMALL_STATE(3553)] = 107989, - [SMALL_STATE(3554)] = 108016, - [SMALL_STATE(3555)] = 108043, - [SMALL_STATE(3556)] = 108070, - [SMALL_STATE(3557)] = 108097, - [SMALL_STATE(3558)] = 108124, - [SMALL_STATE(3559)] = 108151, - [SMALL_STATE(3560)] = 108178, - [SMALL_STATE(3561)] = 108205, - [SMALL_STATE(3562)] = 108244, - [SMALL_STATE(3563)] = 108271, - [SMALL_STATE(3564)] = 108292, - [SMALL_STATE(3565)] = 108313, - [SMALL_STATE(3566)] = 108340, - [SMALL_STATE(3567)] = 108361, - [SMALL_STATE(3568)] = 108384, - [SMALL_STATE(3569)] = 108405, - [SMALL_STATE(3570)] = 108426, - [SMALL_STATE(3571)] = 108447, - [SMALL_STATE(3572)] = 108468, - [SMALL_STATE(3573)] = 108489, - [SMALL_STATE(3574)] = 108528, - [SMALL_STATE(3575)] = 108549, - [SMALL_STATE(3576)] = 108570, - [SMALL_STATE(3577)] = 108591, - [SMALL_STATE(3578)] = 108616, - [SMALL_STATE(3579)] = 108655, - [SMALL_STATE(3580)] = 108676, - [SMALL_STATE(3581)] = 108699, - [SMALL_STATE(3582)] = 108720, - [SMALL_STATE(3583)] = 108741, - [SMALL_STATE(3584)] = 108762, - [SMALL_STATE(3585)] = 108783, - [SMALL_STATE(3586)] = 108804, - [SMALL_STATE(3587)] = 108825, - [SMALL_STATE(3588)] = 108846, - [SMALL_STATE(3589)] = 108867, - [SMALL_STATE(3590)] = 108888, - [SMALL_STATE(3591)] = 108909, - [SMALL_STATE(3592)] = 108932, - [SMALL_STATE(3593)] = 108953, - [SMALL_STATE(3594)] = 108974, - [SMALL_STATE(3595)] = 108995, - [SMALL_STATE(3596)] = 109018, - [SMALL_STATE(3597)] = 109039, - [SMALL_STATE(3598)] = 109066, - [SMALL_STATE(3599)] = 109087, - [SMALL_STATE(3600)] = 109108, - [SMALL_STATE(3601)] = 109129, - [SMALL_STATE(3602)] = 109150, - [SMALL_STATE(3603)] = 109171, - [SMALL_STATE(3604)] = 109192, - [SMALL_STATE(3605)] = 109213, - [SMALL_STATE(3606)] = 109234, - [SMALL_STATE(3607)] = 109255, - [SMALL_STATE(3608)] = 109279, - [SMALL_STATE(3609)] = 109309, - [SMALL_STATE(3610)] = 109335, - [SMALL_STATE(3611)] = 109369, - [SMALL_STATE(3612)] = 109393, - [SMALL_STATE(3613)] = 109415, - [SMALL_STATE(3614)] = 109443, - [SMALL_STATE(3615)] = 109469, - [SMALL_STATE(3616)] = 109495, - [SMALL_STATE(3617)] = 109521, - [SMALL_STATE(3618)] = 109543, - [SMALL_STATE(3619)] = 109569, - [SMALL_STATE(3620)] = 109601, - [SMALL_STATE(3621)] = 109627, - [SMALL_STATE(3622)] = 109659, - [SMALL_STATE(3623)] = 109691, - [SMALL_STATE(3624)] = 109713, - [SMALL_STATE(3625)] = 109745, - [SMALL_STATE(3626)] = 109771, - [SMALL_STATE(3627)] = 109797, - [SMALL_STATE(3628)] = 109823, - [SMALL_STATE(3629)] = 109855, - [SMALL_STATE(3630)] = 109889, - [SMALL_STATE(3631)] = 109911, - [SMALL_STATE(3632)] = 109933, - [SMALL_STATE(3633)] = 109967, - [SMALL_STATE(3634)] = 109993, - [SMALL_STATE(3635)] = 110017, - [SMALL_STATE(3636)] = 110039, - [SMALL_STATE(3637)] = 110063, - [SMALL_STATE(3638)] = 110087, - [SMALL_STATE(3639)] = 110109, - [SMALL_STATE(3640)] = 110131, - [SMALL_STATE(3641)] = 110155, - [SMALL_STATE(3642)] = 110191, - [SMALL_STATE(3643)] = 110217, - [SMALL_STATE(3644)] = 110241, - [SMALL_STATE(3645)] = 110267, - [SMALL_STATE(3646)] = 110303, - [SMALL_STATE(3647)] = 110327, - [SMALL_STATE(3648)] = 110357, - [SMALL_STATE(3649)] = 110393, - [SMALL_STATE(3650)] = 110417, - [SMALL_STATE(3651)] = 110443, - [SMALL_STATE(3652)] = 110467, - [SMALL_STATE(3653)] = 110503, - [SMALL_STATE(3654)] = 110534, - [SMALL_STATE(3655)] = 110555, - [SMALL_STATE(3656)] = 110580, - [SMALL_STATE(3657)] = 110613, - [SMALL_STATE(3658)] = 110646, - [SMALL_STATE(3659)] = 110671, - [SMALL_STATE(3660)] = 110692, - [SMALL_STATE(3661)] = 110713, - [SMALL_STATE(3662)] = 110734, - [SMALL_STATE(3663)] = 110767, - [SMALL_STATE(3664)] = 110800, - [SMALL_STATE(3665)] = 110833, - [SMALL_STATE(3666)] = 110866, - [SMALL_STATE(3667)] = 110899, - [SMALL_STATE(3668)] = 110932, - [SMALL_STATE(3669)] = 110963, - [SMALL_STATE(3670)] = 110986, - [SMALL_STATE(3671)] = 111019, - [SMALL_STATE(3672)] = 111052, - [SMALL_STATE(3673)] = 111083, - [SMALL_STATE(3674)] = 111116, - [SMALL_STATE(3675)] = 111149, - [SMALL_STATE(3676)] = 111180, - [SMALL_STATE(3677)] = 111213, - [SMALL_STATE(3678)] = 111246, - [SMALL_STATE(3679)] = 111277, - [SMALL_STATE(3680)] = 111310, - [SMALL_STATE(3681)] = 111343, - [SMALL_STATE(3682)] = 111374, - [SMALL_STATE(3683)] = 111407, - [SMALL_STATE(3684)] = 111440, - [SMALL_STATE(3685)] = 111471, - [SMALL_STATE(3686)] = 111504, - [SMALL_STATE(3687)] = 111537, - [SMALL_STATE(3688)] = 111568, - [SMALL_STATE(3689)] = 111601, - [SMALL_STATE(3690)] = 111634, - [SMALL_STATE(3691)] = 111665, - [SMALL_STATE(3692)] = 111696, - [SMALL_STATE(3693)] = 111727, - [SMALL_STATE(3694)] = 111758, - [SMALL_STATE(3695)] = 111789, - [SMALL_STATE(3696)] = 111820, - [SMALL_STATE(3697)] = 111851, - [SMALL_STATE(3698)] = 111882, - [SMALL_STATE(3699)] = 111913, - [SMALL_STATE(3700)] = 111948, - [SMALL_STATE(3701)] = 111979, - [SMALL_STATE(3702)] = 112002, - [SMALL_STATE(3703)] = 112033, - [SMALL_STATE(3704)] = 112058, - [SMALL_STATE(3705)] = 112089, - [SMALL_STATE(3706)] = 112110, - [SMALL_STATE(3707)] = 112133, - [SMALL_STATE(3708)] = 112162, - [SMALL_STATE(3709)] = 112185, - [SMALL_STATE(3710)] = 112208, - [SMALL_STATE(3711)] = 112229, - [SMALL_STATE(3712)] = 112250, - [SMALL_STATE(3713)] = 112283, - [SMALL_STATE(3714)] = 112316, - [SMALL_STATE(3715)] = 112351, - [SMALL_STATE(3716)] = 112372, - [SMALL_STATE(3717)] = 112403, - [SMALL_STATE(3718)] = 112428, - [SMALL_STATE(3719)] = 112453, - [SMALL_STATE(3720)] = 112486, - [SMALL_STATE(3721)] = 112511, - [SMALL_STATE(3722)] = 112542, - [SMALL_STATE(3723)] = 112575, - [SMALL_STATE(3724)] = 112598, - [SMALL_STATE(3725)] = 112619, - [SMALL_STATE(3726)] = 112650, - [SMALL_STATE(3727)] = 112683, - [SMALL_STATE(3728)] = 112716, - [SMALL_STATE(3729)] = 112749, - [SMALL_STATE(3730)] = 112782, - [SMALL_STATE(3731)] = 112815, - [SMALL_STATE(3732)] = 112840, - [SMALL_STATE(3733)] = 112863, - [SMALL_STATE(3734)] = 112884, - [SMALL_STATE(3735)] = 112905, - [SMALL_STATE(3736)] = 112938, - [SMALL_STATE(3737)] = 112971, - [SMALL_STATE(3738)] = 113002, - [SMALL_STATE(3739)] = 113033, - [SMALL_STATE(3740)] = 113066, - [SMALL_STATE(3741)] = 113097, - [SMALL_STATE(3742)] = 113122, - [SMALL_STATE(3743)] = 113155, - [SMALL_STATE(3744)] = 113188, - [SMALL_STATE(3745)] = 113209, - [SMALL_STATE(3746)] = 113230, - [SMALL_STATE(3747)] = 113258, - [SMALL_STATE(3748)] = 113286, - [SMALL_STATE(3749)] = 113306, - [SMALL_STATE(3750)] = 113334, - [SMALL_STATE(3751)] = 113356, - [SMALL_STATE(3752)] = 113384, - [SMALL_STATE(3753)] = 113404, - [SMALL_STATE(3754)] = 113422, - [SMALL_STATE(3755)] = 113450, - [SMALL_STATE(3756)] = 113470, - [SMALL_STATE(3757)] = 113498, - [SMALL_STATE(3758)] = 113526, - [SMALL_STATE(3759)] = 113554, - [SMALL_STATE(3760)] = 113582, - [SMALL_STATE(3761)] = 113610, - [SMALL_STATE(3762)] = 113638, - [SMALL_STATE(3763)] = 113666, - [SMALL_STATE(3764)] = 113694, - [SMALL_STATE(3765)] = 113722, - [SMALL_STATE(3766)] = 113748, - [SMALL_STATE(3767)] = 113776, - [SMALL_STATE(3768)] = 113796, - [SMALL_STATE(3769)] = 113824, - [SMALL_STATE(3770)] = 113852, - [SMALL_STATE(3771)] = 113882, - [SMALL_STATE(3772)] = 113910, - [SMALL_STATE(3773)] = 113938, - [SMALL_STATE(3774)] = 113966, - [SMALL_STATE(3775)] = 113994, - [SMALL_STATE(3776)] = 114014, - [SMALL_STATE(3777)] = 114034, - [SMALL_STATE(3778)] = 114062, - [SMALL_STATE(3779)] = 114090, - [SMALL_STATE(3780)] = 114118, - [SMALL_STATE(3781)] = 114138, - [SMALL_STATE(3782)] = 114166, - [SMALL_STATE(3783)] = 114188, - [SMALL_STATE(3784)] = 114208, - [SMALL_STATE(3785)] = 114236, - [SMALL_STATE(3786)] = 114258, - [SMALL_STATE(3787)] = 114282, - [SMALL_STATE(3788)] = 114310, - [SMALL_STATE(3789)] = 114330, - [SMALL_STATE(3790)] = 114358, - [SMALL_STATE(3791)] = 114386, - [SMALL_STATE(3792)] = 114404, - [SMALL_STATE(3793)] = 114432, - [SMALL_STATE(3794)] = 114460, - [SMALL_STATE(3795)] = 114488, - [SMALL_STATE(3796)] = 114516, - [SMALL_STATE(3797)] = 114544, - [SMALL_STATE(3798)] = 114566, - [SMALL_STATE(3799)] = 114594, - [SMALL_STATE(3800)] = 114622, - [SMALL_STATE(3801)] = 114646, - [SMALL_STATE(3802)] = 114666, - [SMALL_STATE(3803)] = 114694, - [SMALL_STATE(3804)] = 114722, - [SMALL_STATE(3805)] = 114750, - [SMALL_STATE(3806)] = 114770, - [SMALL_STATE(3807)] = 114798, - [SMALL_STATE(3808)] = 114822, - [SMALL_STATE(3809)] = 114846, - [SMALL_STATE(3810)] = 114866, - [SMALL_STATE(3811)] = 114886, - [SMALL_STATE(3812)] = 114906, - [SMALL_STATE(3813)] = 114934, - [SMALL_STATE(3814)] = 114954, - [SMALL_STATE(3815)] = 114982, - [SMALL_STATE(3816)] = 115004, - [SMALL_STATE(3817)] = 115032, - [SMALL_STATE(3818)] = 115054, - [SMALL_STATE(3819)] = 115082, - [SMALL_STATE(3820)] = 115110, - [SMALL_STATE(3821)] = 115136, - [SMALL_STATE(3822)] = 115160, - [SMALL_STATE(3823)] = 115190, - [SMALL_STATE(3824)] = 115212, - [SMALL_STATE(3825)] = 115238, - [SMALL_STATE(3826)] = 115262, - [SMALL_STATE(3827)] = 115284, - [SMALL_STATE(3828)] = 115307, - [SMALL_STATE(3829)] = 115326, - [SMALL_STATE(3830)] = 115349, - [SMALL_STATE(3831)] = 115374, - [SMALL_STATE(3832)] = 115399, - [SMALL_STATE(3833)] = 115424, - [SMALL_STATE(3834)] = 115443, - [SMALL_STATE(3835)] = 115466, - [SMALL_STATE(3836)] = 115493, - [SMALL_STATE(3837)] = 115512, - [SMALL_STATE(3838)] = 115537, - [SMALL_STATE(3839)] = 115562, - [SMALL_STATE(3840)] = 115587, - [SMALL_STATE(3841)] = 115608, - [SMALL_STATE(3842)] = 115629, - [SMALL_STATE(3843)] = 115654, - [SMALL_STATE(3844)] = 115683, - [SMALL_STATE(3845)] = 115708, - [SMALL_STATE(3846)] = 115727, - [SMALL_STATE(3847)] = 115748, - [SMALL_STATE(3848)] = 115767, - [SMALL_STATE(3849)] = 115792, - [SMALL_STATE(3850)] = 115811, - [SMALL_STATE(3851)] = 115832, - [SMALL_STATE(3852)] = 115863, - [SMALL_STATE(3853)] = 115888, - [SMALL_STATE(3854)] = 115913, - [SMALL_STATE(3855)] = 115938, - [SMALL_STATE(3856)] = 115965, - [SMALL_STATE(3857)] = 115990, - [SMALL_STATE(3858)] = 116009, - [SMALL_STATE(3859)] = 116034, - [SMALL_STATE(3860)] = 116061, - [SMALL_STATE(3861)] = 116080, - [SMALL_STATE(3862)] = 116099, - [SMALL_STATE(3863)] = 116124, - [SMALL_STATE(3864)] = 116151, - [SMALL_STATE(3865)] = 116178, - [SMALL_STATE(3866)] = 116197, - [SMALL_STATE(3867)] = 116218, - [SMALL_STATE(3868)] = 116243, - [SMALL_STATE(3869)] = 116262, - [SMALL_STATE(3870)] = 116281, - [SMALL_STATE(3871)] = 116304, - [SMALL_STATE(3872)] = 116323, - [SMALL_STATE(3873)] = 116350, - [SMALL_STATE(3874)] = 116371, - [SMALL_STATE(3875)] = 116395, - [SMALL_STATE(3876)] = 116417, - [SMALL_STATE(3877)] = 116439, - [SMALL_STATE(3878)] = 116457, - [SMALL_STATE(3879)] = 116475, - [SMALL_STATE(3880)] = 116493, - [SMALL_STATE(3881)] = 116513, - [SMALL_STATE(3882)] = 116533, - [SMALL_STATE(3883)] = 116559, - [SMALL_STATE(3884)] = 116587, - [SMALL_STATE(3885)] = 116613, - [SMALL_STATE(3886)] = 116639, - [SMALL_STATE(3887)] = 116665, - [SMALL_STATE(3888)] = 116693, - [SMALL_STATE(3889)] = 116711, - [SMALL_STATE(3890)] = 116739, - [SMALL_STATE(3891)] = 116767, - [SMALL_STATE(3892)] = 116795, - [SMALL_STATE(3893)] = 116813, - [SMALL_STATE(3894)] = 116839, - [SMALL_STATE(3895)] = 116867, - [SMALL_STATE(3896)] = 116893, - [SMALL_STATE(3897)] = 116915, - [SMALL_STATE(3898)] = 116939, - [SMALL_STATE(3899)] = 116967, - [SMALL_STATE(3900)] = 116995, - [SMALL_STATE(3901)] = 117023, - [SMALL_STATE(3902)] = 117051, - [SMALL_STATE(3903)] = 117077, - [SMALL_STATE(3904)] = 117105, - [SMALL_STATE(3905)] = 117133, - [SMALL_STATE(3906)] = 117161, - [SMALL_STATE(3907)] = 117183, - [SMALL_STATE(3908)] = 117211, - [SMALL_STATE(3909)] = 117237, - [SMALL_STATE(3910)] = 117263, - [SMALL_STATE(3911)] = 117285, - [SMALL_STATE(3912)] = 117313, - [SMALL_STATE(3913)] = 117337, - [SMALL_STATE(3914)] = 117365, - [SMALL_STATE(3915)] = 117389, - [SMALL_STATE(3916)] = 117417, - [SMALL_STATE(3917)] = 117443, - [SMALL_STATE(3918)] = 117465, - [SMALL_STATE(3919)] = 117493, - [SMALL_STATE(3920)] = 117515, - [SMALL_STATE(3921)] = 117543, - [SMALL_STATE(3922)] = 117565, - [SMALL_STATE(3923)] = 117589, - [SMALL_STATE(3924)] = 117615, - [SMALL_STATE(3925)] = 117641, - [SMALL_STATE(3926)] = 117667, - [SMALL_STATE(3927)] = 117695, - [SMALL_STATE(3928)] = 117721, - [SMALL_STATE(3929)] = 117743, - [SMALL_STATE(3930)] = 117771, - [SMALL_STATE(3931)] = 117799, - [SMALL_STATE(3932)] = 117827, - [SMALL_STATE(3933)] = 117855, - [SMALL_STATE(3934)] = 117879, - [SMALL_STATE(3935)] = 117907, - [SMALL_STATE(3936)] = 117931, - [SMALL_STATE(3937)] = 117955, - [SMALL_STATE(3938)] = 117983, - [SMALL_STATE(3939)] = 118009, - [SMALL_STATE(3940)] = 118031, - [SMALL_STATE(3941)] = 118049, - [SMALL_STATE(3942)] = 118067, - [SMALL_STATE(3943)] = 118095, - [SMALL_STATE(3944)] = 118113, - [SMALL_STATE(3945)] = 118141, - [SMALL_STATE(3946)] = 118159, - [SMALL_STATE(3947)] = 118177, - [SMALL_STATE(3948)] = 118199, - [SMALL_STATE(3949)] = 118217, - [SMALL_STATE(3950)] = 118245, - [SMALL_STATE(3951)] = 118273, - [SMALL_STATE(3952)] = 118301, - [SMALL_STATE(3953)] = 118329, - [SMALL_STATE(3954)] = 118357, - [SMALL_STATE(3955)] = 118385, - [SMALL_STATE(3956)] = 118413, - [SMALL_STATE(3957)] = 118441, - [SMALL_STATE(3958)] = 118469, - [SMALL_STATE(3959)] = 118497, - [SMALL_STATE(3960)] = 118525, - [SMALL_STATE(3961)] = 118553, - [SMALL_STATE(3962)] = 118581, - [SMALL_STATE(3963)] = 118607, - [SMALL_STATE(3964)] = 118627, - [SMALL_STATE(3965)] = 118655, - [SMALL_STATE(3966)] = 118681, - [SMALL_STATE(3967)] = 118701, - [SMALL_STATE(3968)] = 118721, - [SMALL_STATE(3969)] = 118741, - [SMALL_STATE(3970)] = 118769, - [SMALL_STATE(3971)] = 118795, - [SMALL_STATE(3972)] = 118819, - [SMALL_STATE(3973)] = 118845, - [SMALL_STATE(3974)] = 118873, - [SMALL_STATE(3975)] = 118895, - [SMALL_STATE(3976)] = 118921, - [SMALL_STATE(3977)] = 118939, - [SMALL_STATE(3978)] = 118957, - [SMALL_STATE(3979)] = 118977, - [SMALL_STATE(3980)] = 118997, - [SMALL_STATE(3981)] = 119025, - [SMALL_STATE(3982)] = 119053, - [SMALL_STATE(3983)] = 119079, - [SMALL_STATE(3984)] = 119102, - [SMALL_STATE(3985)] = 119125, - [SMALL_STATE(3986)] = 119148, - [SMALL_STATE(3987)] = 119171, - [SMALL_STATE(3988)] = 119194, - [SMALL_STATE(3989)] = 119217, - [SMALL_STATE(3990)] = 119240, - [SMALL_STATE(3991)] = 119263, - [SMALL_STATE(3992)] = 119286, - [SMALL_STATE(3993)] = 119309, - [SMALL_STATE(3994)] = 119330, - [SMALL_STATE(3995)] = 119353, - [SMALL_STATE(3996)] = 119376, - [SMALL_STATE(3997)] = 119399, - [SMALL_STATE(3998)] = 119422, - [SMALL_STATE(3999)] = 119445, - [SMALL_STATE(4000)] = 119468, - [SMALL_STATE(4001)] = 119491, - [SMALL_STATE(4002)] = 119514, - [SMALL_STATE(4003)] = 119537, - [SMALL_STATE(4004)] = 119560, - [SMALL_STATE(4005)] = 119583, - [SMALL_STATE(4006)] = 119606, - [SMALL_STATE(4007)] = 119629, - [SMALL_STATE(4008)] = 119652, - [SMALL_STATE(4009)] = 119675, - [SMALL_STATE(4010)] = 119698, - [SMALL_STATE(4011)] = 119721, - [SMALL_STATE(4012)] = 119744, - [SMALL_STATE(4013)] = 119767, - [SMALL_STATE(4014)] = 119790, - [SMALL_STATE(4015)] = 119813, - [SMALL_STATE(4016)] = 119836, - [SMALL_STATE(4017)] = 119855, - [SMALL_STATE(4018)] = 119874, - [SMALL_STATE(4019)] = 119899, - [SMALL_STATE(4020)] = 119920, - [SMALL_STATE(4021)] = 119941, - [SMALL_STATE(4022)] = 119964, - [SMALL_STATE(4023)] = 119987, - [SMALL_STATE(4024)] = 120006, - [SMALL_STATE(4025)] = 120025, - [SMALL_STATE(4026)] = 120046, - [SMALL_STATE(4027)] = 120071, - [SMALL_STATE(4028)] = 120090, - [SMALL_STATE(4029)] = 120109, - [SMALL_STATE(4030)] = 120124, - [SMALL_STATE(4031)] = 120149, - [SMALL_STATE(4032)] = 120170, - [SMALL_STATE(4033)] = 120185, - [SMALL_STATE(4034)] = 120200, - [SMALL_STATE(4035)] = 120219, - [SMALL_STATE(4036)] = 120240, - [SMALL_STATE(4037)] = 120261, - [SMALL_STATE(4038)] = 120280, - [SMALL_STATE(4039)] = 120299, - [SMALL_STATE(4040)] = 120320, - [SMALL_STATE(4041)] = 120345, - [SMALL_STATE(4042)] = 120370, - [SMALL_STATE(4043)] = 120395, - [SMALL_STATE(4044)] = 120410, - [SMALL_STATE(4045)] = 120425, - [SMALL_STATE(4046)] = 120440, - [SMALL_STATE(4047)] = 120465, - [SMALL_STATE(4048)] = 120488, - [SMALL_STATE(4049)] = 120509, - [SMALL_STATE(4050)] = 120528, - [SMALL_STATE(4051)] = 120549, - [SMALL_STATE(4052)] = 120574, - [SMALL_STATE(4053)] = 120599, - [SMALL_STATE(4054)] = 120624, - [SMALL_STATE(4055)] = 120647, - [SMALL_STATE(4056)] = 120670, - [SMALL_STATE(4057)] = 120693, - [SMALL_STATE(4058)] = 120716, - [SMALL_STATE(4059)] = 120735, - [SMALL_STATE(4060)] = 120754, - [SMALL_STATE(4061)] = 120773, - [SMALL_STATE(4062)] = 120798, - [SMALL_STATE(4063)] = 120823, - [SMALL_STATE(4064)] = 120846, - [SMALL_STATE(4065)] = 120865, - [SMALL_STATE(4066)] = 120886, - [SMALL_STATE(4067)] = 120907, - [SMALL_STATE(4068)] = 120930, - [SMALL_STATE(4069)] = 120953, - [SMALL_STATE(4070)] = 120978, - [SMALL_STATE(4071)] = 120997, - [SMALL_STATE(4072)] = 121020, - [SMALL_STATE(4073)] = 121039, - [SMALL_STATE(4074)] = 121062, - [SMALL_STATE(4075)] = 121087, - [SMALL_STATE(4076)] = 121110, - [SMALL_STATE(4077)] = 121133, - [SMALL_STATE(4078)] = 121156, - [SMALL_STATE(4079)] = 121179, - [SMALL_STATE(4080)] = 121202, - [SMALL_STATE(4081)] = 121223, - [SMALL_STATE(4082)] = 121246, - [SMALL_STATE(4083)] = 121269, - [SMALL_STATE(4084)] = 121292, - [SMALL_STATE(4085)] = 121315, - [SMALL_STATE(4086)] = 121338, - [SMALL_STATE(4087)] = 121357, - [SMALL_STATE(4088)] = 121376, - [SMALL_STATE(4089)] = 121401, - [SMALL_STATE(4090)] = 121426, - [SMALL_STATE(4091)] = 121449, - [SMALL_STATE(4092)] = 121472, - [SMALL_STATE(4093)] = 121493, - [SMALL_STATE(4094)] = 121516, - [SMALL_STATE(4095)] = 121537, - [SMALL_STATE(4096)] = 121560, - [SMALL_STATE(4097)] = 121583, - [SMALL_STATE(4098)] = 121606, - [SMALL_STATE(4099)] = 121629, - [SMALL_STATE(4100)] = 121652, - [SMALL_STATE(4101)] = 121675, - [SMALL_STATE(4102)] = 121698, - [SMALL_STATE(4103)] = 121721, - [SMALL_STATE(4104)] = 121744, - [SMALL_STATE(4105)] = 121767, - [SMALL_STATE(4106)] = 121786, - [SMALL_STATE(4107)] = 121809, - [SMALL_STATE(4108)] = 121832, - [SMALL_STATE(4109)] = 121855, - [SMALL_STATE(4110)] = 121878, - [SMALL_STATE(4111)] = 121901, - [SMALL_STATE(4112)] = 121924, - [SMALL_STATE(4113)] = 121947, - [SMALL_STATE(4114)] = 121970, - [SMALL_STATE(4115)] = 121993, - [SMALL_STATE(4116)] = 122016, - [SMALL_STATE(4117)] = 122037, - [SMALL_STATE(4118)] = 122058, - [SMALL_STATE(4119)] = 122081, - [SMALL_STATE(4120)] = 122104, - [SMALL_STATE(4121)] = 122129, - [SMALL_STATE(4122)] = 122152, - [SMALL_STATE(4123)] = 122175, - [SMALL_STATE(4124)] = 122198, - [SMALL_STATE(4125)] = 122221, - [SMALL_STATE(4126)] = 122244, - [SMALL_STATE(4127)] = 122265, - [SMALL_STATE(4128)] = 122286, - [SMALL_STATE(4129)] = 122307, - [SMALL_STATE(4130)] = 122330, - [SMALL_STATE(4131)] = 122353, - [SMALL_STATE(4132)] = 122374, - [SMALL_STATE(4133)] = 122397, - [SMALL_STATE(4134)] = 122420, - [SMALL_STATE(4135)] = 122443, - [SMALL_STATE(4136)] = 122466, - [SMALL_STATE(4137)] = 122487, - [SMALL_STATE(4138)] = 122508, - [SMALL_STATE(4139)] = 122529, - [SMALL_STATE(4140)] = 122550, - [SMALL_STATE(4141)] = 122573, - [SMALL_STATE(4142)] = 122596, - [SMALL_STATE(4143)] = 122619, - [SMALL_STATE(4144)] = 122642, - [SMALL_STATE(4145)] = 122667, - [SMALL_STATE(4146)] = 122692, - [SMALL_STATE(4147)] = 122715, - [SMALL_STATE(4148)] = 122740, - [SMALL_STATE(4149)] = 122763, - [SMALL_STATE(4150)] = 122786, - [SMALL_STATE(4151)] = 122809, - [SMALL_STATE(4152)] = 122832, - [SMALL_STATE(4153)] = 122855, - [SMALL_STATE(4154)] = 122878, - [SMALL_STATE(4155)] = 122901, - [SMALL_STATE(4156)] = 122924, - [SMALL_STATE(4157)] = 122943, - [SMALL_STATE(4158)] = 122966, - [SMALL_STATE(4159)] = 122989, - [SMALL_STATE(4160)] = 123012, - [SMALL_STATE(4161)] = 123035, - [SMALL_STATE(4162)] = 123058, - [SMALL_STATE(4163)] = 123081, - [SMALL_STATE(4164)] = 123104, - [SMALL_STATE(4165)] = 123127, - [SMALL_STATE(4166)] = 123148, - [SMALL_STATE(4167)] = 123169, - [SMALL_STATE(4168)] = 123190, - [SMALL_STATE(4169)] = 123211, - [SMALL_STATE(4170)] = 123232, - [SMALL_STATE(4171)] = 123255, - [SMALL_STATE(4172)] = 123280, - [SMALL_STATE(4173)] = 123305, - [SMALL_STATE(4174)] = 123330, - [SMALL_STATE(4175)] = 123355, - [SMALL_STATE(4176)] = 123378, - [SMALL_STATE(4177)] = 123399, - [SMALL_STATE(4178)] = 123424, - [SMALL_STATE(4179)] = 123443, - [SMALL_STATE(4180)] = 123464, - [SMALL_STATE(4181)] = 123483, - [SMALL_STATE(4182)] = 123504, - [SMALL_STATE(4183)] = 123525, - [SMALL_STATE(4184)] = 123548, - [SMALL_STATE(4185)] = 123573, - [SMALL_STATE(4186)] = 123598, - [SMALL_STATE(4187)] = 123623, - [SMALL_STATE(4188)] = 123648, - [SMALL_STATE(4189)] = 123673, - [SMALL_STATE(4190)] = 123698, - [SMALL_STATE(4191)] = 123715, - [SMALL_STATE(4192)] = 123732, - [SMALL_STATE(4193)] = 123749, - [SMALL_STATE(4194)] = 123770, - [SMALL_STATE(4195)] = 123791, - [SMALL_STATE(4196)] = 123812, - [SMALL_STATE(4197)] = 123835, - [SMALL_STATE(4198)] = 123856, - [SMALL_STATE(4199)] = 123879, - [SMALL_STATE(4200)] = 123904, - [SMALL_STATE(4201)] = 123924, - [SMALL_STATE(4202)] = 123942, - [SMALL_STATE(4203)] = 123960, - [SMALL_STATE(4204)] = 123982, - [SMALL_STATE(4205)] = 123998, - [SMALL_STATE(4206)] = 124018, - [SMALL_STATE(4207)] = 124040, - [SMALL_STATE(4208)] = 124058, - [SMALL_STATE(4209)] = 124080, - [SMALL_STATE(4210)] = 124102, - [SMALL_STATE(4211)] = 124122, - [SMALL_STATE(4212)] = 124138, - [SMALL_STATE(4213)] = 124154, - [SMALL_STATE(4214)] = 124170, - [SMALL_STATE(4215)] = 124190, - [SMALL_STATE(4216)] = 124210, - [SMALL_STATE(4217)] = 124232, - [SMALL_STATE(4218)] = 124254, - [SMALL_STATE(4219)] = 124274, - [SMALL_STATE(4220)] = 124292, - [SMALL_STATE(4221)] = 124314, - [SMALL_STATE(4222)] = 124334, - [SMALL_STATE(4223)] = 124356, - [SMALL_STATE(4224)] = 124372, - [SMALL_STATE(4225)] = 124388, - [SMALL_STATE(4226)] = 124406, - [SMALL_STATE(4227)] = 124426, - [SMALL_STATE(4228)] = 124448, - [SMALL_STATE(4229)] = 124466, - [SMALL_STATE(4230)] = 124486, - [SMALL_STATE(4231)] = 124502, - [SMALL_STATE(4232)] = 124524, - [SMALL_STATE(4233)] = 124546, - [SMALL_STATE(4234)] = 124564, - [SMALL_STATE(4235)] = 124584, - [SMALL_STATE(4236)] = 124600, - [SMALL_STATE(4237)] = 124618, - [SMALL_STATE(4238)] = 124638, - [SMALL_STATE(4239)] = 124660, - [SMALL_STATE(4240)] = 124678, - [SMALL_STATE(4241)] = 124700, - [SMALL_STATE(4242)] = 124716, - [SMALL_STATE(4243)] = 124736, - [SMALL_STATE(4244)] = 124758, - [SMALL_STATE(4245)] = 124780, - [SMALL_STATE(4246)] = 124800, - [SMALL_STATE(4247)] = 124820, - [SMALL_STATE(4248)] = 124840, - [SMALL_STATE(4249)] = 124856, - [SMALL_STATE(4250)] = 124872, - [SMALL_STATE(4251)] = 124888, - [SMALL_STATE(4252)] = 124906, - [SMALL_STATE(4253)] = 124926, - [SMALL_STATE(4254)] = 124944, - [SMALL_STATE(4255)] = 124964, - [SMALL_STATE(4256)] = 124980, - [SMALL_STATE(4257)] = 125000, - [SMALL_STATE(4258)] = 125020, - [SMALL_STATE(4259)] = 125038, - [SMALL_STATE(4260)] = 125058, - [SMALL_STATE(4261)] = 125076, - [SMALL_STATE(4262)] = 125096, - [SMALL_STATE(4263)] = 125116, - [SMALL_STATE(4264)] = 125134, - [SMALL_STATE(4265)] = 125154, - [SMALL_STATE(4266)] = 125170, - [SMALL_STATE(4267)] = 125190, - [SMALL_STATE(4268)] = 125210, - [SMALL_STATE(4269)] = 125230, - [SMALL_STATE(4270)] = 125250, - [SMALL_STATE(4271)] = 125268, - [SMALL_STATE(4272)] = 125288, - [SMALL_STATE(4273)] = 125308, - [SMALL_STATE(4274)] = 125326, - [SMALL_STATE(4275)] = 125348, - [SMALL_STATE(4276)] = 125366, - [SMALL_STATE(4277)] = 125384, - [SMALL_STATE(4278)] = 125406, - [SMALL_STATE(4279)] = 125426, - [SMALL_STATE(4280)] = 125444, - [SMALL_STATE(4281)] = 125462, - [SMALL_STATE(4282)] = 125484, - [SMALL_STATE(4283)] = 125506, - [SMALL_STATE(4284)] = 125522, - [SMALL_STATE(4285)] = 125542, - [SMALL_STATE(4286)] = 125562, - [SMALL_STATE(4287)] = 125578, - [SMALL_STATE(4288)] = 125598, - [SMALL_STATE(4289)] = 125614, - [SMALL_STATE(4290)] = 125636, - [SMALL_STATE(4291)] = 125656, - [SMALL_STATE(4292)] = 125672, - [SMALL_STATE(4293)] = 125692, - [SMALL_STATE(4294)] = 125712, - [SMALL_STATE(4295)] = 125732, - [SMALL_STATE(4296)] = 125748, - [SMALL_STATE(4297)] = 125764, - [SMALL_STATE(4298)] = 125786, - [SMALL_STATE(4299)] = 125804, - [SMALL_STATE(4300)] = 125822, - [SMALL_STATE(4301)] = 125838, - [SMALL_STATE(4302)] = 125858, - [SMALL_STATE(4303)] = 125874, - [SMALL_STATE(4304)] = 125892, - [SMALL_STATE(4305)] = 125914, - [SMALL_STATE(4306)] = 125932, - [SMALL_STATE(4307)] = 125954, - [SMALL_STATE(4308)] = 125970, - [SMALL_STATE(4309)] = 125990, - [SMALL_STATE(4310)] = 126012, - [SMALL_STATE(4311)] = 126034, - [SMALL_STATE(4312)] = 126050, - [SMALL_STATE(4313)] = 126070, - [SMALL_STATE(4314)] = 126090, - [SMALL_STATE(4315)] = 126112, - [SMALL_STATE(4316)] = 126130, - [SMALL_STATE(4317)] = 126152, - [SMALL_STATE(4318)] = 126172, - [SMALL_STATE(4319)] = 126194, - [SMALL_STATE(4320)] = 126210, - [SMALL_STATE(4321)] = 126226, - [SMALL_STATE(4322)] = 126246, - [SMALL_STATE(4323)] = 126266, - [SMALL_STATE(4324)] = 126288, - [SMALL_STATE(4325)] = 126308, - [SMALL_STATE(4326)] = 126330, - [SMALL_STATE(4327)] = 126352, - [SMALL_STATE(4328)] = 126372, - [SMALL_STATE(4329)] = 126394, - [SMALL_STATE(4330)] = 126410, - [SMALL_STATE(4331)] = 126432, - [SMALL_STATE(4332)] = 126454, - [SMALL_STATE(4333)] = 126470, - [SMALL_STATE(4334)] = 126486, - [SMALL_STATE(4335)] = 126502, - [SMALL_STATE(4336)] = 126518, - [SMALL_STATE(4337)] = 126538, - [SMALL_STATE(4338)] = 126560, - [SMALL_STATE(4339)] = 126580, - [SMALL_STATE(4340)] = 126602, - [SMALL_STATE(4341)] = 126624, - [SMALL_STATE(4342)] = 126640, - [SMALL_STATE(4343)] = 126662, - [SMALL_STATE(4344)] = 126684, - [SMALL_STATE(4345)] = 126700, - [SMALL_STATE(4346)] = 126722, - [SMALL_STATE(4347)] = 126742, - [SMALL_STATE(4348)] = 126762, - [SMALL_STATE(4349)] = 126784, - [SMALL_STATE(4350)] = 126806, - [SMALL_STATE(4351)] = 126824, - [SMALL_STATE(4352)] = 126844, - [SMALL_STATE(4353)] = 126862, - [SMALL_STATE(4354)] = 126882, - [SMALL_STATE(4355)] = 126904, - [SMALL_STATE(4356)] = 126924, - [SMALL_STATE(4357)] = 126944, - [SMALL_STATE(4358)] = 126964, - [SMALL_STATE(4359)] = 126980, - [SMALL_STATE(4360)] = 126995, - [SMALL_STATE(4361)] = 127014, - [SMALL_STATE(4362)] = 127033, - [SMALL_STATE(4363)] = 127050, - [SMALL_STATE(4364)] = 127063, - [SMALL_STATE(4365)] = 127076, - [SMALL_STATE(4366)] = 127089, - [SMALL_STATE(4367)] = 127102, - [SMALL_STATE(4368)] = 127115, - [SMALL_STATE(4369)] = 127128, - [SMALL_STATE(4370)] = 127141, - [SMALL_STATE(4371)] = 127154, - [SMALL_STATE(4372)] = 127169, - [SMALL_STATE(4373)] = 127182, - [SMALL_STATE(4374)] = 127195, - [SMALL_STATE(4375)] = 127210, - [SMALL_STATE(4376)] = 127229, - [SMALL_STATE(4377)] = 127242, - [SMALL_STATE(4378)] = 127261, - [SMALL_STATE(4379)] = 127276, - [SMALL_STATE(4380)] = 127293, - [SMALL_STATE(4381)] = 127310, - [SMALL_STATE(4382)] = 127325, - [SMALL_STATE(4383)] = 127338, - [SMALL_STATE(4384)] = 127355, - [SMALL_STATE(4385)] = 127370, - [SMALL_STATE(4386)] = 127387, - [SMALL_STATE(4387)] = 127404, - [SMALL_STATE(4388)] = 127419, - [SMALL_STATE(4389)] = 127438, - [SMALL_STATE(4390)] = 127453, - [SMALL_STATE(4391)] = 127466, - [SMALL_STATE(4392)] = 127479, - [SMALL_STATE(4393)] = 127494, - [SMALL_STATE(4394)] = 127513, - [SMALL_STATE(4395)] = 127526, - [SMALL_STATE(4396)] = 127539, - [SMALL_STATE(4397)] = 127558, - [SMALL_STATE(4398)] = 127571, - [SMALL_STATE(4399)] = 127584, - [SMALL_STATE(4400)] = 127597, - [SMALL_STATE(4401)] = 127610, - [SMALL_STATE(4402)] = 127623, - [SMALL_STATE(4403)] = 127636, - [SMALL_STATE(4404)] = 127649, - [SMALL_STATE(4405)] = 127662, - [SMALL_STATE(4406)] = 127681, - [SMALL_STATE(4407)] = 127694, - [SMALL_STATE(4408)] = 127713, - [SMALL_STATE(4409)] = 127726, - [SMALL_STATE(4410)] = 127743, - [SMALL_STATE(4411)] = 127762, - [SMALL_STATE(4412)] = 127777, - [SMALL_STATE(4413)] = 127790, - [SMALL_STATE(4414)] = 127803, - [SMALL_STATE(4415)] = 127816, - [SMALL_STATE(4416)] = 127829, - [SMALL_STATE(4417)] = 127848, - [SMALL_STATE(4418)] = 127867, - [SMALL_STATE(4419)] = 127882, - [SMALL_STATE(4420)] = 127897, - [SMALL_STATE(4421)] = 127912, - [SMALL_STATE(4422)] = 127925, - [SMALL_STATE(4423)] = 127940, - [SMALL_STATE(4424)] = 127953, - [SMALL_STATE(4425)] = 127966, - [SMALL_STATE(4426)] = 127979, - [SMALL_STATE(4427)] = 127992, - [SMALL_STATE(4428)] = 128005, - [SMALL_STATE(4429)] = 128018, - [SMALL_STATE(4430)] = 128033, - [SMALL_STATE(4431)] = 128048, - [SMALL_STATE(4432)] = 128061, - [SMALL_STATE(4433)] = 128076, - [SMALL_STATE(4434)] = 128095, - [SMALL_STATE(4435)] = 128108, - [SMALL_STATE(4436)] = 128125, - [SMALL_STATE(4437)] = 128142, - [SMALL_STATE(4438)] = 128155, - [SMALL_STATE(4439)] = 128168, - [SMALL_STATE(4440)] = 128181, - [SMALL_STATE(4441)] = 128198, - [SMALL_STATE(4442)] = 128213, - [SMALL_STATE(4443)] = 128232, - [SMALL_STATE(4444)] = 128247, - [SMALL_STATE(4445)] = 128262, - [SMALL_STATE(4446)] = 128281, - [SMALL_STATE(4447)] = 128296, - [SMALL_STATE(4448)] = 128313, - [SMALL_STATE(4449)] = 128326, - [SMALL_STATE(4450)] = 128345, - [SMALL_STATE(4451)] = 128358, - [SMALL_STATE(4452)] = 128373, - [SMALL_STATE(4453)] = 128388, - [SMALL_STATE(4454)] = 128405, - [SMALL_STATE(4455)] = 128422, - [SMALL_STATE(4456)] = 128441, - [SMALL_STATE(4457)] = 128458, - [SMALL_STATE(4458)] = 128471, - [SMALL_STATE(4459)] = 128488, - [SMALL_STATE(4460)] = 128507, - [SMALL_STATE(4461)] = 128522, - [SMALL_STATE(4462)] = 128537, - [SMALL_STATE(4463)] = 128556, - [SMALL_STATE(4464)] = 128575, - [SMALL_STATE(4465)] = 128594, - [SMALL_STATE(4466)] = 128613, - [SMALL_STATE(4467)] = 128630, - [SMALL_STATE(4468)] = 128645, - [SMALL_STATE(4469)] = 128658, - [SMALL_STATE(4470)] = 128675, - [SMALL_STATE(4471)] = 128694, - [SMALL_STATE(4472)] = 128711, - [SMALL_STATE(4473)] = 128726, - [SMALL_STATE(4474)] = 128739, - [SMALL_STATE(4475)] = 128752, - [SMALL_STATE(4476)] = 128765, - [SMALL_STATE(4477)] = 128780, - [SMALL_STATE(4478)] = 128793, - [SMALL_STATE(4479)] = 128806, - [SMALL_STATE(4480)] = 128821, - [SMALL_STATE(4481)] = 128834, - [SMALL_STATE(4482)] = 128847, - [SMALL_STATE(4483)] = 128860, - [SMALL_STATE(4484)] = 128873, - [SMALL_STATE(4485)] = 128892, - [SMALL_STATE(4486)] = 128905, - [SMALL_STATE(4487)] = 128924, - [SMALL_STATE(4488)] = 128937, - [SMALL_STATE(4489)] = 128950, - [SMALL_STATE(4490)] = 128967, - [SMALL_STATE(4491)] = 128980, - [SMALL_STATE(4492)] = 128993, - [SMALL_STATE(4493)] = 129006, - [SMALL_STATE(4494)] = 129019, - [SMALL_STATE(4495)] = 129032, - [SMALL_STATE(4496)] = 129045, - [SMALL_STATE(4497)] = 129062, - [SMALL_STATE(4498)] = 129075, - [SMALL_STATE(4499)] = 129088, - [SMALL_STATE(4500)] = 129101, - [SMALL_STATE(4501)] = 129114, - [SMALL_STATE(4502)] = 129129, - [SMALL_STATE(4503)] = 129144, - [SMALL_STATE(4504)] = 129163, - [SMALL_STATE(4505)] = 129176, - [SMALL_STATE(4506)] = 129189, - [SMALL_STATE(4507)] = 129204, - [SMALL_STATE(4508)] = 129217, - [SMALL_STATE(4509)] = 129230, - [SMALL_STATE(4510)] = 129247, - [SMALL_STATE(4511)] = 129260, - [SMALL_STATE(4512)] = 129277, - [SMALL_STATE(4513)] = 129290, - [SMALL_STATE(4514)] = 129309, - [SMALL_STATE(4515)] = 129322, - [SMALL_STATE(4516)] = 129341, - [SMALL_STATE(4517)] = 129354, - [SMALL_STATE(4518)] = 129373, - [SMALL_STATE(4519)] = 129386, - [SMALL_STATE(4520)] = 129401, - [SMALL_STATE(4521)] = 129420, - [SMALL_STATE(4522)] = 129433, - [SMALL_STATE(4523)] = 129446, - [SMALL_STATE(4524)] = 129461, - [SMALL_STATE(4525)] = 129474, - [SMALL_STATE(4526)] = 129489, - [SMALL_STATE(4527)] = 129508, - [SMALL_STATE(4528)] = 129523, - [SMALL_STATE(4529)] = 129536, - [SMALL_STATE(4530)] = 129551, - [SMALL_STATE(4531)] = 129570, - [SMALL_STATE(4532)] = 129589, - [SMALL_STATE(4533)] = 129608, - [SMALL_STATE(4534)] = 129627, - [SMALL_STATE(4535)] = 129642, - [SMALL_STATE(4536)] = 129661, - [SMALL_STATE(4537)] = 129676, - [SMALL_STATE(4538)] = 129689, - [SMALL_STATE(4539)] = 129704, - [SMALL_STATE(4540)] = 129721, - [SMALL_STATE(4541)] = 129736, - [SMALL_STATE(4542)] = 129753, - [SMALL_STATE(4543)] = 129766, - [SMALL_STATE(4544)] = 129783, - [SMALL_STATE(4545)] = 129802, - [SMALL_STATE(4546)] = 129817, - [SMALL_STATE(4547)] = 129830, - [SMALL_STATE(4548)] = 129849, - [SMALL_STATE(4549)] = 129864, - [SMALL_STATE(4550)] = 129879, - [SMALL_STATE(4551)] = 129896, - [SMALL_STATE(4552)] = 129911, - [SMALL_STATE(4553)] = 129926, - [SMALL_STATE(4554)] = 129945, - [SMALL_STATE(4555)] = 129960, - [SMALL_STATE(4556)] = 129975, - [SMALL_STATE(4557)] = 129994, - [SMALL_STATE(4558)] = 130009, - [SMALL_STATE(4559)] = 130028, - [SMALL_STATE(4560)] = 130047, - [SMALL_STATE(4561)] = 130060, - [SMALL_STATE(4562)] = 130075, - [SMALL_STATE(4563)] = 130090, - [SMALL_STATE(4564)] = 130107, - [SMALL_STATE(4565)] = 130120, - [SMALL_STATE(4566)] = 130135, - [SMALL_STATE(4567)] = 130150, - [SMALL_STATE(4568)] = 130169, - [SMALL_STATE(4569)] = 130184, - [SMALL_STATE(4570)] = 130199, - [SMALL_STATE(4571)] = 130214, - [SMALL_STATE(4572)] = 130231, - [SMALL_STATE(4573)] = 130246, - [SMALL_STATE(4574)] = 130265, - [SMALL_STATE(4575)] = 130278, - [SMALL_STATE(4576)] = 130291, - [SMALL_STATE(4577)] = 130306, - [SMALL_STATE(4578)] = 130319, - [SMALL_STATE(4579)] = 130332, - [SMALL_STATE(4580)] = 130347, - [SMALL_STATE(4581)] = 130360, - [SMALL_STATE(4582)] = 130373, - [SMALL_STATE(4583)] = 130386, - [SMALL_STATE(4584)] = 130399, - [SMALL_STATE(4585)] = 130416, - [SMALL_STATE(4586)] = 130435, - [SMALL_STATE(4587)] = 130454, - [SMALL_STATE(4588)] = 130467, - [SMALL_STATE(4589)] = 130480, - [SMALL_STATE(4590)] = 130493, - [SMALL_STATE(4591)] = 130512, - [SMALL_STATE(4592)] = 130529, - [SMALL_STATE(4593)] = 130542, - [SMALL_STATE(4594)] = 130555, - [SMALL_STATE(4595)] = 130568, - [SMALL_STATE(4596)] = 130581, - [SMALL_STATE(4597)] = 130594, - [SMALL_STATE(4598)] = 130607, - [SMALL_STATE(4599)] = 130620, - [SMALL_STATE(4600)] = 130633, - [SMALL_STATE(4601)] = 130646, - [SMALL_STATE(4602)] = 130663, - [SMALL_STATE(4603)] = 130676, - [SMALL_STATE(4604)] = 130691, - [SMALL_STATE(4605)] = 130706, - [SMALL_STATE(4606)] = 130725, - [SMALL_STATE(4607)] = 130738, - [SMALL_STATE(4608)] = 130755, - [SMALL_STATE(4609)] = 130774, - [SMALL_STATE(4610)] = 130787, - [SMALL_STATE(4611)] = 130800, - [SMALL_STATE(4612)] = 130813, - [SMALL_STATE(4613)] = 130830, - [SMALL_STATE(4614)] = 130847, - [SMALL_STATE(4615)] = 130862, - [SMALL_STATE(4616)] = 130881, - [SMALL_STATE(4617)] = 130896, - [SMALL_STATE(4618)] = 130915, - [SMALL_STATE(4619)] = 130932, - [SMALL_STATE(4620)] = 130949, - [SMALL_STATE(4621)] = 130964, - [SMALL_STATE(4622)] = 130977, - [SMALL_STATE(4623)] = 130994, - [SMALL_STATE(4624)] = 131013, - [SMALL_STATE(4625)] = 131032, - [SMALL_STATE(4626)] = 131049, - [SMALL_STATE(4627)] = 131064, - [SMALL_STATE(4628)] = 131081, - [SMALL_STATE(4629)] = 131094, - [SMALL_STATE(4630)] = 131109, - [SMALL_STATE(4631)] = 131122, - [SMALL_STATE(4632)] = 131135, - [SMALL_STATE(4633)] = 131148, - [SMALL_STATE(4634)] = 131161, - [SMALL_STATE(4635)] = 131174, - [SMALL_STATE(4636)] = 131187, - [SMALL_STATE(4637)] = 131206, - [SMALL_STATE(4638)] = 131225, - [SMALL_STATE(4639)] = 131240, - [SMALL_STATE(4640)] = 131253, - [SMALL_STATE(4641)] = 131272, - [SMALL_STATE(4642)] = 131287, - [SMALL_STATE(4643)] = 131300, - [SMALL_STATE(4644)] = 131319, - [SMALL_STATE(4645)] = 131338, - [SMALL_STATE(4646)] = 131351, - [SMALL_STATE(4647)] = 131370, - [SMALL_STATE(4648)] = 131383, - [SMALL_STATE(4649)] = 131402, - [SMALL_STATE(4650)] = 131421, - [SMALL_STATE(4651)] = 131434, - [SMALL_STATE(4652)] = 131453, - [SMALL_STATE(4653)] = 131472, - [SMALL_STATE(4654)] = 131487, - [SMALL_STATE(4655)] = 131500, - [SMALL_STATE(4656)] = 131513, - [SMALL_STATE(4657)] = 131528, - [SMALL_STATE(4658)] = 131541, - [SMALL_STATE(4659)] = 131558, - [SMALL_STATE(4660)] = 131577, - [SMALL_STATE(4661)] = 131592, - [SMALL_STATE(4662)] = 131611, - [SMALL_STATE(4663)] = 131630, - [SMALL_STATE(4664)] = 131649, - [SMALL_STATE(4665)] = 131668, - [SMALL_STATE(4666)] = 131681, - [SMALL_STATE(4667)] = 131694, - [SMALL_STATE(4668)] = 131711, - [SMALL_STATE(4669)] = 131728, - [SMALL_STATE(4670)] = 131743, - [SMALL_STATE(4671)] = 131758, - [SMALL_STATE(4672)] = 131773, - [SMALL_STATE(4673)] = 131792, - [SMALL_STATE(4674)] = 131808, - [SMALL_STATE(4675)] = 131824, - [SMALL_STATE(4676)] = 131840, - [SMALL_STATE(4677)] = 131852, - [SMALL_STATE(4678)] = 131864, - [SMALL_STATE(4679)] = 131876, - [SMALL_STATE(4680)] = 131888, - [SMALL_STATE(4681)] = 131900, - [SMALL_STATE(4682)] = 131912, - [SMALL_STATE(4683)] = 131928, - [SMALL_STATE(4684)] = 131940, - [SMALL_STATE(4685)] = 131956, - [SMALL_STATE(4686)] = 131970, - [SMALL_STATE(4687)] = 131986, - [SMALL_STATE(4688)] = 132002, - [SMALL_STATE(4689)] = 132018, - [SMALL_STATE(4690)] = 132030, - [SMALL_STATE(4691)] = 132042, - [SMALL_STATE(4692)] = 132058, - [SMALL_STATE(4693)] = 132070, - [SMALL_STATE(4694)] = 132086, - [SMALL_STATE(4695)] = 132098, - [SMALL_STATE(4696)] = 132114, - [SMALL_STATE(4697)] = 132126, - [SMALL_STATE(4698)] = 132138, - [SMALL_STATE(4699)] = 132154, - [SMALL_STATE(4700)] = 132170, - [SMALL_STATE(4701)] = 132184, - [SMALL_STATE(4702)] = 132200, - [SMALL_STATE(4703)] = 132214, - [SMALL_STATE(4704)] = 132228, - [SMALL_STATE(4705)] = 132244, - [SMALL_STATE(4706)] = 132256, - [SMALL_STATE(4707)] = 132268, - [SMALL_STATE(4708)] = 132282, - [SMALL_STATE(4709)] = 132294, - [SMALL_STATE(4710)] = 132306, - [SMALL_STATE(4711)] = 132322, - [SMALL_STATE(4712)] = 132338, - [SMALL_STATE(4713)] = 132354, - [SMALL_STATE(4714)] = 132368, - [SMALL_STATE(4715)] = 132382, - [SMALL_STATE(4716)] = 132396, - [SMALL_STATE(4717)] = 132410, - [SMALL_STATE(4718)] = 132426, - [SMALL_STATE(4719)] = 132440, - [SMALL_STATE(4720)] = 132456, - [SMALL_STATE(4721)] = 132472, - [SMALL_STATE(4722)] = 132488, - [SMALL_STATE(4723)] = 132504, - [SMALL_STATE(4724)] = 132516, - [SMALL_STATE(4725)] = 132530, - [SMALL_STATE(4726)] = 132544, - [SMALL_STATE(4727)] = 132558, - [SMALL_STATE(4728)] = 132570, - [SMALL_STATE(4729)] = 132586, - [SMALL_STATE(4730)] = 132602, - [SMALL_STATE(4731)] = 132618, - [SMALL_STATE(4732)] = 132632, - [SMALL_STATE(4733)] = 132648, - [SMALL_STATE(4734)] = 132664, - [SMALL_STATE(4735)] = 132676, - [SMALL_STATE(4736)] = 132688, - [SMALL_STATE(4737)] = 132704, - [SMALL_STATE(4738)] = 132716, - [SMALL_STATE(4739)] = 132728, - [SMALL_STATE(4740)] = 132740, - [SMALL_STATE(4741)] = 132752, - [SMALL_STATE(4742)] = 132764, - [SMALL_STATE(4743)] = 132780, - [SMALL_STATE(4744)] = 132794, - [SMALL_STATE(4745)] = 132806, - [SMALL_STATE(4746)] = 132822, - [SMALL_STATE(4747)] = 132834, - [SMALL_STATE(4748)] = 132848, - [SMALL_STATE(4749)] = 132862, - [SMALL_STATE(4750)] = 132876, - [SMALL_STATE(4751)] = 132888, - [SMALL_STATE(4752)] = 132904, - [SMALL_STATE(4753)] = 132920, - [SMALL_STATE(4754)] = 132936, - [SMALL_STATE(4755)] = 132950, - [SMALL_STATE(4756)] = 132962, - [SMALL_STATE(4757)] = 132978, - [SMALL_STATE(4758)] = 132994, - [SMALL_STATE(4759)] = 133006, - [SMALL_STATE(4760)] = 133018, - [SMALL_STATE(4761)] = 133030, - [SMALL_STATE(4762)] = 133042, - [SMALL_STATE(4763)] = 133054, - [SMALL_STATE(4764)] = 133066, - [SMALL_STATE(4765)] = 133082, - [SMALL_STATE(4766)] = 133098, - [SMALL_STATE(4767)] = 133114, - [SMALL_STATE(4768)] = 133126, - [SMALL_STATE(4769)] = 133142, - [SMALL_STATE(4770)] = 133156, - [SMALL_STATE(4771)] = 133168, - [SMALL_STATE(4772)] = 133180, - [SMALL_STATE(4773)] = 133194, - [SMALL_STATE(4774)] = 133206, - [SMALL_STATE(4775)] = 133222, - [SMALL_STATE(4776)] = 133238, - [SMALL_STATE(4777)] = 133250, - [SMALL_STATE(4778)] = 133266, - [SMALL_STATE(4779)] = 133278, - [SMALL_STATE(4780)] = 133294, - [SMALL_STATE(4781)] = 133306, - [SMALL_STATE(4782)] = 133318, - [SMALL_STATE(4783)] = 133330, - [SMALL_STATE(4784)] = 133344, - [SMALL_STATE(4785)] = 133356, - [SMALL_STATE(4786)] = 133368, - [SMALL_STATE(4787)] = 133384, - [SMALL_STATE(4788)] = 133400, - [SMALL_STATE(4789)] = 133416, - [SMALL_STATE(4790)] = 133430, - [SMALL_STATE(4791)] = 133446, - [SMALL_STATE(4792)] = 133462, - [SMALL_STATE(4793)] = 133478, - [SMALL_STATE(4794)] = 133494, - [SMALL_STATE(4795)] = 133510, - [SMALL_STATE(4796)] = 133522, - [SMALL_STATE(4797)] = 133534, - [SMALL_STATE(4798)] = 133546, - [SMALL_STATE(4799)] = 133560, - [SMALL_STATE(4800)] = 133572, - [SMALL_STATE(4801)] = 133584, - [SMALL_STATE(4802)] = 133600, - [SMALL_STATE(4803)] = 133612, - [SMALL_STATE(4804)] = 133626, - [SMALL_STATE(4805)] = 133638, - [SMALL_STATE(4806)] = 133652, - [SMALL_STATE(4807)] = 133664, - [SMALL_STATE(4808)] = 133676, - [SMALL_STATE(4809)] = 133688, - [SMALL_STATE(4810)] = 133704, - [SMALL_STATE(4811)] = 133716, - [SMALL_STATE(4812)] = 133728, - [SMALL_STATE(4813)] = 133740, - [SMALL_STATE(4814)] = 133752, - [SMALL_STATE(4815)] = 133764, - [SMALL_STATE(4816)] = 133776, - [SMALL_STATE(4817)] = 133788, - [SMALL_STATE(4818)] = 133800, - [SMALL_STATE(4819)] = 133812, - [SMALL_STATE(4820)] = 133828, - [SMALL_STATE(4821)] = 133840, - [SMALL_STATE(4822)] = 133854, - [SMALL_STATE(4823)] = 133866, - [SMALL_STATE(4824)] = 133878, - [SMALL_STATE(4825)] = 133894, - [SMALL_STATE(4826)] = 133910, - [SMALL_STATE(4827)] = 133922, - [SMALL_STATE(4828)] = 133934, - [SMALL_STATE(4829)] = 133950, - [SMALL_STATE(4830)] = 133962, - [SMALL_STATE(4831)] = 133976, - [SMALL_STATE(4832)] = 133988, - [SMALL_STATE(4833)] = 134004, - [SMALL_STATE(4834)] = 134016, - [SMALL_STATE(4835)] = 134028, - [SMALL_STATE(4836)] = 134044, - [SMALL_STATE(4837)] = 134056, - [SMALL_STATE(4838)] = 134072, - [SMALL_STATE(4839)] = 134088, - [SMALL_STATE(4840)] = 134104, - [SMALL_STATE(4841)] = 134120, - [SMALL_STATE(4842)] = 134134, - [SMALL_STATE(4843)] = 134146, - [SMALL_STATE(4844)] = 134160, - [SMALL_STATE(4845)] = 134174, - [SMALL_STATE(4846)] = 134190, - [SMALL_STATE(4847)] = 134206, - [SMALL_STATE(4848)] = 134218, - [SMALL_STATE(4849)] = 134230, - [SMALL_STATE(4850)] = 134246, - [SMALL_STATE(4851)] = 134262, - [SMALL_STATE(4852)] = 134276, - [SMALL_STATE(4853)] = 134288, - [SMALL_STATE(4854)] = 134302, - [SMALL_STATE(4855)] = 134314, - [SMALL_STATE(4856)] = 134326, - [SMALL_STATE(4857)] = 134342, - [SMALL_STATE(4858)] = 134354, - [SMALL_STATE(4859)] = 134366, - [SMALL_STATE(4860)] = 134382, - [SMALL_STATE(4861)] = 134398, - [SMALL_STATE(4862)] = 134414, - [SMALL_STATE(4863)] = 134426, - [SMALL_STATE(4864)] = 134438, - [SMALL_STATE(4865)] = 134452, - [SMALL_STATE(4866)] = 134464, - [SMALL_STATE(4867)] = 134480, - [SMALL_STATE(4868)] = 134494, - [SMALL_STATE(4869)] = 134510, - [SMALL_STATE(4870)] = 134524, - [SMALL_STATE(4871)] = 134536, - [SMALL_STATE(4872)] = 134548, - [SMALL_STATE(4873)] = 134564, - [SMALL_STATE(4874)] = 134580, - [SMALL_STATE(4875)] = 134594, - [SMALL_STATE(4876)] = 134606, - [SMALL_STATE(4877)] = 134622, - [SMALL_STATE(4878)] = 134638, - [SMALL_STATE(4879)] = 134650, - [SMALL_STATE(4880)] = 134666, - [SMALL_STATE(4881)] = 134682, - [SMALL_STATE(4882)] = 134694, - [SMALL_STATE(4883)] = 134710, - [SMALL_STATE(4884)] = 134726, - [SMALL_STATE(4885)] = 134740, - [SMALL_STATE(4886)] = 134754, - [SMALL_STATE(4887)] = 134770, - [SMALL_STATE(4888)] = 134786, - [SMALL_STATE(4889)] = 134798, - [SMALL_STATE(4890)] = 134814, - [SMALL_STATE(4891)] = 134826, - [SMALL_STATE(4892)] = 134842, - [SMALL_STATE(4893)] = 134854, - [SMALL_STATE(4894)] = 134870, - [SMALL_STATE(4895)] = 134884, - [SMALL_STATE(4896)] = 134896, - [SMALL_STATE(4897)] = 134908, - [SMALL_STATE(4898)] = 134924, - [SMALL_STATE(4899)] = 134936, - [SMALL_STATE(4900)] = 134952, - [SMALL_STATE(4901)] = 134964, - [SMALL_STATE(4902)] = 134980, - [SMALL_STATE(4903)] = 134992, - [SMALL_STATE(4904)] = 135008, - [SMALL_STATE(4905)] = 135020, - [SMALL_STATE(4906)] = 135036, - [SMALL_STATE(4907)] = 135052, - [SMALL_STATE(4908)] = 135068, - [SMALL_STATE(4909)] = 135084, - [SMALL_STATE(4910)] = 135096, - [SMALL_STATE(4911)] = 135112, - [SMALL_STATE(4912)] = 135126, - [SMALL_STATE(4913)] = 135140, - [SMALL_STATE(4914)] = 135154, - [SMALL_STATE(4915)] = 135166, - [SMALL_STATE(4916)] = 135180, - [SMALL_STATE(4917)] = 135194, - [SMALL_STATE(4918)] = 135208, - [SMALL_STATE(4919)] = 135220, - [SMALL_STATE(4920)] = 135236, - [SMALL_STATE(4921)] = 135252, - [SMALL_STATE(4922)] = 135268, - [SMALL_STATE(4923)] = 135280, - [SMALL_STATE(4924)] = 135296, - [SMALL_STATE(4925)] = 135310, - [SMALL_STATE(4926)] = 135324, - [SMALL_STATE(4927)] = 135340, - [SMALL_STATE(4928)] = 135354, - [SMALL_STATE(4929)] = 135366, - [SMALL_STATE(4930)] = 135379, - [SMALL_STATE(4931)] = 135392, - [SMALL_STATE(4932)] = 135405, - [SMALL_STATE(4933)] = 135418, - [SMALL_STATE(4934)] = 135431, - [SMALL_STATE(4935)] = 135444, - [SMALL_STATE(4936)] = 135457, - [SMALL_STATE(4937)] = 135470, - [SMALL_STATE(4938)] = 135483, - [SMALL_STATE(4939)] = 135496, - [SMALL_STATE(4940)] = 135509, - [SMALL_STATE(4941)] = 135522, - [SMALL_STATE(4942)] = 135535, - [SMALL_STATE(4943)] = 135548, - [SMALL_STATE(4944)] = 135561, - [SMALL_STATE(4945)] = 135574, - [SMALL_STATE(4946)] = 135587, - [SMALL_STATE(4947)] = 135600, - [SMALL_STATE(4948)] = 135613, - [SMALL_STATE(4949)] = 135626, - [SMALL_STATE(4950)] = 135639, - [SMALL_STATE(4951)] = 135652, - [SMALL_STATE(4952)] = 135665, - [SMALL_STATE(4953)] = 135678, - [SMALL_STATE(4954)] = 135691, - [SMALL_STATE(4955)] = 135704, - [SMALL_STATE(4956)] = 135717, - [SMALL_STATE(4957)] = 135730, - [SMALL_STATE(4958)] = 135743, - [SMALL_STATE(4959)] = 135756, - [SMALL_STATE(4960)] = 135769, - [SMALL_STATE(4961)] = 135782, - [SMALL_STATE(4962)] = 135795, - [SMALL_STATE(4963)] = 135808, - [SMALL_STATE(4964)] = 135821, - [SMALL_STATE(4965)] = 135834, - [SMALL_STATE(4966)] = 135847, - [SMALL_STATE(4967)] = 135860, - [SMALL_STATE(4968)] = 135873, - [SMALL_STATE(4969)] = 135886, - [SMALL_STATE(4970)] = 135899, - [SMALL_STATE(4971)] = 135912, - [SMALL_STATE(4972)] = 135925, - [SMALL_STATE(4973)] = 135938, - [SMALL_STATE(4974)] = 135951, - [SMALL_STATE(4975)] = 135964, - [SMALL_STATE(4976)] = 135977, - [SMALL_STATE(4977)] = 135990, - [SMALL_STATE(4978)] = 136003, - [SMALL_STATE(4979)] = 136016, - [SMALL_STATE(4980)] = 136029, - [SMALL_STATE(4981)] = 136042, - [SMALL_STATE(4982)] = 136055, - [SMALL_STATE(4983)] = 136068, - [SMALL_STATE(4984)] = 136081, - [SMALL_STATE(4985)] = 136094, - [SMALL_STATE(4986)] = 136107, - [SMALL_STATE(4987)] = 136120, - [SMALL_STATE(4988)] = 136133, - [SMALL_STATE(4989)] = 136146, - [SMALL_STATE(4990)] = 136157, - [SMALL_STATE(4991)] = 136170, - [SMALL_STATE(4992)] = 136183, - [SMALL_STATE(4993)] = 136196, - [SMALL_STATE(4994)] = 136209, - [SMALL_STATE(4995)] = 136222, - [SMALL_STATE(4996)] = 136235, - [SMALL_STATE(4997)] = 136248, - [SMALL_STATE(4998)] = 136261, - [SMALL_STATE(4999)] = 136272, - [SMALL_STATE(5000)] = 136285, - [SMALL_STATE(5001)] = 136296, - [SMALL_STATE(5002)] = 136307, - [SMALL_STATE(5003)] = 136320, - [SMALL_STATE(5004)] = 136333, - [SMALL_STATE(5005)] = 136346, - [SMALL_STATE(5006)] = 136357, - [SMALL_STATE(5007)] = 136370, - [SMALL_STATE(5008)] = 136383, - [SMALL_STATE(5009)] = 136396, - [SMALL_STATE(5010)] = 136409, - [SMALL_STATE(5011)] = 136422, - [SMALL_STATE(5012)] = 136435, - [SMALL_STATE(5013)] = 136446, - [SMALL_STATE(5014)] = 136459, - [SMALL_STATE(5015)] = 136472, - [SMALL_STATE(5016)] = 136485, - [SMALL_STATE(5017)] = 136498, - [SMALL_STATE(5018)] = 136511, - [SMALL_STATE(5019)] = 136524, - [SMALL_STATE(5020)] = 136537, - [SMALL_STATE(5021)] = 136550, - [SMALL_STATE(5022)] = 136563, - [SMALL_STATE(5023)] = 136576, - [SMALL_STATE(5024)] = 136589, - [SMALL_STATE(5025)] = 136602, - [SMALL_STATE(5026)] = 136615, - [SMALL_STATE(5027)] = 136628, - [SMALL_STATE(5028)] = 136641, - [SMALL_STATE(5029)] = 136654, - [SMALL_STATE(5030)] = 136667, - [SMALL_STATE(5031)] = 136680, - [SMALL_STATE(5032)] = 136693, - [SMALL_STATE(5033)] = 136706, - [SMALL_STATE(5034)] = 136719, - [SMALL_STATE(5035)] = 136732, - [SMALL_STATE(5036)] = 136743, - [SMALL_STATE(5037)] = 136756, - [SMALL_STATE(5038)] = 136769, - [SMALL_STATE(5039)] = 136782, - [SMALL_STATE(5040)] = 136795, - [SMALL_STATE(5041)] = 136808, - [SMALL_STATE(5042)] = 136821, - [SMALL_STATE(5043)] = 136834, - [SMALL_STATE(5044)] = 136847, - [SMALL_STATE(5045)] = 136860, - [SMALL_STATE(5046)] = 136873, - [SMALL_STATE(5047)] = 136886, - [SMALL_STATE(5048)] = 136899, - [SMALL_STATE(5049)] = 136912, - [SMALL_STATE(5050)] = 136925, - [SMALL_STATE(5051)] = 136938, - [SMALL_STATE(5052)] = 136951, - [SMALL_STATE(5053)] = 136964, - [SMALL_STATE(5054)] = 136977, - [SMALL_STATE(5055)] = 136990, - [SMALL_STATE(5056)] = 137003, - [SMALL_STATE(5057)] = 137016, - [SMALL_STATE(5058)] = 137029, - [SMALL_STATE(5059)] = 137042, - [SMALL_STATE(5060)] = 137055, - [SMALL_STATE(5061)] = 137068, - [SMALL_STATE(5062)] = 137081, - [SMALL_STATE(5063)] = 137092, - [SMALL_STATE(5064)] = 137105, - [SMALL_STATE(5065)] = 137118, - [SMALL_STATE(5066)] = 137131, - [SMALL_STATE(5067)] = 137144, - [SMALL_STATE(5068)] = 137157, - [SMALL_STATE(5069)] = 137170, - [SMALL_STATE(5070)] = 137183, - [SMALL_STATE(5071)] = 137196, - [SMALL_STATE(5072)] = 137209, - [SMALL_STATE(5073)] = 137222, - [SMALL_STATE(5074)] = 137235, - [SMALL_STATE(5075)] = 137248, - [SMALL_STATE(5076)] = 137261, - [SMALL_STATE(5077)] = 137274, - [SMALL_STATE(5078)] = 137287, - [SMALL_STATE(5079)] = 137300, - [SMALL_STATE(5080)] = 137313, - [SMALL_STATE(5081)] = 137326, - [SMALL_STATE(5082)] = 137339, - [SMALL_STATE(5083)] = 137352, - [SMALL_STATE(5084)] = 137365, - [SMALL_STATE(5085)] = 137378, - [SMALL_STATE(5086)] = 137391, - [SMALL_STATE(5087)] = 137404, - [SMALL_STATE(5088)] = 137417, - [SMALL_STATE(5089)] = 137428, - [SMALL_STATE(5090)] = 137441, - [SMALL_STATE(5091)] = 137454, - [SMALL_STATE(5092)] = 137467, - [SMALL_STATE(5093)] = 137480, - [SMALL_STATE(5094)] = 137493, - [SMALL_STATE(5095)] = 137506, - [SMALL_STATE(5096)] = 137519, - [SMALL_STATE(5097)] = 137530, - [SMALL_STATE(5098)] = 137543, - [SMALL_STATE(5099)] = 137553, - [SMALL_STATE(5100)] = 137563, - [SMALL_STATE(5101)] = 137573, - [SMALL_STATE(5102)] = 137583, - [SMALL_STATE(5103)] = 137593, - [SMALL_STATE(5104)] = 137603, - [SMALL_STATE(5105)] = 137613, - [SMALL_STATE(5106)] = 137623, - [SMALL_STATE(5107)] = 137633, - [SMALL_STATE(5108)] = 137643, - [SMALL_STATE(5109)] = 137653, - [SMALL_STATE(5110)] = 137663, - [SMALL_STATE(5111)] = 137673, - [SMALL_STATE(5112)] = 137683, - [SMALL_STATE(5113)] = 137693, - [SMALL_STATE(5114)] = 137703, - [SMALL_STATE(5115)] = 137713, - [SMALL_STATE(5116)] = 137723, - [SMALL_STATE(5117)] = 137733, - [SMALL_STATE(5118)] = 137743, - [SMALL_STATE(5119)] = 137753, - [SMALL_STATE(5120)] = 137763, - [SMALL_STATE(5121)] = 137773, - [SMALL_STATE(5122)] = 137783, - [SMALL_STATE(5123)] = 137793, - [SMALL_STATE(5124)] = 137803, - [SMALL_STATE(5125)] = 137813, - [SMALL_STATE(5126)] = 137823, - [SMALL_STATE(5127)] = 137833, - [SMALL_STATE(5128)] = 137843, - [SMALL_STATE(5129)] = 137853, - [SMALL_STATE(5130)] = 137863, - [SMALL_STATE(5131)] = 137873, - [SMALL_STATE(5132)] = 137883, - [SMALL_STATE(5133)] = 137893, - [SMALL_STATE(5134)] = 137903, - [SMALL_STATE(5135)] = 137913, - [SMALL_STATE(5136)] = 137923, - [SMALL_STATE(5137)] = 137933, - [SMALL_STATE(5138)] = 137943, - [SMALL_STATE(5139)] = 137953, - [SMALL_STATE(5140)] = 137963, - [SMALL_STATE(5141)] = 137973, - [SMALL_STATE(5142)] = 137983, - [SMALL_STATE(5143)] = 137993, - [SMALL_STATE(5144)] = 138003, - [SMALL_STATE(5145)] = 138013, - [SMALL_STATE(5146)] = 138023, - [SMALL_STATE(5147)] = 138033, - [SMALL_STATE(5148)] = 138043, - [SMALL_STATE(5149)] = 138053, - [SMALL_STATE(5150)] = 138063, - [SMALL_STATE(5151)] = 138073, - [SMALL_STATE(5152)] = 138083, - [SMALL_STATE(5153)] = 138093, - [SMALL_STATE(5154)] = 138103, - [SMALL_STATE(5155)] = 138113, - [SMALL_STATE(5156)] = 138123, - [SMALL_STATE(5157)] = 138133, - [SMALL_STATE(5158)] = 138143, - [SMALL_STATE(5159)] = 138153, - [SMALL_STATE(5160)] = 138163, - [SMALL_STATE(5161)] = 138173, - [SMALL_STATE(5162)] = 138183, - [SMALL_STATE(5163)] = 138193, - [SMALL_STATE(5164)] = 138203, - [SMALL_STATE(5165)] = 138213, - [SMALL_STATE(5166)] = 138223, - [SMALL_STATE(5167)] = 138233, - [SMALL_STATE(5168)] = 138243, - [SMALL_STATE(5169)] = 138253, - [SMALL_STATE(5170)] = 138263, - [SMALL_STATE(5171)] = 138273, - [SMALL_STATE(5172)] = 138283, - [SMALL_STATE(5173)] = 138293, - [SMALL_STATE(5174)] = 138303, - [SMALL_STATE(5175)] = 138313, - [SMALL_STATE(5176)] = 138323, - [SMALL_STATE(5177)] = 138333, - [SMALL_STATE(5178)] = 138343, - [SMALL_STATE(5179)] = 138353, - [SMALL_STATE(5180)] = 138363, - [SMALL_STATE(5181)] = 138373, - [SMALL_STATE(5182)] = 138383, - [SMALL_STATE(5183)] = 138393, - [SMALL_STATE(5184)] = 138403, - [SMALL_STATE(5185)] = 138413, - [SMALL_STATE(5186)] = 138423, - [SMALL_STATE(5187)] = 138433, - [SMALL_STATE(5188)] = 138443, - [SMALL_STATE(5189)] = 138453, - [SMALL_STATE(5190)] = 138463, - [SMALL_STATE(5191)] = 138473, - [SMALL_STATE(5192)] = 138483, - [SMALL_STATE(5193)] = 138493, - [SMALL_STATE(5194)] = 138503, - [SMALL_STATE(5195)] = 138513, - [SMALL_STATE(5196)] = 138523, - [SMALL_STATE(5197)] = 138533, - [SMALL_STATE(5198)] = 138543, - [SMALL_STATE(5199)] = 138553, - [SMALL_STATE(5200)] = 138563, - [SMALL_STATE(5201)] = 138573, - [SMALL_STATE(5202)] = 138583, - [SMALL_STATE(5203)] = 138593, - [SMALL_STATE(5204)] = 138603, - [SMALL_STATE(5205)] = 138613, - [SMALL_STATE(5206)] = 138623, - [SMALL_STATE(5207)] = 138633, - [SMALL_STATE(5208)] = 138643, - [SMALL_STATE(5209)] = 138653, - [SMALL_STATE(5210)] = 138663, - [SMALL_STATE(5211)] = 138673, - [SMALL_STATE(5212)] = 138683, - [SMALL_STATE(5213)] = 138693, - [SMALL_STATE(5214)] = 138703, - [SMALL_STATE(5215)] = 138713, - [SMALL_STATE(5216)] = 138723, - [SMALL_STATE(5217)] = 138733, - [SMALL_STATE(5218)] = 138743, - [SMALL_STATE(5219)] = 138753, - [SMALL_STATE(5220)] = 138763, - [SMALL_STATE(5221)] = 138773, - [SMALL_STATE(5222)] = 138783, - [SMALL_STATE(5223)] = 138793, - [SMALL_STATE(5224)] = 138803, - [SMALL_STATE(5225)] = 138813, - [SMALL_STATE(5226)] = 138823, - [SMALL_STATE(5227)] = 138833, - [SMALL_STATE(5228)] = 138843, - [SMALL_STATE(5229)] = 138853, - [SMALL_STATE(5230)] = 138863, - [SMALL_STATE(5231)] = 138873, - [SMALL_STATE(5232)] = 138883, - [SMALL_STATE(5233)] = 138893, - [SMALL_STATE(5234)] = 138903, - [SMALL_STATE(5235)] = 138913, - [SMALL_STATE(5236)] = 138923, - [SMALL_STATE(5237)] = 138933, - [SMALL_STATE(5238)] = 138943, - [SMALL_STATE(5239)] = 138953, - [SMALL_STATE(5240)] = 138963, - [SMALL_STATE(5241)] = 138973, - [SMALL_STATE(5242)] = 138983, - [SMALL_STATE(5243)] = 138993, - [SMALL_STATE(5244)] = 139003, - [SMALL_STATE(5245)] = 139013, - [SMALL_STATE(5246)] = 139023, - [SMALL_STATE(5247)] = 139033, - [SMALL_STATE(5248)] = 139043, - [SMALL_STATE(5249)] = 139053, - [SMALL_STATE(5250)] = 139063, - [SMALL_STATE(5251)] = 139073, - [SMALL_STATE(5252)] = 139083, - [SMALL_STATE(5253)] = 139093, - [SMALL_STATE(5254)] = 139103, - [SMALL_STATE(5255)] = 139113, - [SMALL_STATE(5256)] = 139123, - [SMALL_STATE(5257)] = 139133, - [SMALL_STATE(5258)] = 139143, - [SMALL_STATE(5259)] = 139153, - [SMALL_STATE(5260)] = 139163, - [SMALL_STATE(5261)] = 139173, - [SMALL_STATE(5262)] = 139183, - [SMALL_STATE(5263)] = 139193, - [SMALL_STATE(5264)] = 139203, - [SMALL_STATE(5265)] = 139213, - [SMALL_STATE(5266)] = 139223, - [SMALL_STATE(5267)] = 139233, - [SMALL_STATE(5268)] = 139243, - [SMALL_STATE(5269)] = 139253, - [SMALL_STATE(5270)] = 139263, - [SMALL_STATE(5271)] = 139273, - [SMALL_STATE(5272)] = 139283, - [SMALL_STATE(5273)] = 139293, - [SMALL_STATE(5274)] = 139303, - [SMALL_STATE(5275)] = 139313, - [SMALL_STATE(5276)] = 139323, - [SMALL_STATE(5277)] = 139333, - [SMALL_STATE(5278)] = 139343, - [SMALL_STATE(5279)] = 139353, - [SMALL_STATE(5280)] = 139363, - [SMALL_STATE(5281)] = 139373, - [SMALL_STATE(5282)] = 139383, - [SMALL_STATE(5283)] = 139393, - [SMALL_STATE(5284)] = 139403, - [SMALL_STATE(5285)] = 139413, - [SMALL_STATE(5286)] = 139423, - [SMALL_STATE(5287)] = 139433, - [SMALL_STATE(5288)] = 139443, - [SMALL_STATE(5289)] = 139453, - [SMALL_STATE(5290)] = 139463, - [SMALL_STATE(5291)] = 139473, - [SMALL_STATE(5292)] = 139483, - [SMALL_STATE(5293)] = 139493, - [SMALL_STATE(5294)] = 139503, - [SMALL_STATE(5295)] = 139513, - [SMALL_STATE(5296)] = 139523, - [SMALL_STATE(5297)] = 139533, - [SMALL_STATE(5298)] = 139543, - [SMALL_STATE(5299)] = 139553, - [SMALL_STATE(5300)] = 139563, - [SMALL_STATE(5301)] = 139573, - [SMALL_STATE(5302)] = 139583, - [SMALL_STATE(5303)] = 139593, - [SMALL_STATE(5304)] = 139603, - [SMALL_STATE(5305)] = 139613, - [SMALL_STATE(5306)] = 139623, - [SMALL_STATE(5307)] = 139633, - [SMALL_STATE(5308)] = 139643, - [SMALL_STATE(5309)] = 139653, - [SMALL_STATE(5310)] = 139663, - [SMALL_STATE(5311)] = 139673, - [SMALL_STATE(5312)] = 139683, - [SMALL_STATE(5313)] = 139693, - [SMALL_STATE(5314)] = 139703, - [SMALL_STATE(5315)] = 139713, - [SMALL_STATE(5316)] = 139723, - [SMALL_STATE(5317)] = 139733, - [SMALL_STATE(5318)] = 139743, - [SMALL_STATE(5319)] = 139753, - [SMALL_STATE(5320)] = 139763, - [SMALL_STATE(5321)] = 139773, - [SMALL_STATE(5322)] = 139783, - [SMALL_STATE(5323)] = 139793, - [SMALL_STATE(5324)] = 139803, - [SMALL_STATE(5325)] = 139813, - [SMALL_STATE(5326)] = 139823, - [SMALL_STATE(5327)] = 139833, - [SMALL_STATE(5328)] = 139843, - [SMALL_STATE(5329)] = 139853, - [SMALL_STATE(5330)] = 139863, - [SMALL_STATE(5331)] = 139873, - [SMALL_STATE(5332)] = 139883, - [SMALL_STATE(5333)] = 139893, - [SMALL_STATE(5334)] = 139903, - [SMALL_STATE(5335)] = 139913, - [SMALL_STATE(5336)] = 139923, - [SMALL_STATE(5337)] = 139933, - [SMALL_STATE(5338)] = 139943, - [SMALL_STATE(5339)] = 139953, - [SMALL_STATE(5340)] = 139963, - [SMALL_STATE(5341)] = 139973, - [SMALL_STATE(5342)] = 139983, - [SMALL_STATE(5343)] = 139993, - [SMALL_STATE(5344)] = 140003, - [SMALL_STATE(5345)] = 140013, - [SMALL_STATE(5346)] = 140023, - [SMALL_STATE(5347)] = 140033, - [SMALL_STATE(5348)] = 140043, - [SMALL_STATE(5349)] = 140053, - [SMALL_STATE(5350)] = 140063, - [SMALL_STATE(5351)] = 140073, - [SMALL_STATE(5352)] = 140083, - [SMALL_STATE(5353)] = 140093, - [SMALL_STATE(5354)] = 140103, - [SMALL_STATE(5355)] = 140113, - [SMALL_STATE(5356)] = 140123, - [SMALL_STATE(5357)] = 140133, - [SMALL_STATE(5358)] = 140143, - [SMALL_STATE(5359)] = 140153, - [SMALL_STATE(5360)] = 140163, - [SMALL_STATE(5361)] = 140173, - [SMALL_STATE(5362)] = 140183, - [SMALL_STATE(5363)] = 140193, - [SMALL_STATE(5364)] = 140203, - [SMALL_STATE(5365)] = 140213, - [SMALL_STATE(5366)] = 140223, - [SMALL_STATE(5367)] = 140233, - [SMALL_STATE(5368)] = 140243, - [SMALL_STATE(5369)] = 140253, - [SMALL_STATE(5370)] = 140263, - [SMALL_STATE(5371)] = 140273, - [SMALL_STATE(5372)] = 140283, - [SMALL_STATE(5373)] = 140293, - [SMALL_STATE(5374)] = 140303, - [SMALL_STATE(5375)] = 140313, - [SMALL_STATE(5376)] = 140323, - [SMALL_STATE(5377)] = 140333, - [SMALL_STATE(5378)] = 140343, - [SMALL_STATE(5379)] = 140353, - [SMALL_STATE(5380)] = 140363, - [SMALL_STATE(5381)] = 140373, - [SMALL_STATE(5382)] = 140383, - [SMALL_STATE(5383)] = 140393, - [SMALL_STATE(5384)] = 140403, - [SMALL_STATE(5385)] = 140413, - [SMALL_STATE(5386)] = 140423, - [SMALL_STATE(5387)] = 140433, - [SMALL_STATE(5388)] = 140443, - [SMALL_STATE(5389)] = 140453, - [SMALL_STATE(5390)] = 140463, - [SMALL_STATE(5391)] = 140473, - [SMALL_STATE(5392)] = 140483, - [SMALL_STATE(5393)] = 140493, - [SMALL_STATE(5394)] = 140503, - [SMALL_STATE(5395)] = 140513, - [SMALL_STATE(5396)] = 140523, - [SMALL_STATE(5397)] = 140533, - [SMALL_STATE(5398)] = 140543, - [SMALL_STATE(5399)] = 140553, - [SMALL_STATE(5400)] = 140563, - [SMALL_STATE(5401)] = 140573, - [SMALL_STATE(5402)] = 140583, - [SMALL_STATE(5403)] = 140593, - [SMALL_STATE(5404)] = 140603, - [SMALL_STATE(5405)] = 140613, - [SMALL_STATE(5406)] = 140623, - [SMALL_STATE(5407)] = 140633, - [SMALL_STATE(5408)] = 140643, - [SMALL_STATE(5409)] = 140653, - [SMALL_STATE(5410)] = 140663, - [SMALL_STATE(5411)] = 140673, - [SMALL_STATE(5412)] = 140683, - [SMALL_STATE(5413)] = 140693, - [SMALL_STATE(5414)] = 140703, - [SMALL_STATE(5415)] = 140713, - [SMALL_STATE(5416)] = 140723, - [SMALL_STATE(5417)] = 140733, - [SMALL_STATE(5418)] = 140743, - [SMALL_STATE(5419)] = 140753, - [SMALL_STATE(5420)] = 140763, - [SMALL_STATE(5421)] = 140773, - [SMALL_STATE(5422)] = 140783, - [SMALL_STATE(5423)] = 140793, - [SMALL_STATE(5424)] = 140803, - [SMALL_STATE(5425)] = 140813, - [SMALL_STATE(5426)] = 140823, - [SMALL_STATE(5427)] = 140833, - [SMALL_STATE(5428)] = 140843, - [SMALL_STATE(5429)] = 140853, - [SMALL_STATE(5430)] = 140863, - [SMALL_STATE(5431)] = 140873, - [SMALL_STATE(5432)] = 140883, - [SMALL_STATE(5433)] = 140893, - [SMALL_STATE(5434)] = 140903, - [SMALL_STATE(5435)] = 140913, - [SMALL_STATE(5436)] = 140923, - [SMALL_STATE(5437)] = 140933, - [SMALL_STATE(5438)] = 140943, - [SMALL_STATE(5439)] = 140953, - [SMALL_STATE(5440)] = 140963, - [SMALL_STATE(5441)] = 140973, - [SMALL_STATE(5442)] = 140983, - [SMALL_STATE(5443)] = 140993, - [SMALL_STATE(5444)] = 141003, - [SMALL_STATE(5445)] = 141013, - [SMALL_STATE(5446)] = 141023, - [SMALL_STATE(5447)] = 141033, - [SMALL_STATE(5448)] = 141043, - [SMALL_STATE(5449)] = 141053, - [SMALL_STATE(5450)] = 141063, - [SMALL_STATE(5451)] = 141073, - [SMALL_STATE(5452)] = 141083, - [SMALL_STATE(5453)] = 141093, - [SMALL_STATE(5454)] = 141103, - [SMALL_STATE(5455)] = 141113, - [SMALL_STATE(5456)] = 141123, - [SMALL_STATE(5457)] = 141133, - [SMALL_STATE(5458)] = 141143, - [SMALL_STATE(5459)] = 141153, - [SMALL_STATE(5460)] = 141163, - [SMALL_STATE(5461)] = 141173, - [SMALL_STATE(5462)] = 141183, - [SMALL_STATE(5463)] = 141193, - [SMALL_STATE(5464)] = 141203, - [SMALL_STATE(5465)] = 141213, - [SMALL_STATE(5466)] = 141223, - [SMALL_STATE(5467)] = 141233, - [SMALL_STATE(5468)] = 141243, - [SMALL_STATE(5469)] = 141253, - [SMALL_STATE(5470)] = 141263, - [SMALL_STATE(5471)] = 141273, - [SMALL_STATE(5472)] = 141283, - [SMALL_STATE(5473)] = 141293, - [SMALL_STATE(5474)] = 141303, - [SMALL_STATE(5475)] = 141313, - [SMALL_STATE(5476)] = 141323, - [SMALL_STATE(5477)] = 141333, - [SMALL_STATE(5478)] = 141343, - [SMALL_STATE(5479)] = 141353, - [SMALL_STATE(5480)] = 141363, - [SMALL_STATE(5481)] = 141373, - [SMALL_STATE(5482)] = 141383, - [SMALL_STATE(5483)] = 141393, - [SMALL_STATE(5484)] = 141403, - [SMALL_STATE(5485)] = 141413, - [SMALL_STATE(5486)] = 141423, - [SMALL_STATE(5487)] = 141433, - [SMALL_STATE(5488)] = 141443, - [SMALL_STATE(5489)] = 141453, - [SMALL_STATE(5490)] = 141463, - [SMALL_STATE(5491)] = 141473, - [SMALL_STATE(5492)] = 141483, - [SMALL_STATE(5493)] = 141493, - [SMALL_STATE(5494)] = 141503, - [SMALL_STATE(5495)] = 141513, - [SMALL_STATE(5496)] = 141523, - [SMALL_STATE(5497)] = 141533, - [SMALL_STATE(5498)] = 141543, - [SMALL_STATE(5499)] = 141553, - [SMALL_STATE(5500)] = 141563, - [SMALL_STATE(5501)] = 141573, - [SMALL_STATE(5502)] = 141583, - [SMALL_STATE(5503)] = 141593, - [SMALL_STATE(5504)] = 141603, - [SMALL_STATE(5505)] = 141613, - [SMALL_STATE(5506)] = 141623, - [SMALL_STATE(5507)] = 141633, - [SMALL_STATE(5508)] = 141643, - [SMALL_STATE(5509)] = 141653, - [SMALL_STATE(5510)] = 141663, - [SMALL_STATE(5511)] = 141673, - [SMALL_STATE(5512)] = 141683, - [SMALL_STATE(5513)] = 141693, - [SMALL_STATE(5514)] = 141703, - [SMALL_STATE(5515)] = 141713, - [SMALL_STATE(5516)] = 141723, - [SMALL_STATE(5517)] = 141733, - [SMALL_STATE(5518)] = 141743, - [SMALL_STATE(5519)] = 141753, - [SMALL_STATE(5520)] = 141763, - [SMALL_STATE(5521)] = 141773, - [SMALL_STATE(5522)] = 141783, - [SMALL_STATE(5523)] = 141793, - [SMALL_STATE(5524)] = 141803, - [SMALL_STATE(5525)] = 141813, - [SMALL_STATE(5526)] = 141823, - [SMALL_STATE(5527)] = 141833, - [SMALL_STATE(5528)] = 141843, - [SMALL_STATE(5529)] = 141853, + [SMALL_STATE(3307)] = 101824, + [SMALL_STATE(3308)] = 101846, + [SMALL_STATE(3309)] = 101868, + [SMALL_STATE(3310)] = 101892, + [SMALL_STATE(3311)] = 101938, + [SMALL_STATE(3312)] = 101962, + [SMALL_STATE(3313)] = 101986, + [SMALL_STATE(3314)] = 102010, + [SMALL_STATE(3315)] = 102034, + [SMALL_STATE(3316)] = 102074, + [SMALL_STATE(3317)] = 102114, + [SMALL_STATE(3318)] = 102138, + [SMALL_STATE(3319)] = 102162, + [SMALL_STATE(3320)] = 102184, + [SMALL_STATE(3321)] = 102208, + [SMALL_STATE(3322)] = 102230, + [SMALL_STATE(3323)] = 102254, + [SMALL_STATE(3324)] = 102278, + [SMALL_STATE(3325)] = 102302, + [SMALL_STATE(3326)] = 102326, + [SMALL_STATE(3327)] = 102368, + [SMALL_STATE(3328)] = 102392, + [SMALL_STATE(3329)] = 102416, + [SMALL_STATE(3330)] = 102440, + [SMALL_STATE(3331)] = 102464, + [SMALL_STATE(3332)] = 102486, + [SMALL_STATE(3333)] = 102510, + [SMALL_STATE(3334)] = 102534, + [SMALL_STATE(3335)] = 102556, + [SMALL_STATE(3336)] = 102580, + [SMALL_STATE(3337)] = 102604, + [SMALL_STATE(3338)] = 102638, + [SMALL_STATE(3339)] = 102662, + [SMALL_STATE(3340)] = 102708, + [SMALL_STATE(3341)] = 102754, + [SMALL_STATE(3342)] = 102778, + [SMALL_STATE(3343)] = 102800, + [SMALL_STATE(3344)] = 102822, + [SMALL_STATE(3345)] = 102846, + [SMALL_STATE(3346)] = 102870, + [SMALL_STATE(3347)] = 102894, + [SMALL_STATE(3348)] = 102916, + [SMALL_STATE(3349)] = 102962, + [SMALL_STATE(3350)] = 102986, + [SMALL_STATE(3351)] = 103010, + [SMALL_STATE(3352)] = 103034, + [SMALL_STATE(3353)] = 103070, + [SMALL_STATE(3354)] = 103094, + [SMALL_STATE(3355)] = 103120, + [SMALL_STATE(3356)] = 103144, + [SMALL_STATE(3357)] = 103184, + [SMALL_STATE(3358)] = 103208, + [SMALL_STATE(3359)] = 103232, + [SMALL_STATE(3360)] = 103256, + [SMALL_STATE(3361)] = 103280, + [SMALL_STATE(3362)] = 103326, + [SMALL_STATE(3363)] = 103350, + [SMALL_STATE(3364)] = 103372, + [SMALL_STATE(3365)] = 103396, + [SMALL_STATE(3366)] = 103420, + [SMALL_STATE(3367)] = 103444, + [SMALL_STATE(3368)] = 103468, + [SMALL_STATE(3369)] = 103508, + [SMALL_STATE(3370)] = 103530, + [SMALL_STATE(3371)] = 103572, + [SMALL_STATE(3372)] = 103594, + [SMALL_STATE(3373)] = 103618, + [SMALL_STATE(3374)] = 103642, + [SMALL_STATE(3375)] = 103688, + [SMALL_STATE(3376)] = 103722, + [SMALL_STATE(3377)] = 103750, + [SMALL_STATE(3378)] = 103778, + [SMALL_STATE(3379)] = 103806, + [SMALL_STATE(3380)] = 103834, + [SMALL_STATE(3381)] = 103862, + [SMALL_STATE(3382)] = 103890, + [SMALL_STATE(3383)] = 103918, + [SMALL_STATE(3384)] = 103946, + [SMALL_STATE(3385)] = 103974, + [SMALL_STATE(3386)] = 104002, + [SMALL_STATE(3387)] = 104030, + [SMALL_STATE(3388)] = 104058, + [SMALL_STATE(3389)] = 104082, + [SMALL_STATE(3390)] = 104128, + [SMALL_STATE(3391)] = 104162, + [SMALL_STATE(3392)] = 104184, + [SMALL_STATE(3393)] = 104218, + [SMALL_STATE(3394)] = 104258, + [SMALL_STATE(3395)] = 104280, + [SMALL_STATE(3396)] = 104304, + [SMALL_STATE(3397)] = 104328, + [SMALL_STATE(3398)] = 104352, + [SMALL_STATE(3399)] = 104376, + [SMALL_STATE(3400)] = 104402, + [SMALL_STATE(3401)] = 104448, + [SMALL_STATE(3402)] = 104470, + [SMALL_STATE(3403)] = 104494, + [SMALL_STATE(3404)] = 104516, + [SMALL_STATE(3405)] = 104538, + [SMALL_STATE(3406)] = 104560, + [SMALL_STATE(3407)] = 104582, + [SMALL_STATE(3408)] = 104606, + [SMALL_STATE(3409)] = 104630, + [SMALL_STATE(3410)] = 104654, + [SMALL_STATE(3411)] = 104678, + [SMALL_STATE(3412)] = 104700, + [SMALL_STATE(3413)] = 104722, + [SMALL_STATE(3414)] = 104746, + [SMALL_STATE(3415)] = 104768, + [SMALL_STATE(3416)] = 104790, + [SMALL_STATE(3417)] = 104814, + [SMALL_STATE(3418)] = 104838, + [SMALL_STATE(3419)] = 104862, + [SMALL_STATE(3420)] = 104883, + [SMALL_STATE(3421)] = 104904, + [SMALL_STATE(3422)] = 104943, + [SMALL_STATE(3423)] = 104964, + [SMALL_STATE(3424)] = 104987, + [SMALL_STATE(3425)] = 105010, + [SMALL_STATE(3426)] = 105031, + [SMALL_STATE(3427)] = 105052, + [SMALL_STATE(3428)] = 105073, + [SMALL_STATE(3429)] = 105112, + [SMALL_STATE(3430)] = 105149, + [SMALL_STATE(3431)] = 105186, + [SMALL_STATE(3432)] = 105223, + [SMALL_STATE(3433)] = 105262, + [SMALL_STATE(3434)] = 105285, + [SMALL_STATE(3435)] = 105308, + [SMALL_STATE(3436)] = 105329, + [SMALL_STATE(3437)] = 105356, + [SMALL_STATE(3438)] = 105377, + [SMALL_STATE(3439)] = 105398, + [SMALL_STATE(3440)] = 105425, + [SMALL_STATE(3441)] = 105446, + [SMALL_STATE(3442)] = 105467, + [SMALL_STATE(3443)] = 105488, + [SMALL_STATE(3444)] = 105509, + [SMALL_STATE(3445)] = 105548, + [SMALL_STATE(3446)] = 105575, + [SMALL_STATE(3447)] = 105596, + [SMALL_STATE(3448)] = 105623, + [SMALL_STATE(3449)] = 105648, + [SMALL_STATE(3450)] = 105675, + [SMALL_STATE(3451)] = 105698, + [SMALL_STATE(3452)] = 105735, + [SMALL_STATE(3453)] = 105772, + [SMALL_STATE(3454)] = 105809, + [SMALL_STATE(3455)] = 105846, + [SMALL_STATE(3456)] = 105873, + [SMALL_STATE(3457)] = 105894, + [SMALL_STATE(3458)] = 105915, + [SMALL_STATE(3459)] = 105936, + [SMALL_STATE(3460)] = 105957, + [SMALL_STATE(3461)] = 105978, + [SMALL_STATE(3462)] = 106017, + [SMALL_STATE(3463)] = 106040, + [SMALL_STATE(3464)] = 106063, + [SMALL_STATE(3465)] = 106084, + [SMALL_STATE(3466)] = 106105, + [SMALL_STATE(3467)] = 106126, + [SMALL_STATE(3468)] = 106147, + [SMALL_STATE(3469)] = 106170, + [SMALL_STATE(3470)] = 106191, + [SMALL_STATE(3471)] = 106212, + [SMALL_STATE(3472)] = 106233, + [SMALL_STATE(3473)] = 106254, + [SMALL_STATE(3474)] = 106285, + [SMALL_STATE(3475)] = 106324, + [SMALL_STATE(3476)] = 106347, + [SMALL_STATE(3477)] = 106368, + [SMALL_STATE(3478)] = 106389, + [SMALL_STATE(3479)] = 106410, + [SMALL_STATE(3480)] = 106431, + [SMALL_STATE(3481)] = 106468, + [SMALL_STATE(3482)] = 106489, + [SMALL_STATE(3483)] = 106510, + [SMALL_STATE(3484)] = 106531, + [SMALL_STATE(3485)] = 106552, + [SMALL_STATE(3486)] = 106573, + [SMALL_STATE(3487)] = 106596, + [SMALL_STATE(3488)] = 106619, + [SMALL_STATE(3489)] = 106642, + [SMALL_STATE(3490)] = 106665, + [SMALL_STATE(3491)] = 106688, + [SMALL_STATE(3492)] = 106709, + [SMALL_STATE(3493)] = 106732, + [SMALL_STATE(3494)] = 106755, + [SMALL_STATE(3495)] = 106778, + [SMALL_STATE(3496)] = 106801, + [SMALL_STATE(3497)] = 106838, + [SMALL_STATE(3498)] = 106875, + [SMALL_STATE(3499)] = 106912, + [SMALL_STATE(3500)] = 106935, + [SMALL_STATE(3501)] = 106958, + [SMALL_STATE(3502)] = 106981, + [SMALL_STATE(3503)] = 107004, + [SMALL_STATE(3504)] = 107027, + [SMALL_STATE(3505)] = 107050, + [SMALL_STATE(3506)] = 107073, + [SMALL_STATE(3507)] = 107096, + [SMALL_STATE(3508)] = 107123, + [SMALL_STATE(3509)] = 107144, + [SMALL_STATE(3510)] = 107165, + [SMALL_STATE(3511)] = 107186, + [SMALL_STATE(3512)] = 107207, + [SMALL_STATE(3513)] = 107228, + [SMALL_STATE(3514)] = 107249, + [SMALL_STATE(3515)] = 107276, + [SMALL_STATE(3516)] = 107303, + [SMALL_STATE(3517)] = 107324, + [SMALL_STATE(3518)] = 107345, + [SMALL_STATE(3519)] = 107372, + [SMALL_STATE(3520)] = 107393, + [SMALL_STATE(3521)] = 107414, + [SMALL_STATE(3522)] = 107435, + [SMALL_STATE(3523)] = 107456, + [SMALL_STATE(3524)] = 107477, + [SMALL_STATE(3525)] = 107498, + [SMALL_STATE(3526)] = 107521, + [SMALL_STATE(3527)] = 107542, + [SMALL_STATE(3528)] = 107563, + [SMALL_STATE(3529)] = 107584, + [SMALL_STATE(3530)] = 107607, + [SMALL_STATE(3531)] = 107628, + [SMALL_STATE(3532)] = 107649, + [SMALL_STATE(3533)] = 107672, + [SMALL_STATE(3534)] = 107693, + [SMALL_STATE(3535)] = 107716, + [SMALL_STATE(3536)] = 107737, + [SMALL_STATE(3537)] = 107758, + [SMALL_STATE(3538)] = 107779, + [SMALL_STATE(3539)] = 107800, + [SMALL_STATE(3540)] = 107821, + [SMALL_STATE(3541)] = 107842, + [SMALL_STATE(3542)] = 107865, + [SMALL_STATE(3543)] = 107886, + [SMALL_STATE(3544)] = 107907, + [SMALL_STATE(3545)] = 107928, + [SMALL_STATE(3546)] = 107949, + [SMALL_STATE(3547)] = 107986, + [SMALL_STATE(3548)] = 108009, + [SMALL_STATE(3549)] = 108032, + [SMALL_STATE(3550)] = 108053, + [SMALL_STATE(3551)] = 108074, + [SMALL_STATE(3552)] = 108095, + [SMALL_STATE(3553)] = 108118, + [SMALL_STATE(3554)] = 108141, + [SMALL_STATE(3555)] = 108162, + [SMALL_STATE(3556)] = 108185, + [SMALL_STATE(3557)] = 108212, + [SMALL_STATE(3558)] = 108235, + [SMALL_STATE(3559)] = 108262, + [SMALL_STATE(3560)] = 108289, + [SMALL_STATE(3561)] = 108316, + [SMALL_STATE(3562)] = 108343, + [SMALL_STATE(3563)] = 108370, + [SMALL_STATE(3564)] = 108397, + [SMALL_STATE(3565)] = 108424, + [SMALL_STATE(3566)] = 108451, + [SMALL_STATE(3567)] = 108478, + [SMALL_STATE(3568)] = 108505, + [SMALL_STATE(3569)] = 108532, + [SMALL_STATE(3570)] = 108553, + [SMALL_STATE(3571)] = 108574, + [SMALL_STATE(3572)] = 108597, + [SMALL_STATE(3573)] = 108618, + [SMALL_STATE(3574)] = 108639, + [SMALL_STATE(3575)] = 108660, + [SMALL_STATE(3576)] = 108681, + [SMALL_STATE(3577)] = 108720, + [SMALL_STATE(3578)] = 108741, + [SMALL_STATE(3579)] = 108762, + [SMALL_STATE(3580)] = 108783, + [SMALL_STATE(3581)] = 108804, + [SMALL_STATE(3582)] = 108825, + [SMALL_STATE(3583)] = 108846, + [SMALL_STATE(3584)] = 108867, + [SMALL_STATE(3585)] = 108888, + [SMALL_STATE(3586)] = 108909, + [SMALL_STATE(3587)] = 108930, + [SMALL_STATE(3588)] = 108951, + [SMALL_STATE(3589)] = 108972, + [SMALL_STATE(3590)] = 108993, + [SMALL_STATE(3591)] = 109030, + [SMALL_STATE(3592)] = 109053, + [SMALL_STATE(3593)] = 109074, + [SMALL_STATE(3594)] = 109095, + [SMALL_STATE(3595)] = 109116, + [SMALL_STATE(3596)] = 109139, + [SMALL_STATE(3597)] = 109160, + [SMALL_STATE(3598)] = 109181, + [SMALL_STATE(3599)] = 109202, + [SMALL_STATE(3600)] = 109223, + [SMALL_STATE(3601)] = 109244, + [SMALL_STATE(3602)] = 109265, + [SMALL_STATE(3603)] = 109292, + [SMALL_STATE(3604)] = 109313, + [SMALL_STATE(3605)] = 109334, + [SMALL_STATE(3606)] = 109363, + [SMALL_STATE(3607)] = 109386, + [SMALL_STATE(3608)] = 109409, + [SMALL_STATE(3609)] = 109430, + [SMALL_STATE(3610)] = 109453, + [SMALL_STATE(3611)] = 109479, + [SMALL_STATE(3612)] = 109515, + [SMALL_STATE(3613)] = 109539, + [SMALL_STATE(3614)] = 109565, + [SMALL_STATE(3615)] = 109597, + [SMALL_STATE(3616)] = 109621, + [SMALL_STATE(3617)] = 109645, + [SMALL_STATE(3618)] = 109669, + [SMALL_STATE(3619)] = 109693, + [SMALL_STATE(3620)] = 109729, + [SMALL_STATE(3621)] = 109761, + [SMALL_STATE(3622)] = 109785, + [SMALL_STATE(3623)] = 109817, + [SMALL_STATE(3624)] = 109843, + [SMALL_STATE(3625)] = 109867, + [SMALL_STATE(3626)] = 109903, + [SMALL_STATE(3627)] = 109935, + [SMALL_STATE(3628)] = 109969, + [SMALL_STATE(3629)] = 110003, + [SMALL_STATE(3630)] = 110029, + [SMALL_STATE(3631)] = 110055, + [SMALL_STATE(3632)] = 110089, + [SMALL_STATE(3633)] = 110111, + [SMALL_STATE(3634)] = 110147, + [SMALL_STATE(3635)] = 110175, + [SMALL_STATE(3636)] = 110201, + [SMALL_STATE(3637)] = 110227, + [SMALL_STATE(3638)] = 110251, + [SMALL_STATE(3639)] = 110281, + [SMALL_STATE(3640)] = 110313, + [SMALL_STATE(3641)] = 110339, + [SMALL_STATE(3642)] = 110361, + [SMALL_STATE(3643)] = 110385, + [SMALL_STATE(3644)] = 110407, + [SMALL_STATE(3645)] = 110433, + [SMALL_STATE(3646)] = 110459, + [SMALL_STATE(3647)] = 110483, + [SMALL_STATE(3648)] = 110509, + [SMALL_STATE(3649)] = 110531, + [SMALL_STATE(3650)] = 110553, + [SMALL_STATE(3651)] = 110575, + [SMALL_STATE(3652)] = 110597, + [SMALL_STATE(3653)] = 110619, + [SMALL_STATE(3654)] = 110649, + [SMALL_STATE(3655)] = 110675, + [SMALL_STATE(3656)] = 110701, + [SMALL_STATE(3657)] = 110734, + [SMALL_STATE(3658)] = 110755, + [SMALL_STATE(3659)] = 110776, + [SMALL_STATE(3660)] = 110809, + [SMALL_STATE(3661)] = 110842, + [SMALL_STATE(3662)] = 110873, + [SMALL_STATE(3663)] = 110894, + [SMALL_STATE(3664)] = 110915, + [SMALL_STATE(3665)] = 110940, + [SMALL_STATE(3666)] = 110973, + [SMALL_STATE(3667)] = 111006, + [SMALL_STATE(3668)] = 111037, + [SMALL_STATE(3669)] = 111068, + [SMALL_STATE(3670)] = 111099, + [SMALL_STATE(3671)] = 111130, + [SMALL_STATE(3672)] = 111163, + [SMALL_STATE(3673)] = 111196, + [SMALL_STATE(3674)] = 111227, + [SMALL_STATE(3675)] = 111256, + [SMALL_STATE(3676)] = 111277, + [SMALL_STATE(3677)] = 111310, + [SMALL_STATE(3678)] = 111343, + [SMALL_STATE(3679)] = 111374, + [SMALL_STATE(3680)] = 111407, + [SMALL_STATE(3681)] = 111440, + [SMALL_STATE(3682)] = 111471, + [SMALL_STATE(3683)] = 111492, + [SMALL_STATE(3684)] = 111525, + [SMALL_STATE(3685)] = 111558, + [SMALL_STATE(3686)] = 111589, + [SMALL_STATE(3687)] = 111622, + [SMALL_STATE(3688)] = 111655, + [SMALL_STATE(3689)] = 111688, + [SMALL_STATE(3690)] = 111719, + [SMALL_STATE(3691)] = 111752, + [SMALL_STATE(3692)] = 111785, + [SMALL_STATE(3693)] = 111816, + [SMALL_STATE(3694)] = 111849, + [SMALL_STATE(3695)] = 111882, + [SMALL_STATE(3696)] = 111913, + [SMALL_STATE(3697)] = 111934, + [SMALL_STATE(3698)] = 111967, + [SMALL_STATE(3699)] = 111998, + [SMALL_STATE(3700)] = 112031, + [SMALL_STATE(3701)] = 112064, + [SMALL_STATE(3702)] = 112095, + [SMALL_STATE(3703)] = 112126, + [SMALL_STATE(3704)] = 112157, + [SMALL_STATE(3705)] = 112182, + [SMALL_STATE(3706)] = 112213, + [SMALL_STATE(3707)] = 112244, + [SMALL_STATE(3708)] = 112275, + [SMALL_STATE(3709)] = 112306, + [SMALL_STATE(3710)] = 112337, + [SMALL_STATE(3711)] = 112370, + [SMALL_STATE(3712)] = 112403, + [SMALL_STATE(3713)] = 112436, + [SMALL_STATE(3714)] = 112471, + [SMALL_STATE(3715)] = 112502, + [SMALL_STATE(3716)] = 112533, + [SMALL_STATE(3717)] = 112556, + [SMALL_STATE(3718)] = 112587, + [SMALL_STATE(3719)] = 112612, + [SMALL_STATE(3720)] = 112637, + [SMALL_STATE(3721)] = 112670, + [SMALL_STATE(3722)] = 112693, + [SMALL_STATE(3723)] = 112726, + [SMALL_STATE(3724)] = 112759, + [SMALL_STATE(3725)] = 112784, + [SMALL_STATE(3726)] = 112809, + [SMALL_STATE(3727)] = 112842, + [SMALL_STATE(3728)] = 112863, + [SMALL_STATE(3729)] = 112884, + [SMALL_STATE(3730)] = 112917, + [SMALL_STATE(3731)] = 112950, + [SMALL_STATE(3732)] = 112973, + [SMALL_STATE(3733)] = 113004, + [SMALL_STATE(3734)] = 113025, + [SMALL_STATE(3735)] = 113048, + [SMALL_STATE(3736)] = 113071, + [SMALL_STATE(3737)] = 113104, + [SMALL_STATE(3738)] = 113127, + [SMALL_STATE(3739)] = 113148, + [SMALL_STATE(3740)] = 113171, + [SMALL_STATE(3741)] = 113192, + [SMALL_STATE(3742)] = 113217, + [SMALL_STATE(3743)] = 113250, + [SMALL_STATE(3744)] = 113271, + [SMALL_STATE(3745)] = 113304, + [SMALL_STATE(3746)] = 113337, + [SMALL_STATE(3747)] = 113372, + [SMALL_STATE(3748)] = 113397, + [SMALL_STATE(3749)] = 113428, + [SMALL_STATE(3750)] = 113456, + [SMALL_STATE(3751)] = 113484, + [SMALL_STATE(3752)] = 113512, + [SMALL_STATE(3753)] = 113534, + [SMALL_STATE(3754)] = 113562, + [SMALL_STATE(3755)] = 113590, + [SMALL_STATE(3756)] = 113618, + [SMALL_STATE(3757)] = 113646, + [SMALL_STATE(3758)] = 113674, + [SMALL_STATE(3759)] = 113702, + [SMALL_STATE(3760)] = 113730, + [SMALL_STATE(3761)] = 113758, + [SMALL_STATE(3762)] = 113786, + [SMALL_STATE(3763)] = 113812, + [SMALL_STATE(3764)] = 113840, + [SMALL_STATE(3765)] = 113864, + [SMALL_STATE(3766)] = 113892, + [SMALL_STATE(3767)] = 113920, + [SMALL_STATE(3768)] = 113948, + [SMALL_STATE(3769)] = 113968, + [SMALL_STATE(3770)] = 113996, + [SMALL_STATE(3771)] = 114024, + [SMALL_STATE(3772)] = 114048, + [SMALL_STATE(3773)] = 114076, + [SMALL_STATE(3774)] = 114098, + [SMALL_STATE(3775)] = 114126, + [SMALL_STATE(3776)] = 114154, + [SMALL_STATE(3777)] = 114174, + [SMALL_STATE(3778)] = 114202, + [SMALL_STATE(3779)] = 114230, + [SMALL_STATE(3780)] = 114258, + [SMALL_STATE(3781)] = 114282, + [SMALL_STATE(3782)] = 114302, + [SMALL_STATE(3783)] = 114324, + [SMALL_STATE(3784)] = 114342, + [SMALL_STATE(3785)] = 114370, + [SMALL_STATE(3786)] = 114398, + [SMALL_STATE(3787)] = 114418, + [SMALL_STATE(3788)] = 114440, + [SMALL_STATE(3789)] = 114468, + [SMALL_STATE(3790)] = 114498, + [SMALL_STATE(3791)] = 114518, + [SMALL_STATE(3792)] = 114546, + [SMALL_STATE(3793)] = 114570, + [SMALL_STATE(3794)] = 114590, + [SMALL_STATE(3795)] = 114618, + [SMALL_STATE(3796)] = 114646, + [SMALL_STATE(3797)] = 114674, + [SMALL_STATE(3798)] = 114700, + [SMALL_STATE(3799)] = 114728, + [SMALL_STATE(3800)] = 114756, + [SMALL_STATE(3801)] = 114776, + [SMALL_STATE(3802)] = 114804, + [SMALL_STATE(3803)] = 114832, + [SMALL_STATE(3804)] = 114856, + [SMALL_STATE(3805)] = 114874, + [SMALL_STATE(3806)] = 114896, + [SMALL_STATE(3807)] = 114918, + [SMALL_STATE(3808)] = 114946, + [SMALL_STATE(3809)] = 114966, + [SMALL_STATE(3810)] = 114988, + [SMALL_STATE(3811)] = 115016, + [SMALL_STATE(3812)] = 115036, + [SMALL_STATE(3813)] = 115056, + [SMALL_STATE(3814)] = 115076, + [SMALL_STATE(3815)] = 115104, + [SMALL_STATE(3816)] = 115128, + [SMALL_STATE(3817)] = 115148, + [SMALL_STATE(3818)] = 115178, + [SMALL_STATE(3819)] = 115206, + [SMALL_STATE(3820)] = 115234, + [SMALL_STATE(3821)] = 115254, + [SMALL_STATE(3822)] = 115274, + [SMALL_STATE(3823)] = 115300, + [SMALL_STATE(3824)] = 115328, + [SMALL_STATE(3825)] = 115356, + [SMALL_STATE(3826)] = 115378, + [SMALL_STATE(3827)] = 115406, + [SMALL_STATE(3828)] = 115434, + [SMALL_STATE(3829)] = 115454, + [SMALL_STATE(3830)] = 115482, + [SMALL_STATE(3831)] = 115507, + [SMALL_STATE(3832)] = 115526, + [SMALL_STATE(3833)] = 115551, + [SMALL_STATE(3834)] = 115578, + [SMALL_STATE(3835)] = 115605, + [SMALL_STATE(3836)] = 115632, + [SMALL_STATE(3837)] = 115651, + [SMALL_STATE(3838)] = 115680, + [SMALL_STATE(3839)] = 115705, + [SMALL_STATE(3840)] = 115730, + [SMALL_STATE(3841)] = 115751, + [SMALL_STATE(3842)] = 115778, + [SMALL_STATE(3843)] = 115797, + [SMALL_STATE(3844)] = 115816, + [SMALL_STATE(3845)] = 115841, + [SMALL_STATE(3846)] = 115866, + [SMALL_STATE(3847)] = 115885, + [SMALL_STATE(3848)] = 115910, + [SMALL_STATE(3849)] = 115935, + [SMALL_STATE(3850)] = 115960, + [SMALL_STATE(3851)] = 115991, + [SMALL_STATE(3852)] = 116010, + [SMALL_STATE(3853)] = 116033, + [SMALL_STATE(3854)] = 116052, + [SMALL_STATE(3855)] = 116075, + [SMALL_STATE(3856)] = 116094, + [SMALL_STATE(3857)] = 116121, + [SMALL_STATE(3858)] = 116148, + [SMALL_STATE(3859)] = 116169, + [SMALL_STATE(3860)] = 116194, + [SMALL_STATE(3861)] = 116213, + [SMALL_STATE(3862)] = 116238, + [SMALL_STATE(3863)] = 116259, + [SMALL_STATE(3864)] = 116280, + [SMALL_STATE(3865)] = 116305, + [SMALL_STATE(3866)] = 116330, + [SMALL_STATE(3867)] = 116353, + [SMALL_STATE(3868)] = 116378, + [SMALL_STATE(3869)] = 116397, + [SMALL_STATE(3870)] = 116418, + [SMALL_STATE(3871)] = 116437, + [SMALL_STATE(3872)] = 116456, + [SMALL_STATE(3873)] = 116481, + [SMALL_STATE(3874)] = 116504, + [SMALL_STATE(3875)] = 116529, + [SMALL_STATE(3876)] = 116550, + [SMALL_STATE(3877)] = 116569, + [SMALL_STATE(3878)] = 116589, + [SMALL_STATE(3879)] = 116617, + [SMALL_STATE(3880)] = 116635, + [SMALL_STATE(3881)] = 116657, + [SMALL_STATE(3882)] = 116685, + [SMALL_STATE(3883)] = 116713, + [SMALL_STATE(3884)] = 116741, + [SMALL_STATE(3885)] = 116769, + [SMALL_STATE(3886)] = 116797, + [SMALL_STATE(3887)] = 116825, + [SMALL_STATE(3888)] = 116849, + [SMALL_STATE(3889)] = 116877, + [SMALL_STATE(3890)] = 116895, + [SMALL_STATE(3891)] = 116923, + [SMALL_STATE(3892)] = 116951, + [SMALL_STATE(3893)] = 116979, + [SMALL_STATE(3894)] = 117007, + [SMALL_STATE(3895)] = 117031, + [SMALL_STATE(3896)] = 117057, + [SMALL_STATE(3897)] = 117085, + [SMALL_STATE(3898)] = 117113, + [SMALL_STATE(3899)] = 117139, + [SMALL_STATE(3900)] = 117161, + [SMALL_STATE(3901)] = 117185, + [SMALL_STATE(3902)] = 117211, + [SMALL_STATE(3903)] = 117237, + [SMALL_STATE(3904)] = 117255, + [SMALL_STATE(3905)] = 117281, + [SMALL_STATE(3906)] = 117307, + [SMALL_STATE(3907)] = 117333, + [SMALL_STATE(3908)] = 117351, + [SMALL_STATE(3909)] = 117373, + [SMALL_STATE(3910)] = 117395, + [SMALL_STATE(3911)] = 117423, + [SMALL_STATE(3912)] = 117441, + [SMALL_STATE(3913)] = 117459, + [SMALL_STATE(3914)] = 117485, + [SMALL_STATE(3915)] = 117507, + [SMALL_STATE(3916)] = 117535, + [SMALL_STATE(3917)] = 117559, + [SMALL_STATE(3918)] = 117587, + [SMALL_STATE(3919)] = 117613, + [SMALL_STATE(3920)] = 117641, + [SMALL_STATE(3921)] = 117669, + [SMALL_STATE(3922)] = 117697, + [SMALL_STATE(3923)] = 117725, + [SMALL_STATE(3924)] = 117753, + [SMALL_STATE(3925)] = 117781, + [SMALL_STATE(3926)] = 117809, + [SMALL_STATE(3927)] = 117837, + [SMALL_STATE(3928)] = 117863, + [SMALL_STATE(3929)] = 117891, + [SMALL_STATE(3930)] = 117919, + [SMALL_STATE(3931)] = 117943, + [SMALL_STATE(3932)] = 117971, + [SMALL_STATE(3933)] = 117989, + [SMALL_STATE(3934)] = 118017, + [SMALL_STATE(3935)] = 118045, + [SMALL_STATE(3936)] = 118073, + [SMALL_STATE(3937)] = 118091, + [SMALL_STATE(3938)] = 118111, + [SMALL_STATE(3939)] = 118137, + [SMALL_STATE(3940)] = 118163, + [SMALL_STATE(3941)] = 118183, + [SMALL_STATE(3942)] = 118203, + [SMALL_STATE(3943)] = 118223, + [SMALL_STATE(3944)] = 118243, + [SMALL_STATE(3945)] = 118267, + [SMALL_STATE(3946)] = 118295, + [SMALL_STATE(3947)] = 118323, + [SMALL_STATE(3948)] = 118341, + [SMALL_STATE(3949)] = 118365, + [SMALL_STATE(3950)] = 118383, + [SMALL_STATE(3951)] = 118401, + [SMALL_STATE(3952)] = 118425, + [SMALL_STATE(3953)] = 118453, + [SMALL_STATE(3954)] = 118479, + [SMALL_STATE(3955)] = 118505, + [SMALL_STATE(3956)] = 118533, + [SMALL_STATE(3957)] = 118559, + [SMALL_STATE(3958)] = 118581, + [SMALL_STATE(3959)] = 118609, + [SMALL_STATE(3960)] = 118637, + [SMALL_STATE(3961)] = 118663, + [SMALL_STATE(3962)] = 118683, + [SMALL_STATE(3963)] = 118711, + [SMALL_STATE(3964)] = 118733, + [SMALL_STATE(3965)] = 118755, + [SMALL_STATE(3966)] = 118781, + [SMALL_STATE(3967)] = 118801, + [SMALL_STATE(3968)] = 118823, + [SMALL_STATE(3969)] = 118847, + [SMALL_STATE(3970)] = 118869, + [SMALL_STATE(3971)] = 118895, + [SMALL_STATE(3972)] = 118921, + [SMALL_STATE(3973)] = 118949, + [SMALL_STATE(3974)] = 118971, + [SMALL_STATE(3975)] = 118989, + [SMALL_STATE(3976)] = 119007, + [SMALL_STATE(3977)] = 119035, + [SMALL_STATE(3978)] = 119057, + [SMALL_STATE(3979)] = 119085, + [SMALL_STATE(3980)] = 119113, + [SMALL_STATE(3981)] = 119141, + [SMALL_STATE(3982)] = 119167, + [SMALL_STATE(3983)] = 119193, + [SMALL_STATE(3984)] = 119221, + [SMALL_STATE(3985)] = 119249, + [SMALL_STATE(3986)] = 119277, + [SMALL_STATE(3987)] = 119302, + [SMALL_STATE(3988)] = 119323, + [SMALL_STATE(3989)] = 119346, + [SMALL_STATE(3990)] = 119371, + [SMALL_STATE(3991)] = 119394, + [SMALL_STATE(3992)] = 119415, + [SMALL_STATE(3993)] = 119438, + [SMALL_STATE(3994)] = 119459, + [SMALL_STATE(3995)] = 119480, + [SMALL_STATE(3996)] = 119501, + [SMALL_STATE(3997)] = 119520, + [SMALL_STATE(3998)] = 119543, + [SMALL_STATE(3999)] = 119562, + [SMALL_STATE(4000)] = 119583, + [SMALL_STATE(4001)] = 119604, + [SMALL_STATE(4002)] = 119625, + [SMALL_STATE(4003)] = 119648, + [SMALL_STATE(4004)] = 119671, + [SMALL_STATE(4005)] = 119686, + [SMALL_STATE(4006)] = 119701, + [SMALL_STATE(4007)] = 119724, + [SMALL_STATE(4008)] = 119743, + [SMALL_STATE(4009)] = 119766, + [SMALL_STATE(4010)] = 119787, + [SMALL_STATE(4011)] = 119810, + [SMALL_STATE(4012)] = 119833, + [SMALL_STATE(4013)] = 119856, + [SMALL_STATE(4014)] = 119879, + [SMALL_STATE(4015)] = 119902, + [SMALL_STATE(4016)] = 119925, + [SMALL_STATE(4017)] = 119948, + [SMALL_STATE(4018)] = 119971, + [SMALL_STATE(4019)] = 119994, + [SMALL_STATE(4020)] = 120017, + [SMALL_STATE(4021)] = 120040, + [SMALL_STATE(4022)] = 120063, + [SMALL_STATE(4023)] = 120086, + [SMALL_STATE(4024)] = 120111, + [SMALL_STATE(4025)] = 120134, + [SMALL_STATE(4026)] = 120157, + [SMALL_STATE(4027)] = 120172, + [SMALL_STATE(4028)] = 120195, + [SMALL_STATE(4029)] = 120216, + [SMALL_STATE(4030)] = 120241, + [SMALL_STATE(4031)] = 120264, + [SMALL_STATE(4032)] = 120279, + [SMALL_STATE(4033)] = 120298, + [SMALL_STATE(4034)] = 120321, + [SMALL_STATE(4035)] = 120346, + [SMALL_STATE(4036)] = 120369, + [SMALL_STATE(4037)] = 120394, + [SMALL_STATE(4038)] = 120419, + [SMALL_STATE(4039)] = 120442, + [SMALL_STATE(4040)] = 120465, + [SMALL_STATE(4041)] = 120480, + [SMALL_STATE(4042)] = 120501, + [SMALL_STATE(4043)] = 120522, + [SMALL_STATE(4044)] = 120545, + [SMALL_STATE(4045)] = 120568, + [SMALL_STATE(4046)] = 120589, + [SMALL_STATE(4047)] = 120614, + [SMALL_STATE(4048)] = 120637, + [SMALL_STATE(4049)] = 120662, + [SMALL_STATE(4050)] = 120683, + [SMALL_STATE(4051)] = 120706, + [SMALL_STATE(4052)] = 120729, + [SMALL_STATE(4053)] = 120750, + [SMALL_STATE(4054)] = 120773, + [SMALL_STATE(4055)] = 120794, + [SMALL_STATE(4056)] = 120817, + [SMALL_STATE(4057)] = 120840, + [SMALL_STATE(4058)] = 120863, + [SMALL_STATE(4059)] = 120886, + [SMALL_STATE(4060)] = 120907, + [SMALL_STATE(4061)] = 120926, + [SMALL_STATE(4062)] = 120951, + [SMALL_STATE(4063)] = 120974, + [SMALL_STATE(4064)] = 120995, + [SMALL_STATE(4065)] = 121016, + [SMALL_STATE(4066)] = 121035, + [SMALL_STATE(4067)] = 121060, + [SMALL_STATE(4068)] = 121083, + [SMALL_STATE(4069)] = 121104, + [SMALL_STATE(4070)] = 121125, + [SMALL_STATE(4071)] = 121148, + [SMALL_STATE(4072)] = 121173, + [SMALL_STATE(4073)] = 121192, + [SMALL_STATE(4074)] = 121217, + [SMALL_STATE(4075)] = 121242, + [SMALL_STATE(4076)] = 121265, + [SMALL_STATE(4077)] = 121284, + [SMALL_STATE(4078)] = 121309, + [SMALL_STATE(4079)] = 121328, + [SMALL_STATE(4080)] = 121351, + [SMALL_STATE(4081)] = 121374, + [SMALL_STATE(4082)] = 121397, + [SMALL_STATE(4083)] = 121416, + [SMALL_STATE(4084)] = 121439, + [SMALL_STATE(4085)] = 121456, + [SMALL_STATE(4086)] = 121479, + [SMALL_STATE(4087)] = 121502, + [SMALL_STATE(4088)] = 121525, + [SMALL_STATE(4089)] = 121548, + [SMALL_STATE(4090)] = 121571, + [SMALL_STATE(4091)] = 121594, + [SMALL_STATE(4092)] = 121615, + [SMALL_STATE(4093)] = 121638, + [SMALL_STATE(4094)] = 121661, + [SMALL_STATE(4095)] = 121682, + [SMALL_STATE(4096)] = 121703, + [SMALL_STATE(4097)] = 121724, + [SMALL_STATE(4098)] = 121745, + [SMALL_STATE(4099)] = 121768, + [SMALL_STATE(4100)] = 121793, + [SMALL_STATE(4101)] = 121810, + [SMALL_STATE(4102)] = 121831, + [SMALL_STATE(4103)] = 121852, + [SMALL_STATE(4104)] = 121875, + [SMALL_STATE(4105)] = 121898, + [SMALL_STATE(4106)] = 121919, + [SMALL_STATE(4107)] = 121940, + [SMALL_STATE(4108)] = 121965, + [SMALL_STATE(4109)] = 121990, + [SMALL_STATE(4110)] = 122015, + [SMALL_STATE(4111)] = 122032, + [SMALL_STATE(4112)] = 122055, + [SMALL_STATE(4113)] = 122078, + [SMALL_STATE(4114)] = 122097, + [SMALL_STATE(4115)] = 122120, + [SMALL_STATE(4116)] = 122143, + [SMALL_STATE(4117)] = 122166, + [SMALL_STATE(4118)] = 122189, + [SMALL_STATE(4119)] = 122214, + [SMALL_STATE(4120)] = 122237, + [SMALL_STATE(4121)] = 122260, + [SMALL_STATE(4122)] = 122279, + [SMALL_STATE(4123)] = 122300, + [SMALL_STATE(4124)] = 122323, + [SMALL_STATE(4125)] = 122346, + [SMALL_STATE(4126)] = 122371, + [SMALL_STATE(4127)] = 122394, + [SMALL_STATE(4128)] = 122413, + [SMALL_STATE(4129)] = 122436, + [SMALL_STATE(4130)] = 122459, + [SMALL_STATE(4131)] = 122482, + [SMALL_STATE(4132)] = 122505, + [SMALL_STATE(4133)] = 122530, + [SMALL_STATE(4134)] = 122553, + [SMALL_STATE(4135)] = 122576, + [SMALL_STATE(4136)] = 122597, + [SMALL_STATE(4137)] = 122622, + [SMALL_STATE(4138)] = 122645, + [SMALL_STATE(4139)] = 122668, + [SMALL_STATE(4140)] = 122691, + [SMALL_STATE(4141)] = 122714, + [SMALL_STATE(4142)] = 122739, + [SMALL_STATE(4143)] = 122762, + [SMALL_STATE(4144)] = 122785, + [SMALL_STATE(4145)] = 122808, + [SMALL_STATE(4146)] = 122827, + [SMALL_STATE(4147)] = 122846, + [SMALL_STATE(4148)] = 122869, + [SMALL_STATE(4149)] = 122892, + [SMALL_STATE(4150)] = 122907, + [SMALL_STATE(4151)] = 122926, + [SMALL_STATE(4152)] = 122949, + [SMALL_STATE(4153)] = 122974, + [SMALL_STATE(4154)] = 122999, + [SMALL_STATE(4155)] = 123024, + [SMALL_STATE(4156)] = 123047, + [SMALL_STATE(4157)] = 123070, + [SMALL_STATE(4158)] = 123091, + [SMALL_STATE(4159)] = 123110, + [SMALL_STATE(4160)] = 123133, + [SMALL_STATE(4161)] = 123156, + [SMALL_STATE(4162)] = 123179, + [SMALL_STATE(4163)] = 123200, + [SMALL_STATE(4164)] = 123223, + [SMALL_STATE(4165)] = 123248, + [SMALL_STATE(4166)] = 123273, + [SMALL_STATE(4167)] = 123298, + [SMALL_STATE(4168)] = 123323, + [SMALL_STATE(4169)] = 123346, + [SMALL_STATE(4170)] = 123369, + [SMALL_STATE(4171)] = 123388, + [SMALL_STATE(4172)] = 123411, + [SMALL_STATE(4173)] = 123434, + [SMALL_STATE(4174)] = 123457, + [SMALL_STATE(4175)] = 123480, + [SMALL_STATE(4176)] = 123505, + [SMALL_STATE(4177)] = 123524, + [SMALL_STATE(4178)] = 123545, + [SMALL_STATE(4179)] = 123566, + [SMALL_STATE(4180)] = 123589, + [SMALL_STATE(4181)] = 123612, + [SMALL_STATE(4182)] = 123635, + [SMALL_STATE(4183)] = 123654, + [SMALL_STATE(4184)] = 123675, + [SMALL_STATE(4185)] = 123698, + [SMALL_STATE(4186)] = 123721, + [SMALL_STATE(4187)] = 123744, + [SMALL_STATE(4188)] = 123767, + [SMALL_STATE(4189)] = 123786, + [SMALL_STATE(4190)] = 123805, + [SMALL_STATE(4191)] = 123828, + [SMALL_STATE(4192)] = 123851, + [SMALL_STATE(4193)] = 123874, + [SMALL_STATE(4194)] = 123897, + [SMALL_STATE(4195)] = 123920, + [SMALL_STATE(4196)] = 123943, + [SMALL_STATE(4197)] = 123964, + [SMALL_STATE(4198)] = 123987, + [SMALL_STATE(4199)] = 124010, + [SMALL_STATE(4200)] = 124033, + [SMALL_STATE(4201)] = 124056, + [SMALL_STATE(4202)] = 124079, + [SMALL_STATE(4203)] = 124102, + [SMALL_STATE(4204)] = 124122, + [SMALL_STATE(4205)] = 124140, + [SMALL_STATE(4206)] = 124156, + [SMALL_STATE(4207)] = 124174, + [SMALL_STATE(4208)] = 124194, + [SMALL_STATE(4209)] = 124212, + [SMALL_STATE(4210)] = 124230, + [SMALL_STATE(4211)] = 124250, + [SMALL_STATE(4212)] = 124268, + [SMALL_STATE(4213)] = 124290, + [SMALL_STATE(4214)] = 124308, + [SMALL_STATE(4215)] = 124330, + [SMALL_STATE(4216)] = 124346, + [SMALL_STATE(4217)] = 124366, + [SMALL_STATE(4218)] = 124386, + [SMALL_STATE(4219)] = 124402, + [SMALL_STATE(4220)] = 124422, + [SMALL_STATE(4221)] = 124442, + [SMALL_STATE(4222)] = 124458, + [SMALL_STATE(4223)] = 124478, + [SMALL_STATE(4224)] = 124494, + [SMALL_STATE(4225)] = 124514, + [SMALL_STATE(4226)] = 124534, + [SMALL_STATE(4227)] = 124554, + [SMALL_STATE(4228)] = 124572, + [SMALL_STATE(4229)] = 124590, + [SMALL_STATE(4230)] = 124610, + [SMALL_STATE(4231)] = 124630, + [SMALL_STATE(4232)] = 124652, + [SMALL_STATE(4233)] = 124672, + [SMALL_STATE(4234)] = 124694, + [SMALL_STATE(4235)] = 124716, + [SMALL_STATE(4236)] = 124734, + [SMALL_STATE(4237)] = 124756, + [SMALL_STATE(4238)] = 124778, + [SMALL_STATE(4239)] = 124800, + [SMALL_STATE(4240)] = 124820, + [SMALL_STATE(4241)] = 124840, + [SMALL_STATE(4242)] = 124862, + [SMALL_STATE(4243)] = 124882, + [SMALL_STATE(4244)] = 124898, + [SMALL_STATE(4245)] = 124916, + [SMALL_STATE(4246)] = 124934, + [SMALL_STATE(4247)] = 124950, + [SMALL_STATE(4248)] = 124966, + [SMALL_STATE(4249)] = 124986, + [SMALL_STATE(4250)] = 125008, + [SMALL_STATE(4251)] = 125030, + [SMALL_STATE(4252)] = 125046, + [SMALL_STATE(4253)] = 125068, + [SMALL_STATE(4254)] = 125090, + [SMALL_STATE(4255)] = 125106, + [SMALL_STATE(4256)] = 125122, + [SMALL_STATE(4257)] = 125138, + [SMALL_STATE(4258)] = 125160, + [SMALL_STATE(4259)] = 125176, + [SMALL_STATE(4260)] = 125198, + [SMALL_STATE(4261)] = 125220, + [SMALL_STATE(4262)] = 125242, + [SMALL_STATE(4263)] = 125258, + [SMALL_STATE(4264)] = 125278, + [SMALL_STATE(4265)] = 125298, + [SMALL_STATE(4266)] = 125316, + [SMALL_STATE(4267)] = 125332, + [SMALL_STATE(4268)] = 125350, + [SMALL_STATE(4269)] = 125368, + [SMALL_STATE(4270)] = 125386, + [SMALL_STATE(4271)] = 125404, + [SMALL_STATE(4272)] = 125424, + [SMALL_STATE(4273)] = 125442, + [SMALL_STATE(4274)] = 125460, + [SMALL_STATE(4275)] = 125478, + [SMALL_STATE(4276)] = 125494, + [SMALL_STATE(4277)] = 125510, + [SMALL_STATE(4278)] = 125528, + [SMALL_STATE(4279)] = 125544, + [SMALL_STATE(4280)] = 125560, + [SMALL_STATE(4281)] = 125582, + [SMALL_STATE(4282)] = 125598, + [SMALL_STATE(4283)] = 125620, + [SMALL_STATE(4284)] = 125636, + [SMALL_STATE(4285)] = 125656, + [SMALL_STATE(4286)] = 125678, + [SMALL_STATE(4287)] = 125700, + [SMALL_STATE(4288)] = 125720, + [SMALL_STATE(4289)] = 125742, + [SMALL_STATE(4290)] = 125758, + [SMALL_STATE(4291)] = 125774, + [SMALL_STATE(4292)] = 125796, + [SMALL_STATE(4293)] = 125814, + [SMALL_STATE(4294)] = 125832, + [SMALL_STATE(4295)] = 125852, + [SMALL_STATE(4296)] = 125874, + [SMALL_STATE(4297)] = 125892, + [SMALL_STATE(4298)] = 125908, + [SMALL_STATE(4299)] = 125924, + [SMALL_STATE(4300)] = 125942, + [SMALL_STATE(4301)] = 125964, + [SMALL_STATE(4302)] = 125984, + [SMALL_STATE(4303)] = 126006, + [SMALL_STATE(4304)] = 126022, + [SMALL_STATE(4305)] = 126044, + [SMALL_STATE(4306)] = 126060, + [SMALL_STATE(4307)] = 126076, + [SMALL_STATE(4308)] = 126096, + [SMALL_STATE(4309)] = 126116, + [SMALL_STATE(4310)] = 126138, + [SMALL_STATE(4311)] = 126156, + [SMALL_STATE(4312)] = 126176, + [SMALL_STATE(4313)] = 126198, + [SMALL_STATE(4314)] = 126216, + [SMALL_STATE(4315)] = 126236, + [SMALL_STATE(4316)] = 126258, + [SMALL_STATE(4317)] = 126280, + [SMALL_STATE(4318)] = 126300, + [SMALL_STATE(4319)] = 126320, + [SMALL_STATE(4320)] = 126340, + [SMALL_STATE(4321)] = 126356, + [SMALL_STATE(4322)] = 126372, + [SMALL_STATE(4323)] = 126392, + [SMALL_STATE(4324)] = 126414, + [SMALL_STATE(4325)] = 126434, + [SMALL_STATE(4326)] = 126454, + [SMALL_STATE(4327)] = 126474, + [SMALL_STATE(4328)] = 126494, + [SMALL_STATE(4329)] = 126514, + [SMALL_STATE(4330)] = 126534, + [SMALL_STATE(4331)] = 126556, + [SMALL_STATE(4332)] = 126576, + [SMALL_STATE(4333)] = 126596, + [SMALL_STATE(4334)] = 126616, + [SMALL_STATE(4335)] = 126636, + [SMALL_STATE(4336)] = 126656, + [SMALL_STATE(4337)] = 126676, + [SMALL_STATE(4338)] = 126698, + [SMALL_STATE(4339)] = 126718, + [SMALL_STATE(4340)] = 126738, + [SMALL_STATE(4341)] = 126760, + [SMALL_STATE(4342)] = 126778, + [SMALL_STATE(4343)] = 126794, + [SMALL_STATE(4344)] = 126814, + [SMALL_STATE(4345)] = 126834, + [SMALL_STATE(4346)] = 126856, + [SMALL_STATE(4347)] = 126878, + [SMALL_STATE(4348)] = 126900, + [SMALL_STATE(4349)] = 126916, + [SMALL_STATE(4350)] = 126936, + [SMALL_STATE(4351)] = 126956, + [SMALL_STATE(4352)] = 126978, + [SMALL_STATE(4353)] = 126998, + [SMALL_STATE(4354)] = 127020, + [SMALL_STATE(4355)] = 127040, + [SMALL_STATE(4356)] = 127060, + [SMALL_STATE(4357)] = 127082, + [SMALL_STATE(4358)] = 127098, + [SMALL_STATE(4359)] = 127114, + [SMALL_STATE(4360)] = 127136, + [SMALL_STATE(4361)] = 127158, + [SMALL_STATE(4362)] = 127178, + [SMALL_STATE(4363)] = 127191, + [SMALL_STATE(4364)] = 127204, + [SMALL_STATE(4365)] = 127219, + [SMALL_STATE(4366)] = 127238, + [SMALL_STATE(4367)] = 127253, + [SMALL_STATE(4368)] = 127272, + [SMALL_STATE(4369)] = 127291, + [SMALL_STATE(4370)] = 127310, + [SMALL_STATE(4371)] = 127325, + [SMALL_STATE(4372)] = 127340, + [SMALL_STATE(4373)] = 127355, + [SMALL_STATE(4374)] = 127374, + [SMALL_STATE(4375)] = 127389, + [SMALL_STATE(4376)] = 127404, + [SMALL_STATE(4377)] = 127419, + [SMALL_STATE(4378)] = 127434, + [SMALL_STATE(4379)] = 127449, + [SMALL_STATE(4380)] = 127466, + [SMALL_STATE(4381)] = 127481, + [SMALL_STATE(4382)] = 127496, + [SMALL_STATE(4383)] = 127509, + [SMALL_STATE(4384)] = 127522, + [SMALL_STATE(4385)] = 127539, + [SMALL_STATE(4386)] = 127556, + [SMALL_STATE(4387)] = 127571, + [SMALL_STATE(4388)] = 127584, + [SMALL_STATE(4389)] = 127603, + [SMALL_STATE(4390)] = 127620, + [SMALL_STATE(4391)] = 127639, + [SMALL_STATE(4392)] = 127654, + [SMALL_STATE(4393)] = 127673, + [SMALL_STATE(4394)] = 127692, + [SMALL_STATE(4395)] = 127707, + [SMALL_STATE(4396)] = 127720, + [SMALL_STATE(4397)] = 127735, + [SMALL_STATE(4398)] = 127750, + [SMALL_STATE(4399)] = 127769, + [SMALL_STATE(4400)] = 127788, + [SMALL_STATE(4401)] = 127801, + [SMALL_STATE(4402)] = 127814, + [SMALL_STATE(4403)] = 127829, + [SMALL_STATE(4404)] = 127848, + [SMALL_STATE(4405)] = 127863, + [SMALL_STATE(4406)] = 127878, + [SMALL_STATE(4407)] = 127895, + [SMALL_STATE(4408)] = 127908, + [SMALL_STATE(4409)] = 127921, + [SMALL_STATE(4410)] = 127934, + [SMALL_STATE(4411)] = 127951, + [SMALL_STATE(4412)] = 127970, + [SMALL_STATE(4413)] = 127983, + [SMALL_STATE(4414)] = 128000, + [SMALL_STATE(4415)] = 128015, + [SMALL_STATE(4416)] = 128034, + [SMALL_STATE(4417)] = 128049, + [SMALL_STATE(4418)] = 128066, + [SMALL_STATE(4419)] = 128081, + [SMALL_STATE(4420)] = 128096, + [SMALL_STATE(4421)] = 128115, + [SMALL_STATE(4422)] = 128128, + [SMALL_STATE(4423)] = 128147, + [SMALL_STATE(4424)] = 128160, + [SMALL_STATE(4425)] = 128173, + [SMALL_STATE(4426)] = 128186, + [SMALL_STATE(4427)] = 128205, + [SMALL_STATE(4428)] = 128218, + [SMALL_STATE(4429)] = 128231, + [SMALL_STATE(4430)] = 128244, + [SMALL_STATE(4431)] = 128257, + [SMALL_STATE(4432)] = 128270, + [SMALL_STATE(4433)] = 128283, + [SMALL_STATE(4434)] = 128298, + [SMALL_STATE(4435)] = 128311, + [SMALL_STATE(4436)] = 128328, + [SMALL_STATE(4437)] = 128341, + [SMALL_STATE(4438)] = 128354, + [SMALL_STATE(4439)] = 128367, + [SMALL_STATE(4440)] = 128382, + [SMALL_STATE(4441)] = 128401, + [SMALL_STATE(4442)] = 128416, + [SMALL_STATE(4443)] = 128433, + [SMALL_STATE(4444)] = 128452, + [SMALL_STATE(4445)] = 128471, + [SMALL_STATE(4446)] = 128486, + [SMALL_STATE(4447)] = 128501, + [SMALL_STATE(4448)] = 128518, + [SMALL_STATE(4449)] = 128533, + [SMALL_STATE(4450)] = 128548, + [SMALL_STATE(4451)] = 128563, + [SMALL_STATE(4452)] = 128582, + [SMALL_STATE(4453)] = 128597, + [SMALL_STATE(4454)] = 128616, + [SMALL_STATE(4455)] = 128629, + [SMALL_STATE(4456)] = 128642, + [SMALL_STATE(4457)] = 128661, + [SMALL_STATE(4458)] = 128676, + [SMALL_STATE(4459)] = 128691, + [SMALL_STATE(4460)] = 128704, + [SMALL_STATE(4461)] = 128719, + [SMALL_STATE(4462)] = 128732, + [SMALL_STATE(4463)] = 128747, + [SMALL_STATE(4464)] = 128760, + [SMALL_STATE(4465)] = 128779, + [SMALL_STATE(4466)] = 128798, + [SMALL_STATE(4467)] = 128813, + [SMALL_STATE(4468)] = 128828, + [SMALL_STATE(4469)] = 128841, + [SMALL_STATE(4470)] = 128854, + [SMALL_STATE(4471)] = 128867, + [SMALL_STATE(4472)] = 128880, + [SMALL_STATE(4473)] = 128897, + [SMALL_STATE(4474)] = 128910, + [SMALL_STATE(4475)] = 128923, + [SMALL_STATE(4476)] = 128936, + [SMALL_STATE(4477)] = 128955, + [SMALL_STATE(4478)] = 128974, + [SMALL_STATE(4479)] = 128987, + [SMALL_STATE(4480)] = 129000, + [SMALL_STATE(4481)] = 129013, + [SMALL_STATE(4482)] = 129026, + [SMALL_STATE(4483)] = 129045, + [SMALL_STATE(4484)] = 129058, + [SMALL_STATE(4485)] = 129075, + [SMALL_STATE(4486)] = 129088, + [SMALL_STATE(4487)] = 129101, + [SMALL_STATE(4488)] = 129114, + [SMALL_STATE(4489)] = 129127, + [SMALL_STATE(4490)] = 129140, + [SMALL_STATE(4491)] = 129159, + [SMALL_STATE(4492)] = 129178, + [SMALL_STATE(4493)] = 129193, + [SMALL_STATE(4494)] = 129208, + [SMALL_STATE(4495)] = 129225, + [SMALL_STATE(4496)] = 129244, + [SMALL_STATE(4497)] = 129263, + [SMALL_STATE(4498)] = 129276, + [SMALL_STATE(4499)] = 129295, + [SMALL_STATE(4500)] = 129314, + [SMALL_STATE(4501)] = 129329, + [SMALL_STATE(4502)] = 129344, + [SMALL_STATE(4503)] = 129359, + [SMALL_STATE(4504)] = 129374, + [SMALL_STATE(4505)] = 129389, + [SMALL_STATE(4506)] = 129408, + [SMALL_STATE(4507)] = 129423, + [SMALL_STATE(4508)] = 129438, + [SMALL_STATE(4509)] = 129453, + [SMALL_STATE(4510)] = 129468, + [SMALL_STATE(4511)] = 129481, + [SMALL_STATE(4512)] = 129500, + [SMALL_STATE(4513)] = 129513, + [SMALL_STATE(4514)] = 129526, + [SMALL_STATE(4515)] = 129539, + [SMALL_STATE(4516)] = 129552, + [SMALL_STATE(4517)] = 129571, + [SMALL_STATE(4518)] = 129584, + [SMALL_STATE(4519)] = 129603, + [SMALL_STATE(4520)] = 129620, + [SMALL_STATE(4521)] = 129639, + [SMALL_STATE(4522)] = 129656, + [SMALL_STATE(4523)] = 129671, + [SMALL_STATE(4524)] = 129686, + [SMALL_STATE(4525)] = 129699, + [SMALL_STATE(4526)] = 129714, + [SMALL_STATE(4527)] = 129727, + [SMALL_STATE(4528)] = 129742, + [SMALL_STATE(4529)] = 129757, + [SMALL_STATE(4530)] = 129776, + [SMALL_STATE(4531)] = 129791, + [SMALL_STATE(4532)] = 129806, + [SMALL_STATE(4533)] = 129821, + [SMALL_STATE(4534)] = 129838, + [SMALL_STATE(4535)] = 129855, + [SMALL_STATE(4536)] = 129868, + [SMALL_STATE(4537)] = 129881, + [SMALL_STATE(4538)] = 129894, + [SMALL_STATE(4539)] = 129907, + [SMALL_STATE(4540)] = 129924, + [SMALL_STATE(4541)] = 129937, + [SMALL_STATE(4542)] = 129950, + [SMALL_STATE(4543)] = 129963, + [SMALL_STATE(4544)] = 129976, + [SMALL_STATE(4545)] = 129993, + [SMALL_STATE(4546)] = 130006, + [SMALL_STATE(4547)] = 130023, + [SMALL_STATE(4548)] = 130042, + [SMALL_STATE(4549)] = 130057, + [SMALL_STATE(4550)] = 130070, + [SMALL_STATE(4551)] = 130083, + [SMALL_STATE(4552)] = 130102, + [SMALL_STATE(4553)] = 130121, + [SMALL_STATE(4554)] = 130138, + [SMALL_STATE(4555)] = 130151, + [SMALL_STATE(4556)] = 130166, + [SMALL_STATE(4557)] = 130185, + [SMALL_STATE(4558)] = 130198, + [SMALL_STATE(4559)] = 130211, + [SMALL_STATE(4560)] = 130224, + [SMALL_STATE(4561)] = 130237, + [SMALL_STATE(4562)] = 130250, + [SMALL_STATE(4563)] = 130263, + [SMALL_STATE(4564)] = 130276, + [SMALL_STATE(4565)] = 130289, + [SMALL_STATE(4566)] = 130302, + [SMALL_STATE(4567)] = 130315, + [SMALL_STATE(4568)] = 130332, + [SMALL_STATE(4569)] = 130345, + [SMALL_STATE(4570)] = 130358, + [SMALL_STATE(4571)] = 130375, + [SMALL_STATE(4572)] = 130388, + [SMALL_STATE(4573)] = 130405, + [SMALL_STATE(4574)] = 130418, + [SMALL_STATE(4575)] = 130437, + [SMALL_STATE(4576)] = 130450, + [SMALL_STATE(4577)] = 130467, + [SMALL_STATE(4578)] = 130484, + [SMALL_STATE(4579)] = 130497, + [SMALL_STATE(4580)] = 130514, + [SMALL_STATE(4581)] = 130529, + [SMALL_STATE(4582)] = 130546, + [SMALL_STATE(4583)] = 130559, + [SMALL_STATE(4584)] = 130572, + [SMALL_STATE(4585)] = 130585, + [SMALL_STATE(4586)] = 130598, + [SMALL_STATE(4587)] = 130615, + [SMALL_STATE(4588)] = 130630, + [SMALL_STATE(4589)] = 130643, + [SMALL_STATE(4590)] = 130656, + [SMALL_STATE(4591)] = 130669, + [SMALL_STATE(4592)] = 130682, + [SMALL_STATE(4593)] = 130695, + [SMALL_STATE(4594)] = 130708, + [SMALL_STATE(4595)] = 130721, + [SMALL_STATE(4596)] = 130734, + [SMALL_STATE(4597)] = 130747, + [SMALL_STATE(4598)] = 130760, + [SMALL_STATE(4599)] = 130773, + [SMALL_STATE(4600)] = 130788, + [SMALL_STATE(4601)] = 130801, + [SMALL_STATE(4602)] = 130814, + [SMALL_STATE(4603)] = 130827, + [SMALL_STATE(4604)] = 130840, + [SMALL_STATE(4605)] = 130853, + [SMALL_STATE(4606)] = 130866, + [SMALL_STATE(4607)] = 130881, + [SMALL_STATE(4608)] = 130900, + [SMALL_STATE(4609)] = 130915, + [SMALL_STATE(4610)] = 130934, + [SMALL_STATE(4611)] = 130953, + [SMALL_STATE(4612)] = 130970, + [SMALL_STATE(4613)] = 130985, + [SMALL_STATE(4614)] = 131000, + [SMALL_STATE(4615)] = 131013, + [SMALL_STATE(4616)] = 131030, + [SMALL_STATE(4617)] = 131049, + [SMALL_STATE(4618)] = 131062, + [SMALL_STATE(4619)] = 131075, + [SMALL_STATE(4620)] = 131092, + [SMALL_STATE(4621)] = 131109, + [SMALL_STATE(4622)] = 131128, + [SMALL_STATE(4623)] = 131145, + [SMALL_STATE(4624)] = 131162, + [SMALL_STATE(4625)] = 131175, + [SMALL_STATE(4626)] = 131194, + [SMALL_STATE(4627)] = 131211, + [SMALL_STATE(4628)] = 131230, + [SMALL_STATE(4629)] = 131249, + [SMALL_STATE(4630)] = 131268, + [SMALL_STATE(4631)] = 131283, + [SMALL_STATE(4632)] = 131298, + [SMALL_STATE(4633)] = 131311, + [SMALL_STATE(4634)] = 131324, + [SMALL_STATE(4635)] = 131343, + [SMALL_STATE(4636)] = 131356, + [SMALL_STATE(4637)] = 131369, + [SMALL_STATE(4638)] = 131384, + [SMALL_STATE(4639)] = 131403, + [SMALL_STATE(4640)] = 131418, + [SMALL_STATE(4641)] = 131431, + [SMALL_STATE(4642)] = 131448, + [SMALL_STATE(4643)] = 131461, + [SMALL_STATE(4644)] = 131474, + [SMALL_STATE(4645)] = 131487, + [SMALL_STATE(4646)] = 131506, + [SMALL_STATE(4647)] = 131525, + [SMALL_STATE(4648)] = 131538, + [SMALL_STATE(4649)] = 131555, + [SMALL_STATE(4650)] = 131572, + [SMALL_STATE(4651)] = 131585, + [SMALL_STATE(4652)] = 131598, + [SMALL_STATE(4653)] = 131613, + [SMALL_STATE(4654)] = 131632, + [SMALL_STATE(4655)] = 131645, + [SMALL_STATE(4656)] = 131658, + [SMALL_STATE(4657)] = 131671, + [SMALL_STATE(4658)] = 131686, + [SMALL_STATE(4659)] = 131705, + [SMALL_STATE(4660)] = 131718, + [SMALL_STATE(4661)] = 131737, + [SMALL_STATE(4662)] = 131756, + [SMALL_STATE(4663)] = 131775, + [SMALL_STATE(4664)] = 131788, + [SMALL_STATE(4665)] = 131805, + [SMALL_STATE(4666)] = 131818, + [SMALL_STATE(4667)] = 131837, + [SMALL_STATE(4668)] = 131852, + [SMALL_STATE(4669)] = 131871, + [SMALL_STATE(4670)] = 131890, + [SMALL_STATE(4671)] = 131909, + [SMALL_STATE(4672)] = 131928, + [SMALL_STATE(4673)] = 131941, + [SMALL_STATE(4674)] = 131960, + [SMALL_STATE(4675)] = 131977, + [SMALL_STATE(4676)] = 131990, + [SMALL_STATE(4677)] = 132004, + [SMALL_STATE(4678)] = 132020, + [SMALL_STATE(4679)] = 132032, + [SMALL_STATE(4680)] = 132048, + [SMALL_STATE(4681)] = 132062, + [SMALL_STATE(4682)] = 132076, + [SMALL_STATE(4683)] = 132088, + [SMALL_STATE(4684)] = 132100, + [SMALL_STATE(4685)] = 132116, + [SMALL_STATE(4686)] = 132132, + [SMALL_STATE(4687)] = 132144, + [SMALL_STATE(4688)] = 132160, + [SMALL_STATE(4689)] = 132172, + [SMALL_STATE(4690)] = 132184, + [SMALL_STATE(4691)] = 132200, + [SMALL_STATE(4692)] = 132216, + [SMALL_STATE(4693)] = 132228, + [SMALL_STATE(4694)] = 132240, + [SMALL_STATE(4695)] = 132252, + [SMALL_STATE(4696)] = 132268, + [SMALL_STATE(4697)] = 132280, + [SMALL_STATE(4698)] = 132296, + [SMALL_STATE(4699)] = 132308, + [SMALL_STATE(4700)] = 132324, + [SMALL_STATE(4701)] = 132340, + [SMALL_STATE(4702)] = 132352, + [SMALL_STATE(4703)] = 132364, + [SMALL_STATE(4704)] = 132376, + [SMALL_STATE(4705)] = 132388, + [SMALL_STATE(4706)] = 132400, + [SMALL_STATE(4707)] = 132414, + [SMALL_STATE(4708)] = 132430, + [SMALL_STATE(4709)] = 132444, + [SMALL_STATE(4710)] = 132458, + [SMALL_STATE(4711)] = 132472, + [SMALL_STATE(4712)] = 132484, + [SMALL_STATE(4713)] = 132498, + [SMALL_STATE(4714)] = 132512, + [SMALL_STATE(4715)] = 132526, + [SMALL_STATE(4716)] = 132538, + [SMALL_STATE(4717)] = 132552, + [SMALL_STATE(4718)] = 132564, + [SMALL_STATE(4719)] = 132576, + [SMALL_STATE(4720)] = 132588, + [SMALL_STATE(4721)] = 132600, + [SMALL_STATE(4722)] = 132612, + [SMALL_STATE(4723)] = 132624, + [SMALL_STATE(4724)] = 132638, + [SMALL_STATE(4725)] = 132650, + [SMALL_STATE(4726)] = 132662, + [SMALL_STATE(4727)] = 132674, + [SMALL_STATE(4728)] = 132686, + [SMALL_STATE(4729)] = 132698, + [SMALL_STATE(4730)] = 132710, + [SMALL_STATE(4731)] = 132722, + [SMALL_STATE(4732)] = 132734, + [SMALL_STATE(4733)] = 132746, + [SMALL_STATE(4734)] = 132758, + [SMALL_STATE(4735)] = 132772, + [SMALL_STATE(4736)] = 132788, + [SMALL_STATE(4737)] = 132804, + [SMALL_STATE(4738)] = 132820, + [SMALL_STATE(4739)] = 132832, + [SMALL_STATE(4740)] = 132846, + [SMALL_STATE(4741)] = 132862, + [SMALL_STATE(4742)] = 132876, + [SMALL_STATE(4743)] = 132888, + [SMALL_STATE(4744)] = 132904, + [SMALL_STATE(4745)] = 132916, + [SMALL_STATE(4746)] = 132932, + [SMALL_STATE(4747)] = 132948, + [SMALL_STATE(4748)] = 132964, + [SMALL_STATE(4749)] = 132976, + [SMALL_STATE(4750)] = 132992, + [SMALL_STATE(4751)] = 133008, + [SMALL_STATE(4752)] = 133024, + [SMALL_STATE(4753)] = 133036, + [SMALL_STATE(4754)] = 133052, + [SMALL_STATE(4755)] = 133068, + [SMALL_STATE(4756)] = 133082, + [SMALL_STATE(4757)] = 133098, + [SMALL_STATE(4758)] = 133114, + [SMALL_STATE(4759)] = 133130, + [SMALL_STATE(4760)] = 133146, + [SMALL_STATE(4761)] = 133162, + [SMALL_STATE(4762)] = 133174, + [SMALL_STATE(4763)] = 133190, + [SMALL_STATE(4764)] = 133206, + [SMALL_STATE(4765)] = 133218, + [SMALL_STATE(4766)] = 133234, + [SMALL_STATE(4767)] = 133248, + [SMALL_STATE(4768)] = 133260, + [SMALL_STATE(4769)] = 133276, + [SMALL_STATE(4770)] = 133290, + [SMALL_STATE(4771)] = 133304, + [SMALL_STATE(4772)] = 133316, + [SMALL_STATE(4773)] = 133332, + [SMALL_STATE(4774)] = 133344, + [SMALL_STATE(4775)] = 133358, + [SMALL_STATE(4776)] = 133372, + [SMALL_STATE(4777)] = 133388, + [SMALL_STATE(4778)] = 133402, + [SMALL_STATE(4779)] = 133418, + [SMALL_STATE(4780)] = 133434, + [SMALL_STATE(4781)] = 133450, + [SMALL_STATE(4782)] = 133462, + [SMALL_STATE(4783)] = 133478, + [SMALL_STATE(4784)] = 133494, + [SMALL_STATE(4785)] = 133510, + [SMALL_STATE(4786)] = 133522, + [SMALL_STATE(4787)] = 133534, + [SMALL_STATE(4788)] = 133550, + [SMALL_STATE(4789)] = 133564, + [SMALL_STATE(4790)] = 133576, + [SMALL_STATE(4791)] = 133588, + [SMALL_STATE(4792)] = 133600, + [SMALL_STATE(4793)] = 133616, + [SMALL_STATE(4794)] = 133628, + [SMALL_STATE(4795)] = 133640, + [SMALL_STATE(4796)] = 133656, + [SMALL_STATE(4797)] = 133670, + [SMALL_STATE(4798)] = 133682, + [SMALL_STATE(4799)] = 133694, + [SMALL_STATE(4800)] = 133708, + [SMALL_STATE(4801)] = 133720, + [SMALL_STATE(4802)] = 133736, + [SMALL_STATE(4803)] = 133750, + [SMALL_STATE(4804)] = 133762, + [SMALL_STATE(4805)] = 133776, + [SMALL_STATE(4806)] = 133792, + [SMALL_STATE(4807)] = 133804, + [SMALL_STATE(4808)] = 133816, + [SMALL_STATE(4809)] = 133832, + [SMALL_STATE(4810)] = 133846, + [SMALL_STATE(4811)] = 133862, + [SMALL_STATE(4812)] = 133874, + [SMALL_STATE(4813)] = 133890, + [SMALL_STATE(4814)] = 133902, + [SMALL_STATE(4815)] = 133916, + [SMALL_STATE(4816)] = 133930, + [SMALL_STATE(4817)] = 133944, + [SMALL_STATE(4818)] = 133956, + [SMALL_STATE(4819)] = 133972, + [SMALL_STATE(4820)] = 133984, + [SMALL_STATE(4821)] = 134000, + [SMALL_STATE(4822)] = 134012, + [SMALL_STATE(4823)] = 134024, + [SMALL_STATE(4824)] = 134036, + [SMALL_STATE(4825)] = 134048, + [SMALL_STATE(4826)] = 134060, + [SMALL_STATE(4827)] = 134076, + [SMALL_STATE(4828)] = 134092, + [SMALL_STATE(4829)] = 134104, + [SMALL_STATE(4830)] = 134118, + [SMALL_STATE(4831)] = 134132, + [SMALL_STATE(4832)] = 134146, + [SMALL_STATE(4833)] = 134160, + [SMALL_STATE(4834)] = 134174, + [SMALL_STATE(4835)] = 134190, + [SMALL_STATE(4836)] = 134202, + [SMALL_STATE(4837)] = 134218, + [SMALL_STATE(4838)] = 134230, + [SMALL_STATE(4839)] = 134246, + [SMALL_STATE(4840)] = 134262, + [SMALL_STATE(4841)] = 134278, + [SMALL_STATE(4842)] = 134294, + [SMALL_STATE(4843)] = 134310, + [SMALL_STATE(4844)] = 134324, + [SMALL_STATE(4845)] = 134340, + [SMALL_STATE(4846)] = 134354, + [SMALL_STATE(4847)] = 134366, + [SMALL_STATE(4848)] = 134378, + [SMALL_STATE(4849)] = 134390, + [SMALL_STATE(4850)] = 134406, + [SMALL_STATE(4851)] = 134418, + [SMALL_STATE(4852)] = 134430, + [SMALL_STATE(4853)] = 134446, + [SMALL_STATE(4854)] = 134462, + [SMALL_STATE(4855)] = 134476, + [SMALL_STATE(4856)] = 134488, + [SMALL_STATE(4857)] = 134504, + [SMALL_STATE(4858)] = 134516, + [SMALL_STATE(4859)] = 134532, + [SMALL_STATE(4860)] = 134548, + [SMALL_STATE(4861)] = 134560, + [SMALL_STATE(4862)] = 134574, + [SMALL_STATE(4863)] = 134590, + [SMALL_STATE(4864)] = 134602, + [SMALL_STATE(4865)] = 134618, + [SMALL_STATE(4866)] = 134634, + [SMALL_STATE(4867)] = 134650, + [SMALL_STATE(4868)] = 134666, + [SMALL_STATE(4869)] = 134682, + [SMALL_STATE(4870)] = 134698, + [SMALL_STATE(4871)] = 134714, + [SMALL_STATE(4872)] = 134730, + [SMALL_STATE(4873)] = 134746, + [SMALL_STATE(4874)] = 134762, + [SMALL_STATE(4875)] = 134774, + [SMALL_STATE(4876)] = 134788, + [SMALL_STATE(4877)] = 134800, + [SMALL_STATE(4878)] = 134812, + [SMALL_STATE(4879)] = 134828, + [SMALL_STATE(4880)] = 134844, + [SMALL_STATE(4881)] = 134860, + [SMALL_STATE(4882)] = 134872, + [SMALL_STATE(4883)] = 134884, + [SMALL_STATE(4884)] = 134896, + [SMALL_STATE(4885)] = 134908, + [SMALL_STATE(4886)] = 134924, + [SMALL_STATE(4887)] = 134936, + [SMALL_STATE(4888)] = 134948, + [SMALL_STATE(4889)] = 134964, + [SMALL_STATE(4890)] = 134980, + [SMALL_STATE(4891)] = 134992, + [SMALL_STATE(4892)] = 135004, + [SMALL_STATE(4893)] = 135020, + [SMALL_STATE(4894)] = 135032, + [SMALL_STATE(4895)] = 135048, + [SMALL_STATE(4896)] = 135060, + [SMALL_STATE(4897)] = 135072, + [SMALL_STATE(4898)] = 135088, + [SMALL_STATE(4899)] = 135102, + [SMALL_STATE(4900)] = 135114, + [SMALL_STATE(4901)] = 135130, + [SMALL_STATE(4902)] = 135146, + [SMALL_STATE(4903)] = 135158, + [SMALL_STATE(4904)] = 135170, + [SMALL_STATE(4905)] = 135182, + [SMALL_STATE(4906)] = 135198, + [SMALL_STATE(4907)] = 135210, + [SMALL_STATE(4908)] = 135222, + [SMALL_STATE(4909)] = 135236, + [SMALL_STATE(4910)] = 135248, + [SMALL_STATE(4911)] = 135260, + [SMALL_STATE(4912)] = 135276, + [SMALL_STATE(4913)] = 135288, + [SMALL_STATE(4914)] = 135304, + [SMALL_STATE(4915)] = 135316, + [SMALL_STATE(4916)] = 135332, + [SMALL_STATE(4917)] = 135348, + [SMALL_STATE(4918)] = 135364, + [SMALL_STATE(4919)] = 135378, + [SMALL_STATE(4920)] = 135394, + [SMALL_STATE(4921)] = 135406, + [SMALL_STATE(4922)] = 135420, + [SMALL_STATE(4923)] = 135434, + [SMALL_STATE(4924)] = 135448, + [SMALL_STATE(4925)] = 135464, + [SMALL_STATE(4926)] = 135480, + [SMALL_STATE(4927)] = 135494, + [SMALL_STATE(4928)] = 135508, + [SMALL_STATE(4929)] = 135520, + [SMALL_STATE(4930)] = 135536, + [SMALL_STATE(4931)] = 135552, + [SMALL_STATE(4932)] = 135564, + [SMALL_STATE(4933)] = 135577, + [SMALL_STATE(4934)] = 135590, + [SMALL_STATE(4935)] = 135603, + [SMALL_STATE(4936)] = 135616, + [SMALL_STATE(4937)] = 135629, + [SMALL_STATE(4938)] = 135642, + [SMALL_STATE(4939)] = 135655, + [SMALL_STATE(4940)] = 135668, + [SMALL_STATE(4941)] = 135681, + [SMALL_STATE(4942)] = 135692, + [SMALL_STATE(4943)] = 135705, + [SMALL_STATE(4944)] = 135718, + [SMALL_STATE(4945)] = 135731, + [SMALL_STATE(4946)] = 135744, + [SMALL_STATE(4947)] = 135757, + [SMALL_STATE(4948)] = 135770, + [SMALL_STATE(4949)] = 135783, + [SMALL_STATE(4950)] = 135796, + [SMALL_STATE(4951)] = 135809, + [SMALL_STATE(4952)] = 135822, + [SMALL_STATE(4953)] = 135835, + [SMALL_STATE(4954)] = 135848, + [SMALL_STATE(4955)] = 135861, + [SMALL_STATE(4956)] = 135874, + [SMALL_STATE(4957)] = 135887, + [SMALL_STATE(4958)] = 135900, + [SMALL_STATE(4959)] = 135913, + [SMALL_STATE(4960)] = 135926, + [SMALL_STATE(4961)] = 135939, + [SMALL_STATE(4962)] = 135952, + [SMALL_STATE(4963)] = 135965, + [SMALL_STATE(4964)] = 135978, + [SMALL_STATE(4965)] = 135991, + [SMALL_STATE(4966)] = 136004, + [SMALL_STATE(4967)] = 136017, + [SMALL_STATE(4968)] = 136028, + [SMALL_STATE(4969)] = 136041, + [SMALL_STATE(4970)] = 136054, + [SMALL_STATE(4971)] = 136067, + [SMALL_STATE(4972)] = 136080, + [SMALL_STATE(4973)] = 136093, + [SMALL_STATE(4974)] = 136106, + [SMALL_STATE(4975)] = 136119, + [SMALL_STATE(4976)] = 136132, + [SMALL_STATE(4977)] = 136145, + [SMALL_STATE(4978)] = 136158, + [SMALL_STATE(4979)] = 136169, + [SMALL_STATE(4980)] = 136182, + [SMALL_STATE(4981)] = 136195, + [SMALL_STATE(4982)] = 136208, + [SMALL_STATE(4983)] = 136221, + [SMALL_STATE(4984)] = 136234, + [SMALL_STATE(4985)] = 136247, + [SMALL_STATE(4986)] = 136260, + [SMALL_STATE(4987)] = 136273, + [SMALL_STATE(4988)] = 136286, + [SMALL_STATE(4989)] = 136299, + [SMALL_STATE(4990)] = 136312, + [SMALL_STATE(4991)] = 136325, + [SMALL_STATE(4992)] = 136338, + [SMALL_STATE(4993)] = 136351, + [SMALL_STATE(4994)] = 136364, + [SMALL_STATE(4995)] = 136377, + [SMALL_STATE(4996)] = 136390, + [SMALL_STATE(4997)] = 136403, + [SMALL_STATE(4998)] = 136416, + [SMALL_STATE(4999)] = 136429, + [SMALL_STATE(5000)] = 136440, + [SMALL_STATE(5001)] = 136453, + [SMALL_STATE(5002)] = 136466, + [SMALL_STATE(5003)] = 136479, + [SMALL_STATE(5004)] = 136490, + [SMALL_STATE(5005)] = 136503, + [SMALL_STATE(5006)] = 136516, + [SMALL_STATE(5007)] = 136527, + [SMALL_STATE(5008)] = 136540, + [SMALL_STATE(5009)] = 136553, + [SMALL_STATE(5010)] = 136566, + [SMALL_STATE(5011)] = 136579, + [SMALL_STATE(5012)] = 136592, + [SMALL_STATE(5013)] = 136605, + [SMALL_STATE(5014)] = 136618, + [SMALL_STATE(5015)] = 136631, + [SMALL_STATE(5016)] = 136644, + [SMALL_STATE(5017)] = 136657, + [SMALL_STATE(5018)] = 136670, + [SMALL_STATE(5019)] = 136683, + [SMALL_STATE(5020)] = 136696, + [SMALL_STATE(5021)] = 136709, + [SMALL_STATE(5022)] = 136722, + [SMALL_STATE(5023)] = 136735, + [SMALL_STATE(5024)] = 136748, + [SMALL_STATE(5025)] = 136761, + [SMALL_STATE(5026)] = 136774, + [SMALL_STATE(5027)] = 136787, + [SMALL_STATE(5028)] = 136800, + [SMALL_STATE(5029)] = 136813, + [SMALL_STATE(5030)] = 136824, + [SMALL_STATE(5031)] = 136837, + [SMALL_STATE(5032)] = 136850, + [SMALL_STATE(5033)] = 136863, + [SMALL_STATE(5034)] = 136876, + [SMALL_STATE(5035)] = 136889, + [SMALL_STATE(5036)] = 136902, + [SMALL_STATE(5037)] = 136915, + [SMALL_STATE(5038)] = 136928, + [SMALL_STATE(5039)] = 136941, + [SMALL_STATE(5040)] = 136954, + [SMALL_STATE(5041)] = 136965, + [SMALL_STATE(5042)] = 136978, + [SMALL_STATE(5043)] = 136991, + [SMALL_STATE(5044)] = 137004, + [SMALL_STATE(5045)] = 137017, + [SMALL_STATE(5046)] = 137030, + [SMALL_STATE(5047)] = 137043, + [SMALL_STATE(5048)] = 137056, + [SMALL_STATE(5049)] = 137069, + [SMALL_STATE(5050)] = 137082, + [SMALL_STATE(5051)] = 137095, + [SMALL_STATE(5052)] = 137108, + [SMALL_STATE(5053)] = 137121, + [SMALL_STATE(5054)] = 137134, + [SMALL_STATE(5055)] = 137147, + [SMALL_STATE(5056)] = 137160, + [SMALL_STATE(5057)] = 137173, + [SMALL_STATE(5058)] = 137186, + [SMALL_STATE(5059)] = 137199, + [SMALL_STATE(5060)] = 137212, + [SMALL_STATE(5061)] = 137225, + [SMALL_STATE(5062)] = 137238, + [SMALL_STATE(5063)] = 137251, + [SMALL_STATE(5064)] = 137264, + [SMALL_STATE(5065)] = 137277, + [SMALL_STATE(5066)] = 137290, + [SMALL_STATE(5067)] = 137303, + [SMALL_STATE(5068)] = 137316, + [SMALL_STATE(5069)] = 137329, + [SMALL_STATE(5070)] = 137342, + [SMALL_STATE(5071)] = 137353, + [SMALL_STATE(5072)] = 137366, + [SMALL_STATE(5073)] = 137379, + [SMALL_STATE(5074)] = 137390, + [SMALL_STATE(5075)] = 137403, + [SMALL_STATE(5076)] = 137416, + [SMALL_STATE(5077)] = 137429, + [SMALL_STATE(5078)] = 137442, + [SMALL_STATE(5079)] = 137455, + [SMALL_STATE(5080)] = 137468, + [SMALL_STATE(5081)] = 137481, + [SMALL_STATE(5082)] = 137494, + [SMALL_STATE(5083)] = 137507, + [SMALL_STATE(5084)] = 137520, + [SMALL_STATE(5085)] = 137533, + [SMALL_STATE(5086)] = 137546, + [SMALL_STATE(5087)] = 137559, + [SMALL_STATE(5088)] = 137572, + [SMALL_STATE(5089)] = 137585, + [SMALL_STATE(5090)] = 137598, + [SMALL_STATE(5091)] = 137611, + [SMALL_STATE(5092)] = 137624, + [SMALL_STATE(5093)] = 137637, + [SMALL_STATE(5094)] = 137650, + [SMALL_STATE(5095)] = 137663, + [SMALL_STATE(5096)] = 137676, + [SMALL_STATE(5097)] = 137689, + [SMALL_STATE(5098)] = 137702, + [SMALL_STATE(5099)] = 137715, + [SMALL_STATE(5100)] = 137728, + [SMALL_STATE(5101)] = 137741, + [SMALL_STATE(5102)] = 137751, + [SMALL_STATE(5103)] = 137761, + [SMALL_STATE(5104)] = 137771, + [SMALL_STATE(5105)] = 137781, + [SMALL_STATE(5106)] = 137791, + [SMALL_STATE(5107)] = 137801, + [SMALL_STATE(5108)] = 137811, + [SMALL_STATE(5109)] = 137821, + [SMALL_STATE(5110)] = 137831, + [SMALL_STATE(5111)] = 137841, + [SMALL_STATE(5112)] = 137851, + [SMALL_STATE(5113)] = 137861, + [SMALL_STATE(5114)] = 137871, + [SMALL_STATE(5115)] = 137881, + [SMALL_STATE(5116)] = 137891, + [SMALL_STATE(5117)] = 137901, + [SMALL_STATE(5118)] = 137911, + [SMALL_STATE(5119)] = 137921, + [SMALL_STATE(5120)] = 137931, + [SMALL_STATE(5121)] = 137941, + [SMALL_STATE(5122)] = 137951, + [SMALL_STATE(5123)] = 137961, + [SMALL_STATE(5124)] = 137971, + [SMALL_STATE(5125)] = 137981, + [SMALL_STATE(5126)] = 137991, + [SMALL_STATE(5127)] = 138001, + [SMALL_STATE(5128)] = 138011, + [SMALL_STATE(5129)] = 138021, + [SMALL_STATE(5130)] = 138031, + [SMALL_STATE(5131)] = 138041, + [SMALL_STATE(5132)] = 138051, + [SMALL_STATE(5133)] = 138061, + [SMALL_STATE(5134)] = 138071, + [SMALL_STATE(5135)] = 138081, + [SMALL_STATE(5136)] = 138091, + [SMALL_STATE(5137)] = 138101, + [SMALL_STATE(5138)] = 138111, + [SMALL_STATE(5139)] = 138121, + [SMALL_STATE(5140)] = 138131, + [SMALL_STATE(5141)] = 138141, + [SMALL_STATE(5142)] = 138151, + [SMALL_STATE(5143)] = 138161, + [SMALL_STATE(5144)] = 138171, + [SMALL_STATE(5145)] = 138181, + [SMALL_STATE(5146)] = 138191, + [SMALL_STATE(5147)] = 138201, + [SMALL_STATE(5148)] = 138211, + [SMALL_STATE(5149)] = 138221, + [SMALL_STATE(5150)] = 138231, + [SMALL_STATE(5151)] = 138241, + [SMALL_STATE(5152)] = 138251, + [SMALL_STATE(5153)] = 138261, + [SMALL_STATE(5154)] = 138271, + [SMALL_STATE(5155)] = 138281, + [SMALL_STATE(5156)] = 138291, + [SMALL_STATE(5157)] = 138301, + [SMALL_STATE(5158)] = 138311, + [SMALL_STATE(5159)] = 138321, + [SMALL_STATE(5160)] = 138331, + [SMALL_STATE(5161)] = 138341, + [SMALL_STATE(5162)] = 138351, + [SMALL_STATE(5163)] = 138361, + [SMALL_STATE(5164)] = 138371, + [SMALL_STATE(5165)] = 138381, + [SMALL_STATE(5166)] = 138391, + [SMALL_STATE(5167)] = 138401, + [SMALL_STATE(5168)] = 138411, + [SMALL_STATE(5169)] = 138421, + [SMALL_STATE(5170)] = 138431, + [SMALL_STATE(5171)] = 138441, + [SMALL_STATE(5172)] = 138451, + [SMALL_STATE(5173)] = 138461, + [SMALL_STATE(5174)] = 138471, + [SMALL_STATE(5175)] = 138481, + [SMALL_STATE(5176)] = 138491, + [SMALL_STATE(5177)] = 138501, + [SMALL_STATE(5178)] = 138511, + [SMALL_STATE(5179)] = 138521, + [SMALL_STATE(5180)] = 138531, + [SMALL_STATE(5181)] = 138541, + [SMALL_STATE(5182)] = 138551, + [SMALL_STATE(5183)] = 138561, + [SMALL_STATE(5184)] = 138571, + [SMALL_STATE(5185)] = 138581, + [SMALL_STATE(5186)] = 138591, + [SMALL_STATE(5187)] = 138601, + [SMALL_STATE(5188)] = 138611, + [SMALL_STATE(5189)] = 138621, + [SMALL_STATE(5190)] = 138631, + [SMALL_STATE(5191)] = 138641, + [SMALL_STATE(5192)] = 138651, + [SMALL_STATE(5193)] = 138661, + [SMALL_STATE(5194)] = 138671, + [SMALL_STATE(5195)] = 138681, + [SMALL_STATE(5196)] = 138691, + [SMALL_STATE(5197)] = 138701, + [SMALL_STATE(5198)] = 138711, + [SMALL_STATE(5199)] = 138721, + [SMALL_STATE(5200)] = 138731, + [SMALL_STATE(5201)] = 138741, + [SMALL_STATE(5202)] = 138751, + [SMALL_STATE(5203)] = 138761, + [SMALL_STATE(5204)] = 138771, + [SMALL_STATE(5205)] = 138781, + [SMALL_STATE(5206)] = 138791, + [SMALL_STATE(5207)] = 138801, + [SMALL_STATE(5208)] = 138811, + [SMALL_STATE(5209)] = 138821, + [SMALL_STATE(5210)] = 138831, + [SMALL_STATE(5211)] = 138841, + [SMALL_STATE(5212)] = 138851, + [SMALL_STATE(5213)] = 138861, + [SMALL_STATE(5214)] = 138871, + [SMALL_STATE(5215)] = 138881, + [SMALL_STATE(5216)] = 138891, + [SMALL_STATE(5217)] = 138901, + [SMALL_STATE(5218)] = 138911, + [SMALL_STATE(5219)] = 138921, + [SMALL_STATE(5220)] = 138931, + [SMALL_STATE(5221)] = 138941, + [SMALL_STATE(5222)] = 138951, + [SMALL_STATE(5223)] = 138961, + [SMALL_STATE(5224)] = 138971, + [SMALL_STATE(5225)] = 138981, + [SMALL_STATE(5226)] = 138991, + [SMALL_STATE(5227)] = 139001, + [SMALL_STATE(5228)] = 139011, + [SMALL_STATE(5229)] = 139021, + [SMALL_STATE(5230)] = 139031, + [SMALL_STATE(5231)] = 139041, + [SMALL_STATE(5232)] = 139051, + [SMALL_STATE(5233)] = 139061, + [SMALL_STATE(5234)] = 139071, + [SMALL_STATE(5235)] = 139081, + [SMALL_STATE(5236)] = 139091, + [SMALL_STATE(5237)] = 139101, + [SMALL_STATE(5238)] = 139111, + [SMALL_STATE(5239)] = 139121, + [SMALL_STATE(5240)] = 139131, + [SMALL_STATE(5241)] = 139141, + [SMALL_STATE(5242)] = 139151, + [SMALL_STATE(5243)] = 139161, + [SMALL_STATE(5244)] = 139171, + [SMALL_STATE(5245)] = 139181, + [SMALL_STATE(5246)] = 139191, + [SMALL_STATE(5247)] = 139201, + [SMALL_STATE(5248)] = 139211, + [SMALL_STATE(5249)] = 139221, + [SMALL_STATE(5250)] = 139231, + [SMALL_STATE(5251)] = 139241, + [SMALL_STATE(5252)] = 139251, + [SMALL_STATE(5253)] = 139261, + [SMALL_STATE(5254)] = 139271, + [SMALL_STATE(5255)] = 139281, + [SMALL_STATE(5256)] = 139291, + [SMALL_STATE(5257)] = 139301, + [SMALL_STATE(5258)] = 139311, + [SMALL_STATE(5259)] = 139321, + [SMALL_STATE(5260)] = 139331, + [SMALL_STATE(5261)] = 139341, + [SMALL_STATE(5262)] = 139351, + [SMALL_STATE(5263)] = 139361, + [SMALL_STATE(5264)] = 139371, + [SMALL_STATE(5265)] = 139381, + [SMALL_STATE(5266)] = 139391, + [SMALL_STATE(5267)] = 139401, + [SMALL_STATE(5268)] = 139411, + [SMALL_STATE(5269)] = 139421, + [SMALL_STATE(5270)] = 139431, + [SMALL_STATE(5271)] = 139441, + [SMALL_STATE(5272)] = 139451, + [SMALL_STATE(5273)] = 139461, + [SMALL_STATE(5274)] = 139471, + [SMALL_STATE(5275)] = 139481, + [SMALL_STATE(5276)] = 139491, + [SMALL_STATE(5277)] = 139501, + [SMALL_STATE(5278)] = 139511, + [SMALL_STATE(5279)] = 139521, + [SMALL_STATE(5280)] = 139531, + [SMALL_STATE(5281)] = 139541, + [SMALL_STATE(5282)] = 139551, + [SMALL_STATE(5283)] = 139561, + [SMALL_STATE(5284)] = 139571, + [SMALL_STATE(5285)] = 139581, + [SMALL_STATE(5286)] = 139591, + [SMALL_STATE(5287)] = 139601, + [SMALL_STATE(5288)] = 139611, + [SMALL_STATE(5289)] = 139621, + [SMALL_STATE(5290)] = 139631, + [SMALL_STATE(5291)] = 139641, + [SMALL_STATE(5292)] = 139651, + [SMALL_STATE(5293)] = 139661, + [SMALL_STATE(5294)] = 139671, + [SMALL_STATE(5295)] = 139681, + [SMALL_STATE(5296)] = 139691, + [SMALL_STATE(5297)] = 139701, + [SMALL_STATE(5298)] = 139711, + [SMALL_STATE(5299)] = 139721, + [SMALL_STATE(5300)] = 139731, + [SMALL_STATE(5301)] = 139741, + [SMALL_STATE(5302)] = 139751, + [SMALL_STATE(5303)] = 139761, + [SMALL_STATE(5304)] = 139771, + [SMALL_STATE(5305)] = 139781, + [SMALL_STATE(5306)] = 139791, + [SMALL_STATE(5307)] = 139801, + [SMALL_STATE(5308)] = 139811, + [SMALL_STATE(5309)] = 139821, + [SMALL_STATE(5310)] = 139831, + [SMALL_STATE(5311)] = 139841, + [SMALL_STATE(5312)] = 139851, + [SMALL_STATE(5313)] = 139861, + [SMALL_STATE(5314)] = 139871, + [SMALL_STATE(5315)] = 139881, + [SMALL_STATE(5316)] = 139891, + [SMALL_STATE(5317)] = 139901, + [SMALL_STATE(5318)] = 139911, + [SMALL_STATE(5319)] = 139921, + [SMALL_STATE(5320)] = 139931, + [SMALL_STATE(5321)] = 139941, + [SMALL_STATE(5322)] = 139951, + [SMALL_STATE(5323)] = 139961, + [SMALL_STATE(5324)] = 139971, + [SMALL_STATE(5325)] = 139981, + [SMALL_STATE(5326)] = 139991, + [SMALL_STATE(5327)] = 140001, + [SMALL_STATE(5328)] = 140011, + [SMALL_STATE(5329)] = 140021, + [SMALL_STATE(5330)] = 140031, + [SMALL_STATE(5331)] = 140041, + [SMALL_STATE(5332)] = 140051, + [SMALL_STATE(5333)] = 140061, + [SMALL_STATE(5334)] = 140071, + [SMALL_STATE(5335)] = 140081, + [SMALL_STATE(5336)] = 140091, + [SMALL_STATE(5337)] = 140101, + [SMALL_STATE(5338)] = 140111, + [SMALL_STATE(5339)] = 140121, + [SMALL_STATE(5340)] = 140131, + [SMALL_STATE(5341)] = 140141, + [SMALL_STATE(5342)] = 140151, + [SMALL_STATE(5343)] = 140161, + [SMALL_STATE(5344)] = 140171, + [SMALL_STATE(5345)] = 140181, + [SMALL_STATE(5346)] = 140191, + [SMALL_STATE(5347)] = 140201, + [SMALL_STATE(5348)] = 140211, + [SMALL_STATE(5349)] = 140221, + [SMALL_STATE(5350)] = 140231, + [SMALL_STATE(5351)] = 140241, + [SMALL_STATE(5352)] = 140251, + [SMALL_STATE(5353)] = 140261, + [SMALL_STATE(5354)] = 140271, + [SMALL_STATE(5355)] = 140281, + [SMALL_STATE(5356)] = 140291, + [SMALL_STATE(5357)] = 140301, + [SMALL_STATE(5358)] = 140311, + [SMALL_STATE(5359)] = 140321, + [SMALL_STATE(5360)] = 140331, + [SMALL_STATE(5361)] = 140341, + [SMALL_STATE(5362)] = 140351, + [SMALL_STATE(5363)] = 140361, + [SMALL_STATE(5364)] = 140371, + [SMALL_STATE(5365)] = 140381, + [SMALL_STATE(5366)] = 140391, + [SMALL_STATE(5367)] = 140401, + [SMALL_STATE(5368)] = 140411, + [SMALL_STATE(5369)] = 140421, + [SMALL_STATE(5370)] = 140431, + [SMALL_STATE(5371)] = 140441, + [SMALL_STATE(5372)] = 140451, + [SMALL_STATE(5373)] = 140461, + [SMALL_STATE(5374)] = 140471, + [SMALL_STATE(5375)] = 140481, + [SMALL_STATE(5376)] = 140491, + [SMALL_STATE(5377)] = 140501, + [SMALL_STATE(5378)] = 140511, + [SMALL_STATE(5379)] = 140521, + [SMALL_STATE(5380)] = 140531, + [SMALL_STATE(5381)] = 140541, + [SMALL_STATE(5382)] = 140551, + [SMALL_STATE(5383)] = 140561, + [SMALL_STATE(5384)] = 140571, + [SMALL_STATE(5385)] = 140581, + [SMALL_STATE(5386)] = 140591, + [SMALL_STATE(5387)] = 140601, + [SMALL_STATE(5388)] = 140611, + [SMALL_STATE(5389)] = 140621, + [SMALL_STATE(5390)] = 140631, + [SMALL_STATE(5391)] = 140641, + [SMALL_STATE(5392)] = 140651, + [SMALL_STATE(5393)] = 140661, + [SMALL_STATE(5394)] = 140671, + [SMALL_STATE(5395)] = 140681, + [SMALL_STATE(5396)] = 140691, + [SMALL_STATE(5397)] = 140701, + [SMALL_STATE(5398)] = 140711, + [SMALL_STATE(5399)] = 140721, + [SMALL_STATE(5400)] = 140731, + [SMALL_STATE(5401)] = 140741, + [SMALL_STATE(5402)] = 140751, + [SMALL_STATE(5403)] = 140761, + [SMALL_STATE(5404)] = 140771, + [SMALL_STATE(5405)] = 140781, + [SMALL_STATE(5406)] = 140791, + [SMALL_STATE(5407)] = 140801, + [SMALL_STATE(5408)] = 140811, + [SMALL_STATE(5409)] = 140821, + [SMALL_STATE(5410)] = 140831, + [SMALL_STATE(5411)] = 140841, + [SMALL_STATE(5412)] = 140851, + [SMALL_STATE(5413)] = 140861, + [SMALL_STATE(5414)] = 140871, + [SMALL_STATE(5415)] = 140881, + [SMALL_STATE(5416)] = 140891, + [SMALL_STATE(5417)] = 140901, + [SMALL_STATE(5418)] = 140911, + [SMALL_STATE(5419)] = 140921, + [SMALL_STATE(5420)] = 140931, + [SMALL_STATE(5421)] = 140941, + [SMALL_STATE(5422)] = 140951, + [SMALL_STATE(5423)] = 140961, + [SMALL_STATE(5424)] = 140971, + [SMALL_STATE(5425)] = 140981, + [SMALL_STATE(5426)] = 140991, + [SMALL_STATE(5427)] = 141001, + [SMALL_STATE(5428)] = 141011, + [SMALL_STATE(5429)] = 141021, + [SMALL_STATE(5430)] = 141031, + [SMALL_STATE(5431)] = 141041, + [SMALL_STATE(5432)] = 141051, + [SMALL_STATE(5433)] = 141061, + [SMALL_STATE(5434)] = 141071, + [SMALL_STATE(5435)] = 141081, + [SMALL_STATE(5436)] = 141091, + [SMALL_STATE(5437)] = 141101, + [SMALL_STATE(5438)] = 141111, + [SMALL_STATE(5439)] = 141121, + [SMALL_STATE(5440)] = 141131, + [SMALL_STATE(5441)] = 141141, + [SMALL_STATE(5442)] = 141151, + [SMALL_STATE(5443)] = 141161, + [SMALL_STATE(5444)] = 141171, + [SMALL_STATE(5445)] = 141181, + [SMALL_STATE(5446)] = 141191, + [SMALL_STATE(5447)] = 141201, + [SMALL_STATE(5448)] = 141211, + [SMALL_STATE(5449)] = 141221, + [SMALL_STATE(5450)] = 141231, + [SMALL_STATE(5451)] = 141241, + [SMALL_STATE(5452)] = 141251, + [SMALL_STATE(5453)] = 141261, + [SMALL_STATE(5454)] = 141271, + [SMALL_STATE(5455)] = 141281, + [SMALL_STATE(5456)] = 141291, + [SMALL_STATE(5457)] = 141301, + [SMALL_STATE(5458)] = 141311, + [SMALL_STATE(5459)] = 141321, + [SMALL_STATE(5460)] = 141331, + [SMALL_STATE(5461)] = 141341, + [SMALL_STATE(5462)] = 141351, + [SMALL_STATE(5463)] = 141361, + [SMALL_STATE(5464)] = 141371, + [SMALL_STATE(5465)] = 141381, + [SMALL_STATE(5466)] = 141391, + [SMALL_STATE(5467)] = 141401, + [SMALL_STATE(5468)] = 141411, + [SMALL_STATE(5469)] = 141421, + [SMALL_STATE(5470)] = 141431, + [SMALL_STATE(5471)] = 141441, + [SMALL_STATE(5472)] = 141451, + [SMALL_STATE(5473)] = 141461, + [SMALL_STATE(5474)] = 141471, + [SMALL_STATE(5475)] = 141481, + [SMALL_STATE(5476)] = 141491, + [SMALL_STATE(5477)] = 141501, + [SMALL_STATE(5478)] = 141511, + [SMALL_STATE(5479)] = 141521, + [SMALL_STATE(5480)] = 141531, + [SMALL_STATE(5481)] = 141541, + [SMALL_STATE(5482)] = 141551, + [SMALL_STATE(5483)] = 141561, + [SMALL_STATE(5484)] = 141571, + [SMALL_STATE(5485)] = 141581, + [SMALL_STATE(5486)] = 141591, + [SMALL_STATE(5487)] = 141601, + [SMALL_STATE(5488)] = 141611, + [SMALL_STATE(5489)] = 141621, + [SMALL_STATE(5490)] = 141631, + [SMALL_STATE(5491)] = 141641, + [SMALL_STATE(5492)] = 141651, + [SMALL_STATE(5493)] = 141661, + [SMALL_STATE(5494)] = 141671, + [SMALL_STATE(5495)] = 141681, + [SMALL_STATE(5496)] = 141691, + [SMALL_STATE(5497)] = 141701, + [SMALL_STATE(5498)] = 141711, + [SMALL_STATE(5499)] = 141721, + [SMALL_STATE(5500)] = 141731, + [SMALL_STATE(5501)] = 141741, + [SMALL_STATE(5502)] = 141751, + [SMALL_STATE(5503)] = 141761, + [SMALL_STATE(5504)] = 141771, + [SMALL_STATE(5505)] = 141781, + [SMALL_STATE(5506)] = 141791, + [SMALL_STATE(5507)] = 141801, + [SMALL_STATE(5508)] = 141811, + [SMALL_STATE(5509)] = 141821, + [SMALL_STATE(5510)] = 141831, + [SMALL_STATE(5511)] = 141841, + [SMALL_STATE(5512)] = 141851, + [SMALL_STATE(5513)] = 141861, + [SMALL_STATE(5514)] = 141871, + [SMALL_STATE(5515)] = 141881, + [SMALL_STATE(5516)] = 141891, + [SMALL_STATE(5517)] = 141901, + [SMALL_STATE(5518)] = 141911, + [SMALL_STATE(5519)] = 141921, + [SMALL_STATE(5520)] = 141931, + [SMALL_STATE(5521)] = 141941, + [SMALL_STATE(5522)] = 141951, + [SMALL_STATE(5523)] = 141961, + [SMALL_STATE(5524)] = 141971, + [SMALL_STATE(5525)] = 141981, + [SMALL_STATE(5526)] = 141991, + [SMALL_STATE(5527)] = 142001, + [SMALL_STATE(5528)] = 142011, + [SMALL_STATE(5529)] = 142021, + [SMALL_STATE(5530)] = 142031, + [SMALL_STATE(5531)] = 142041, + [SMALL_STATE(5532)] = 142051, }; 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(5364), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [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(3930), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4187), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4188), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4189), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2935), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1558), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4824), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1772), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4281), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4828), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1153), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(986), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4345), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1375), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1037), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1038), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1039), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(352), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3831), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5468), - [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(3768), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2301), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3628), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3773), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(132), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(740), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(742), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5216), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(945), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4324), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5404), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5405), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4206), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1463), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5402), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3981), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1784), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4184), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4185), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4186), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2935), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1558), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4824), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1772), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4281), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4828), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1153), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1228), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4835), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1375), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1037), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1038), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1039), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(352), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3831), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5468), - [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(3768), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2334), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3628), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3773), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(132), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(740), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(742), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5216), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(945), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4324), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5404), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5405), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4206), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5402), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4232), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4835), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4206), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4232), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4345), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4206), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3979), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1783), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4152), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4153), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4154), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2981), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4849), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1749), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1747), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4340), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4852), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1287), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4853), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1093), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1094), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5510), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3847), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5472), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3757), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2321), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3620), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3766), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(116), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(697), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(746), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(969), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4203), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5409), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4249), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4184), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1470), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2272), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5406), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3980), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1785), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4165), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4166), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4167), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2981), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4849), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1749), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1747), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4340), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4852), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(951), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4233), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1093), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1094), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5510), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3847), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5472), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3757), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2310), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3620), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3766), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(116), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(697), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(746), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(969), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4203), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5409), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4249), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4184), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1474), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2266), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5406), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4234), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5472), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3757), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2266), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5406), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4234), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4853), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5472), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3757), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5406), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [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(3698), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [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(403), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [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(481), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(530), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4212), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4849), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(362), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3854), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3664), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(53), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3728), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5482), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3637), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4432), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4201), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5360), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4617), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4347), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5414), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5415), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4325), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4093), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(404), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4441), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5412), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3027), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5502), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4969), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(55), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4610), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5167), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(53), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5482), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(740), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4294), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5217), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5218), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4206), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4054), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), - [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(530), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(952), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3027), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5502), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4969), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(55), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4488), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5167), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(53), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5482), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(740), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4294), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5217), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5218), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4206), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4054), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(925), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2740] = {.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), - [2744] = {.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), - [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(530), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(530), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [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(369), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(649), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4348), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4477), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4862), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(351), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3864), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3736), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(44), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3742), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5255), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3621), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4341), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5364), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4482), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4361), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5418), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5419), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4280), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4126), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(395), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4460), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5416), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(649), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(801), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), + [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(3824), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2923), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5513), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4973), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4643), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5306), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(44), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5255), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(697), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4344), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5221), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5222), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4249), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4184), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(463), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5216), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2923), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5513), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4973), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4675), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5306), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(44), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5255), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(697), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4344), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5221), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5222), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4249), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4184), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(463), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5216), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(800), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2612] = {.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), + [2616] = {.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), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [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_minus, 4, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 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_val_range, 5, 0, 165), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(530), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(530), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1384), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4319), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4335), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4382), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4701), - [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), - [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4344), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), - [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5212), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), - [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5311), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1975), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), - [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), - [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5311), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1975), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1432), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4212), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4849), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1141), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4488), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(463), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3664), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3728), - [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3637), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4432), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4201), - [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5360), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4988), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4347), - [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5414), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5415), - [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4441), - [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5412), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(649), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(649), + [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(649), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(649), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1378), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4305), + [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4275), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4459), + [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), + [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4358), + [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4344), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5221), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5222), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), + [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), + [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [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}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4348), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4477), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4862), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1145), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4675), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(462), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3736), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3742), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3621), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), + [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4341), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5364), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5062), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4361), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5418), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5419), + [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4460), + [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5416), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [3683] = {.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), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [3715] = {.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), - [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), - [3721] = {.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), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1508), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), - [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4713), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1955), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1975), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4347), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5414), - [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5415), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5412), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2633), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2520), - [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2533), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5488), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4670), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4202), - [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4280), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5098), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1959), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 175), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [3713] = {.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), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [3747] = {.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), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), + [3753] = {.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), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1504), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), + [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3748), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), + [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4788), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1955), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1976), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4361), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5418), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5419), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5416), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2605), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2565), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2519), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5492), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4457), + [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4208), + [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4209), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5519), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1962), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [4330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2147), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), - [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2172), - [4514] = {.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), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2196), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2264), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2290), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2286), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), - [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), - [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5372), - [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5514), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5277), - [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4157), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4158), - [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3870), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3870), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3978), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5520), - [4857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4347), - [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5414), - [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5415), - [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4213), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5412), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), - [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2446), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [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 = false}}, SHIFT(2478), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), - [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), - [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 = false}}, SHIFT(2903), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(530), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(530), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), - [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), - [5620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(530), - [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(530), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), - [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(530), - [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(530), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), - [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(530), - [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(530), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(530), - [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(530), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(530), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(530), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(530), - [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(530), - [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(530), - [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(530), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(530), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(530), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), - [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4113), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4114), - [5858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(530), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4135), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3983), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), - [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), - [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(530), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), - [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(530), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), - [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4153), - [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4155), - [5935] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(530), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(530), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), - [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5082), - [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), - [5987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), - [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(952), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(530), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(952), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [6037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(103), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [6060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(133), - [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(133), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(530), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), - [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), - [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(219), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(530), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(530), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(530), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), - [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4090), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(530), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(222), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(530), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4163), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(530), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), - [6152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4198), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(530), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(530), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), - [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3989), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(530), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(530), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), - [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3997), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(530), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), - [6212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4002), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(530), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), - [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4007), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4010), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(530), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(952), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(530), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(530), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(530), - [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), - [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(213), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(530), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(530), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(530), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), - [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(530), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(952), - [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [6321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), - [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(530), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(530), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), - [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), - [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(530), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(530), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), - [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), - [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(530), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), - [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3410), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(121), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), - [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), - [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), - [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), - [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), - [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), - [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), - [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(261), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(267), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(270), - [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), - [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), - [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), - [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), - [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), - [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), - [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), - [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), - [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), - [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), - [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), - [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), - [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), - [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), - [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), - [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), - [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), - [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), - [6766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), - [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), - [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), - [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), - [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(237), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(276), - [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(243), - [6815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), - [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3617), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), - [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), - [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), - [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), - [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), - [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), - [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), - [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), - [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), - [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), - [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [6921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), - [6930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), - [6934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3659), - [6983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [7419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), - [7594] = {.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), - [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7600] = {.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), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), - [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), - [7737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2295), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), - [7801] = {.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), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [7885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(81), - [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4671), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), - [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4621), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(76), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), - [8105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4783), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5374), - [8131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), - [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(204), - [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 225), - [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 226), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 244), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 245), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 262), - [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), - [8197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), - [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), - [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), - [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), - [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), - [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), - [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), - [8292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4767), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), - [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), - [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), - [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), - [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), - [8337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4770), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), - [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [8348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), - [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), - [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), - [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4803), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [8381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 107), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), - [8401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), - [8403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), - [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), - [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [8437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), - [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), - [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), - [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), - [8464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4867), - [8467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), - [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), - [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), - [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), - [8483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(400), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [8518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), - [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), - [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), - [8571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), - [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [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(2009), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2075), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), + [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 175), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4574] = {.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), + [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2200), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2195), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), + [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2263), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2291), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2282), + [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2299), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), + [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5136), + [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5381), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5228), + [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4179), + [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4047), + [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3852), + [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3852), + [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3943), + [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5402), + [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4361), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5418), + [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5419), + [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4262), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5416), + [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), + [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2475), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2493), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 114), + [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 114), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), + [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), + [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(649), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(649), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(649), + [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(649), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), + [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(649), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(649), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(649), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(649), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3652), + [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), + [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), + [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(649), + [5691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(649), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), + [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(649), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(649), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(649), + [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(649), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(649), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(649), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), + [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(649), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4140), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(649), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), + [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(649), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(110), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(649), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), + [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(649), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(801), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(801), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4012), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(649), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), + [6005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4062), + [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4090), + [6011] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(649), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5241), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [6038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), + [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4172), + [6050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4174), + [6053] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(649), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4120), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4092), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(649), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(649), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(649), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), + [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), + [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(649), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(649), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(649), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(649), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(801), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(649), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), + [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(649), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(801), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(649), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(649), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(124), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), + [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(239), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(649), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4129), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(649), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), + [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4186), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(649), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(649), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), + [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4035), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(649), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(649), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), + [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4015), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(649), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), + [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(117), + [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(117), + [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), + [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4083), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(649), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(649), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), + [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(649), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(649), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(234), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(649), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(236), + [6393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3365), + [6396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(206), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4139), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [6408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(649), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(649), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(649), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), + [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(253), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(257), + [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(259), + [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(262), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), + [6637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3652), + [6660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), + [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), + [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), + [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), + [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), + [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), + [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [6783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), + [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), + [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), + [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(225), + [6845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(227), + [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(230), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), + [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), + [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), + [6919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), + [6923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), + [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), + [6929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3728), + [6948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), + [6970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), + [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [7674] = {.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), + [7678] = {.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), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), + [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2299), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7763] = {.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), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), + [7824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(75), + [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4396), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), + [7922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), + [7945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [7956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(80), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), + [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4898), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4162), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [8026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4489), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), + [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), + [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [8126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), + [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 107), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(204), + [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), + [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), + [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), + [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), + [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), + [8291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), + [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [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_stmt_const, 3, 0, 33), + [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [8406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), + [8409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [8424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(5003), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(397), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [8473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), + [8477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4706), + [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), + [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [8488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), + [8498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [8511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), + [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), + [8523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [8527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), + [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), + [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), + [8549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), + [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), - [8597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(5001), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [8608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), - [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), - [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), - [8630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), - [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), - [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), - [8660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), - [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), - [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [8668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [8676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), - [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [8692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), - [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [8712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5031), - [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [8719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [8736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5030), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [8771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [8793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [8797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5019), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [9190] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [9406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [9474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [8597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), + [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), + [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), + [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), + [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), + [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [8682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), + [8686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [8705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [8728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [8744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), + [8753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [8759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [8765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5036), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [9260] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [9318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index a17a574f..56fc8cd4 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -52,67 +52,96 @@ extern "C" { /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - _array__reserve((Array *)(self), array_elem_size(self), new_capacity) +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity) \ + ) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. -#define array_delete(self) _array__delete((Array *)(self)) +#define array_delete(self) \ + do { \ + if ((self)->contents) ts_free((self)->contents); \ + (self)->contents = NULL; \ + (self)->size = 0; \ + (self)->capacity = 0; \ + } while (0) /// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - (_array__grow((Array *)(self), 1, array_elem_size(self)), \ - (self)->contents[(self)->size++] = (element)) +#define array_push(self, element) \ + do { \ + (self)->contents = _array__grow( \ + (void *)(self)->contents, (self)->size, &(self)->capacity, \ + 1, array_elem_size(self) \ + ); \ + (self)->contents[(self)->size++] = (element); \ + } while(0) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - _array__grow((Array *)(self), count, array_elem_size(self)); \ +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + (self)->contents = _array__grow( \ + (self)->contents, (self)->size, &(self)->capacity, \ + count, array_elem_size(self) \ + ); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ + (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ +#define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. -#define array_extend(self, count, contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), (self)->size, \ - 0, count, contents \ +#define array_extend(self, count, other_contents) \ + (self)->contents = _array__splice( \ + (void*)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), (self)->size, 0, count, other_contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. -#define array_splice(self, _index, old_count, new_count, new_contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), _index, \ - old_count, new_count, new_contents \ +#define array_splice(self, _index, old_count, new_count, new_contents) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. -#define array_insert(self, _index, element) \ - _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) +#define array_insert(self, _index, element) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, 0, 1, &(element) \ + ) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ - _array__erase((Array *)(self), array_elem_size(self), _index) + _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) +#define array_assign(self, other) \ + (self)->contents = _array__assign( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (const void *)(other)->contents, (other)->size, array_elem_size(self) \ + ) /// Swap one array with another -#define array_swap(self, other) \ - _array__swap((Array *)(self), (Array *)(other)) +#define array_swap(self, other) \ + do { \ + void *_array_swap_tmp = (void *)(self)->contents; \ + (self)->contents = (other)->contents; \ + (other)->contents = _array_swap_tmp; \ + _array__swap(&(self)->size, &(self)->capacity, \ + &(other)->size, &(other)->capacity); \ + } while (0) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) @@ -157,82 +186,90 @@ extern "C" { // Private -typedef Array(void) Array; - -/// This is not what you're looking for, see `array_delete`. -static inline void _array__delete(Array *self) { - if (self->contents) { - ts_free(self->contents); - self->contents = NULL; - self->size = 0; - self->capacity = 0; - } -} +// Pointers to individual `Array` fields (rather than the entire `Array` itself) +// are passed to the various `_array__*` functions below to address strict aliasing +// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. +// +// The `Array` type itself was not altered as a solution in order to avoid breakage +// with existing consumers (in particular, parsers with external scanners). /// This is not what you're looking for, see `array_erase`. -static inline void _array__erase(Array *self, size_t element_size, - uint32_t index) { - assert(index < self->size); - char *contents = (char *)self->contents; +static inline void _array__erase(void* self_contents, uint32_t *size, + size_t element_size, uint32_t index) { + assert(index < *size); + char *contents = (char *)self_contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, - (self->size - index - 1) * element_size); - self->size--; + (*size - index - 1) * element_size); + (*size)--; } /// This is not what you're looking for, see `array_reserve`. -static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { - if (new_capacity > self->capacity) { - if (self->contents) { - self->contents = ts_realloc(self->contents, new_capacity * element_size); +static inline void *_array__reserve(void *contents, uint32_t *capacity, + size_t element_size, uint32_t new_capacity) { + void *new_contents = contents; + if (new_capacity > *capacity) { + if (contents) { + new_contents = ts_realloc(contents, new_capacity * element_size); } else { - self->contents = ts_malloc(new_capacity * element_size); + new_contents = ts_malloc(new_capacity * element_size); } - self->capacity = new_capacity; + *capacity = new_capacity; } + return new_contents; } /// This is not what you're looking for, see `array_assign`. -static inline void _array__assign(Array *self, const Array *other, size_t element_size) { - _array__reserve(self, element_size, other->size); - self->size = other->size; - memcpy(self->contents, other->contents, self->size * element_size); +static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, + const void *other_contents, uint32_t other_size, size_t element_size) { + void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); + *self_size = other_size; + memcpy(new_contents, other_contents, *self_size * element_size); + return new_contents; } /// This is not what you're looking for, see `array_swap`. -static inline void _array__swap(Array *self, Array *other) { - Array swap = *other; - *other = *self; - *self = swap; +static inline void _array__swap(uint32_t *self_size, uint32_t *self_capacity, + uint32_t *other_size, uint32_t *other_capacity) { + uint32_t tmp_size = *self_size; + uint32_t tmp_capacity = *self_capacity; + *self_size = *other_size; + *self_capacity = *other_capacity; + *other_size = tmp_size; + *other_capacity = tmp_capacity; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { - uint32_t new_size = self->size + count; - if (new_size > self->capacity) { - uint32_t new_capacity = self->capacity * 2; +static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, + uint32_t count, size_t element_size) { + void *new_contents = contents; + uint32_t new_size = size + count; + if (new_size > *capacity) { + uint32_t new_capacity = *capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; - _array__reserve(self, element_size, new_capacity); + new_contents = _array__reserve(contents, capacity, element_size, new_capacity); } + return new_contents; } /// This is not what you're looking for, see `array_splice`. -static inline void _array__splice(Array *self, size_t element_size, +static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, + size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { - uint32_t new_size = self->size + new_count - old_count; + uint32_t new_size = *size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; - assert(old_end <= self->size); + assert(old_end <= *size); - _array__reserve(self, element_size, new_size); + void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); - char *contents = (char *)self->contents; - if (self->size > old_end) { + char *contents = (char *)new_contents; + if (*size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, - (self->size - old_end) * element_size + (*size - old_end) * element_size ); } if (new_count > 0) { @@ -250,7 +287,9 @@ static inline void _array__splice(Array *self, size_t element_size, ); } } - self->size += new_count - old_count; + *size += new_count - old_count; + + return new_contents; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. From 5095e03f7c5bd60d4898ecb68207394cbdce4253 Mon Sep 17 00:00:00 2001 From: Tyarel8 <98483313+Tyarel8@users.noreply.github.com> Date: Wed, 22 Apr 2026 14:09:16 +0200 Subject: [PATCH 2/3] add tests for `%` --- test/corpus/expr/identifier.nu | 25 +++++++++++++++++++++++++ test/corpus/pipe/commands.nu | 15 +++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/test/corpus/expr/identifier.nu b/test/corpus/expr/identifier.nu index e1874959..854ac3ff 100644 --- a/test/corpus/expr/identifier.nu +++ b/test/corpus/expr/identifier.nu @@ -252,3 +252,28 @@ def 🤖👀 [] {} (pipe_element (command (cmd_identifier))))) + +==== +cmd-id-005-builtin +==== + +%echo +%str join +%each + +----- + +(nu_script + (pipeline + (pipe_element + (command + (cmd_identifier)))) + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string)))) + (pipeline + (pipe_element + (command + (cmd_identifier))))) diff --git a/test/corpus/pipe/commands.nu b/test/corpus/pipe/commands.nu index fcf3cbde..45622d9e 100644 --- a/test/corpus/pipe/commands.nu +++ b/test/corpus/pipe/commands.nu @@ -919,6 +919,21 @@ echo 1...() (val_string (expr_parenthesized)))))) +====== +cmd-027-builtin-cmd +====== + +%cmd 42 + +------ + +(nu_script + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_number))))) + ====== cmd-026-unquoted-string-with-leading-plus ====== From 465933ab5e1b97898b9fd1b5e8d7a6d9d686ec2c Mon Sep 17 00:00:00 2001 From: Tyarel8 <98483313+Tyarel8@users.noreply.github.com> Date: Wed, 22 Apr 2026 17:53:03 +0200 Subject: [PATCH 3/3] fix test --- test/corpus/expr/identifier.nu | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/corpus/expr/identifier.nu b/test/corpus/expr/identifier.nu index 854ac3ff..cee9f7a9 100644 --- a/test/corpus/expr/identifier.nu +++ b/test/corpus/expr/identifier.nu @@ -258,7 +258,7 @@ cmd-id-005-builtin ==== %echo -%str join +%where %each ----- @@ -271,8 +271,7 @@ cmd-id-005-builtin (pipeline (pipe_element (command - (cmd_identifier) - (val_string)))) + (cmd_identifier)))) (pipeline (pipe_element (command